Changeset 4446 in vbox for trunk/configure
- Timestamp:
- Aug 30, 2007 2:51:16 PM (18 years ago)
- svn:sync-xref-src-repo-rev:
- 24032
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/configure
r3934 r4446 1089 1089 1090 1090 # 1091 # Check if we are able to build 32-bit applications (needed for the guest additions) 1092 # 1093 check_32bit() 1094 { 1095 test_header "32-bit support" 1096 cat > .tmp_src.c << EOF 1097 #include <stdint.h> 1098 int main(void) 1099 { 1100 return 0; 1101 } 1102 EOF 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 # 1091 1119 # Show help 1092 1120 # … … 1101 1129 --disable-xpcom disable XPCOM and related stuff 1102 1130 --disable-sdl-ttf disable SDL_ttf detection 1131 --disable-32 disable check for 32-bit compiler 1103 1132 --build-xalan build xalan & xerces from shipped sources 1104 1133 … … 1311 1340 check_alsa 1312 1341 check_compiler_h 1342 [ "$BUILD_MACHINE" = "amd64" ] && check_32bit 1313 1343 fi 1314 1344
Note:
See TracChangeset
for help on using the changeset viewer.