Changeset 43611 in vbox
- Timestamp:
- Oct 11, 2012 9:26:26 AM (13 years ago)
- svn:sync-xref-src-repo-rev:
- 81321
- Location:
- trunk
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Config.kmk
r43609 r43611 1748 1748 # Intel ASL compiler for ACPI 1749 1749 VBOX_IASLCMD ?= $(firstword $(wildcard $(PATH_DEVTOOLS_BLD)/bin/iasl$(HOSTSUFF_EXE)) iasl$(HOSTSUFF_EXE)) 1750 1751 # Bruce's C compile is a C-compiler for BIOS-related 8086 code1752 ifndef VBOX_BCC1753 if exists "$(PATH_DEVTOOLS_BLD)/bin/bcc$(HOSTSUFF_EXE)"1754 VBOX_BCC := $(PATH_DEVTOOLS_BLD)/bin/bcc$(HOSTSUFF_EXE) -B $(PATH_DEVTOOLS_BLD)/bin/1755 else1756 VBOX_BCC := bcc$(HOSTSUFF_EXE)1757 endif1758 endif1759 1760 # Assembler for BIOS-related 8086 code1761 ifndef VBOX_AS861762 if exists "$(PATH_DEVTOOLS_BLD)/bin/as86$(HOSTSUFF_EXE)"1763 VBOX_AS86 := $(PATH_DEVTOOLS_BLD)/bin/as86$(HOSTSUFF_EXE)1764 else1765 VBOX_AS86 := as86$(HOSTSUFF_EXE)1766 endif1767 endif1768 1750 1769 1751 # libxslt XSLT processor. (see PATH_TOOL_YASM for explanation why it's temporarily located in bin.) -
trunk/configure
r43363 r43611 105 105 CXX32="" 106 106 CXX64="" 107 BCC="bcc"108 107 YASM="yasm" 109 108 IASL="iasl" 110 AS86="as86"111 109 XSLTPROC="xsltproc" 112 110 GENISOIMAGE="genisoimage" … … 486 484 487 485 # 488 # Check for the bcc compiler, needed for compiling the BIOS489 #490 check_bcc()491 {492 test_header bcc493 if check_avail "$BCC" BCC; then494 bcc_ver=`$BCC -v 2>&1|grep version|sed 's+^bcc: version \(.*\)+\1+'`495 if [ $? -ne 0 ]; then496 log_failure "BCC not found"497 fail498 else499 echo "compiling the following source file:" >> $LOG500 cat > $ODIR.tmp_src.c << EOF501 int foo(a)502 int a;503 {504 return 0;505 }506 EOF507 cat $ODIR.tmp_src.c >> $LOG508 bcc_path=`which_wrapper $BCC`509 bcc_dir="`dirname $bcc_path`/"510 echo "using the following command line:" >> $LOG511 echo "$BCC -B $bcc_dir -C-c -3 -S -o $ODIR.tmp_out $ODIR.tmp_src.c" >> $LOG512 $BCC -B $bcc_dir -C-c -3 -S -o $ODIR.tmp_out $ODIR.tmp_src.c >> $LOG 2>&1513 if [ $? -ne 0 ]; then514 log_failure "BCC not working"515 fail516 else517 log_success "found version $bcc_ver"518 cnf_append "VBOX_BCC" "$bcc_path -B $bcc_dir"519 fi520 unset bcc_path521 unset bcc_dir522 fi523 fi524 }525 526 527 #528 # Check for the as86 assembler, needed for compiling the BIOS529 #530 check_as86()531 {532 test_header as86533 if check_avail "$AS86" AS86; then534 as86_ver=`$AS86 -v 2>&1|grep version|sed 's+^as86 version: \(.*\)+\1+'`535 if [ $? -ne 0 ]; then536 log_failure "as86 not found"537 fail538 else539 log_success "found version $as86_ver"540 cnf_append "VBOX_AS86" "`which_wrapper $AS86`"541 fi542 fi543 }544 545 546 #547 486 # Check for the OpenWatcom compiler, needed for compiling the BIOS 548 487 # … … 2572 2511 # the tools 2573 2512 check_gcc 2574 [ "$OS" != "darwin" ] && check_as862575 [ "$OS" != "darwin" ] && check_bcc2576 2513 check_open_watcom 2577 2514 [ "$OS" != "darwin" ] && check_iasl -
trunk/debian/control
r42435 r43611 6 6 Build-Depends: debhelper (>= 5), libz-dev, libssl-dev, libqt4-dev, 7 7 libqt4-opengl-dev, libsdl1.2-dev, uuid-dev, libxcursor-dev, 8 libidl-dev, libpam0g-dev, bcc,iasl, xsltproc, linux-headers-generic,8 libidl-dev, libpam0g-dev, iasl, xsltproc, linux-headers-generic, 9 9 wine, java2-runtime, lsb-release, g++-multilib [amd64], 10 10 libc6-dev-i386 [amd64], ia32-libs [amd64], libasound-dev, -
trunk/src/VBox/Installer/linux/debian/control
r42578 r43611 6 6 Build-Depends: debhelper (>= 5), libz-dev, libssl-dev, libqt4-dev, 7 7 libqt4-opengl-dev, libsdl1.2-dev, uuid-dev, libxcursor-dev, 8 libidl-dev, libpam0g-dev, bcc,iasl, xsltproc, linux-headers-generic,8 libidl-dev, libpam0g-dev, iasl, xsltproc, linux-headers-generic, 9 9 wine, java2-runtime, lsb-release, g++-multilib [amd64], 10 10 libc6-dev-i386 [amd64], ia32-libs [amd64], libasound-dev,
Note:
See TracChangeset
for help on using the changeset viewer.