Changeset 39397
- Timestamp:
- Feb 26, 2016, 6:25:27 AM (10 years ago)
- File:
-
- 1 edited
-
trunk/Ohana/configure.tcsh (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Ohana/configure.tcsh
r39337 r39397 16 16 set use_gnu99 = 0 17 17 set no_largefiles = 0 18 set extra_safety_checks = 0 18 19 19 20 set prefix = "" … … 80 81 set sanitize_address = 1 81 82 breaksw; 83 case --extra-safety-checks 84 set extra_safety_checks = 1 85 breaksw; 82 86 case --enable-memcheck 83 87 set memcheck = 1 … … 200 204 if ($optimize) set CFLAGS = "-O2" 201 205 206 # other temp flags: 202 207 # profiler code 203 208 if ($profile) set CFLAGS = "$CFLAGS -pg" … … 224 229 set CPPFLAGS = "" 225 230 endif 231 232 # other temp flags 233 if ($extra_safety_checks) then 234 set CPPFLAGS = "$CPPFLAGS -fstack-check -fstack-protector-all -D_FORTIFY_SOURCE=2 -Wstrict-aliasing=2" 235 endif 226 236 227 237 if ($pedantic) set CPPFLAGS = "$CPPFLAGS -Wall -Werror"
Note:
See TracChangeset
for help on using the changeset viewer.
