Changeset 27840 for branches/simtest_nebulous_branches/Ohana/configure.tcsh
- Timestamp:
- May 3, 2010, 8:50:52 AM (16 years ago)
- Location:
- branches/simtest_nebulous_branches
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/simtest_nebulous_branches
- Property svn:mergeinfo changed
-
branches/simtest_nebulous_branches/Ohana
-
Property svn:mergeinfo
set to (toggle deleted branches)
/trunk/Ohana merged eligible /branches/eam_branches/Ohana.20100407 27635-27772 /branches/pap_delete/Ohana 27530-27595
-
Property svn:mergeinfo
set to (toggle deleted branches)
-
branches/simtest_nebulous_branches/Ohana/configure.tcsh
r21508 r27840 9 9 set vararch = 0 10 10 set optimize = 0 11 set pedantic = 011 set pedantic = 1 12 12 set memcheck = 0 13 13 set use_tcmalloc = 0 14 14 set use_gnu99 = 0 15 set no_largefiles = 0 15 16 16 17 set prefix = "" … … 74 75 set use_gnu99 = 1 75 76 breaksw; 77 case --no-largefiles 78 set no_largefiles = 1 79 breaksw; 76 80 case --pedantic 77 81 set pedantic = 1 82 breaksw; 83 case --no-pedantic 84 set pedantic = 0 78 85 breaksw; 79 86 case --prefix* … … 180 187 # use_gnu99 181 188 if ($use_gnu99) set CFLAGS = "$CFLAGS -std=gnu99" 189 190 # no_largefiles 191 if ($no_largefiles) then 192 echo "skipping explicit large-file support" 193 else 194 set addflags = `getconf LFS_CFLAGS` 195 set CFLAGS = "$CFLAGS $addflags" 196 endif 182 197 183 198 if (! $?CPPFLAGS) then … … 650 665 -h, --help display this help and exit 651 666 --enable-optimize enable compiler optimization (-O2) 667 --enable-profile enable 652 668 --enable-memcheck enable ohana memory tests 653 669 --pedantic include -Wall -Werror on compilation 670 --use-tcmalloc use the alternate tcmalloc from Google 671 --use-gnu99 use gnu99 flags to ensure C99 compatibility 672 --use-largefiles ensure large file compatibility 654 673 655 674 Installation directories:
Note:
See TracChangeset
for help on using the changeset viewer.
