Changeset 16009 in vbox
- Timestamp:
- Jan 17, 2009 11:31:28 PM (16 years ago)
- File:
-
- 1 edited
-
trunk/Config.kmk (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Config.kmk
r16008 r16009 1249 1249 1250 1250 # 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/ 1251 ifndef VBOX_BCC 1252 if exist $(PATH_DEVTOOLS_BLD)/bin/bcc$(HOSTSUFF_EXE) 1253 VBOX_BCC := $(PATH_DEVTOOLS_BLD)/bin/bcc$(HOSTSUFF_EXE) -B $(PATH_DEVTOOLS_BLD)/bin/ 1254 else 1255 VBOX_BCC := bcc$(HOSTSUFF_EXE) 1256 endif 1257 endif 1252 1258 1253 1259 # Assembler for BIOS-related 8086 code 1254 VBOX_AS86 ?= $(PATH_DEVTOOLS_BLD)/bin/as86$(HOSTSUFF_EXE) 1260 ifndef VBOX_AS86 1261 if exist $(PATH_DEVTOOLS_BLD)/bin/as86$(HOSTSUFF_EXE) 1262 VBOX_AS86 := $(PATH_DEVTOOLS_BLD)/bin/as86$(HOSTSUFF_EXE) 1263 else 1264 VBOX_AS86 := as86$(HOSTSUFF_EXE) 1265 endif 1266 endif 1255 1267 1256 1268 # 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.

