VirtualBox

Changeset 4446 in vbox for trunk/configure


Ignore:
Timestamp:
Aug 30, 2007 2:51:16 PM (18 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
24032
Message:

configure: basic check for 32-bit support on 64-bit machines

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/configure

    r3934 r4446  
    10891089
    10901090#
     1091# Check if we are able to build 32-bit applications (needed for the guest additions)
     1092#
     1093check_32bit()
     1094{
     1095  test_header "32-bit support"
     1096  cat > .tmp_src.c << EOF
     1097#include <stdint.h>
     1098int main(void)
     1099{
     1100  return 0;
     1101}
     1102EOF
     1103  echo "compiling the following source file:" >> $LOG
     1104  cat .tmp_src.c >> $LOG
     1105  echo "using the following command line:" >> $LOG
     1106  echo "$CC -m32 -O -Wall -o .tmp_out .tmp_src.c" >> $LOG
     1107  $CC -m32 -O -Wall -o .tmp_out .tmp_src.c >> $LOG 2>&1
     1108  if [ $? -ne 0 ]; then
     1109    echo
     1110    echo "  Cannot compile 32-bit applications (missing headers and/or libraries)!"
     1111    echo "  Check the file $LOG for detailed error information."
     1112    fail
     1113  fi
     1114  log_success ""
     1115}
     1116
     1117
     1118#
    10911119# Show help
    10921120#
     
    11011129  --disable-xpcom         disable XPCOM and related stuff
    11021130  --disable-sdl-ttf       disable SDL_ttf detection
     1131  --disable-32            disable check for 32-bit compiler
    11031132  --build-xalan           build xalan & xerces from shipped sources
    11041133
     
    13111340  check_alsa
    13121341  check_compiler_h
     1342  [ "$BUILD_MACHINE" = "amd64" ] && check_32bit
    13131343fi
    13141344
Note: See TracChangeset for help on using the changeset viewer.

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