VirtualBox

Changeset 16009 in vbox


Ignore:
Timestamp:
Jan 17, 2009 11:31:28 PM (16 years ago)
Author:
vboxsync
Message:

Config.kmk: FreeBSD doesn't have bcc and as86 checked in, pick it up from the PATH instead.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Config.kmk

    r16008 r16009  
    12491249
    12501250# Bruce's C compile is a C-compiler for BIOS-related 8086 code
    1251 VBOX_BCC       ?= $(PATH_DEVTOOLS_BLD)/bin/bcc$(HOSTSUFF_EXE) -B $(PATH_DEVTOOLS_BLD)/bin/
     1251ifndef VBOX_BCC
     1252 if exist $(PATH_DEVTOOLS_BLD)/bin/bcc$(HOSTSUFF_EXE)
     1253VBOX_BCC       := $(PATH_DEVTOOLS_BLD)/bin/bcc$(HOSTSUFF_EXE) -B $(PATH_DEVTOOLS_BLD)/bin/
     1254 else
     1255VBOX_BCC       := bcc$(HOSTSUFF_EXE)
     1256 endif
     1257endif
    12521258
    12531259# Assembler for BIOS-related 8086 code
    1254 VBOX_AS86      ?= $(PATH_DEVTOOLS_BLD)/bin/as86$(HOSTSUFF_EXE)
     1260ifndef VBOX_AS86
     1261 if exist $(PATH_DEVTOOLS_BLD)/bin/as86$(HOSTSUFF_EXE)
     1262VBOX_AS86      := $(PATH_DEVTOOLS_BLD)/bin/as86$(HOSTSUFF_EXE)
     1263 else
     1264VBOX_AS86      := as86$(HOSTSUFF_EXE)
     1265 endif
     1266endif
    12551267
    12561268# libxslt XSLT processor. (see PATH_TOOL_YASM for explanation why it's temporarily located in bin.)
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette