Changeset 11493 for trunk/psLib/configure.ac
- Timestamp:
- Jan 31, 2007, 12:18:49 PM (19 years ago)
- File:
-
- 1 edited
-
trunk/psLib/configure.ac (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/configure.ac
r11013 r11493 39 39 AC_PROG_MAKE_SET 40 40 41 dnl handle optimized building 42 AC_ARG_ENABLE(optimize, 43 [AS_HELP_STRING(--enable-optimize,enable compiler optimization)], 44 [AC_MSG_RESULT(compile optimization enabled) 45 CFLAGS="${CFLAGS=} -pipe -O2 -g" 46 PSLIB_CFLAGS="${PSLIB_CFLAGS=} -DPS_NO_TRACE"], 47 [AC_MSG_RESULT([compile optimization disabled]) 48 if test x"${CFLAGS}" == x; then 49 CFLAGS="-pipe -O0 -g" 50 fi 51 ] 52 ) 53 54 dnl handle profiler building 55 AC_ARG_ENABLE(profile, 56 [AS_HELP_STRING(--enable-profile,enable compiler profiler information inclusion)], 57 [AC_MSG_RESULT(compile optimization enabled) 58 CFLAGS="${CFLAGS=} -pg -g" 59 LDFLAGS="${LDFLAGS=} -pg"] 60 ) 61 62 dnl handle path coverage checking 63 AC_ARG_ENABLE(coverage, 64 [AS_HELP_STRING(--enable-coverage,enable path coverage checking)], 65 [AC_MSG_RESULT(path coverage enabled) 66 CFLAGS="${CFLAGS=} -lgcov -fprofile-arcs -ftest-coverage -pg"] 67 ) 68 69 dnl turn off trace messages 70 AC_ARG_ENABLE(trace, 71 [AS_HELP_STRING(--disable-trace,disable psTrace functionality)], 72 [AC_MSG_RESULT(psTrace disabled) 73 PSLIB_CFLAGS="${PSLIB_CFLAGS=} -DPS_NO_TRACE"] 74 ) 41 IPP_STDOPTS 75 42 76 43 dnl build tests at the same time as the source code … … 486 453 487 454 AC_CONFIG_FILES([ 455 Doxyfile 488 456 Makefile 457 etc/Makefile 458 m4/Makefile 459 pslib-config 460 pslib.pc 461 share/Makefile 489 462 src/Makefile 490 src/sys/Makefile491 463 src/astro/Makefile 492 464 src/db/Makefile … … 497 469 src/math/Makefile 498 470 src/mathtypes/Makefile 471 src/sys/Makefile 499 472 src/types/Makefile 500 473 test/Makefile 501 test/sys/Makefile502 474 test/astro/Makefile 503 475 test/db/Makefile … … 508 480 test/math/Makefile 509 481 test/mathtypes/Makefile 510 test/types/Makefile511 482 test/pstap/Makefile 512 483 test/pstap/src/Makefile 484 test/sys/Makefile 485 test/types/Makefile 513 486 utils/Makefile 514 etc/Makefile515 share/Makefile516 pslib-config517 pslib.pc518 Doxyfile519 487 ]) 520 488 dnl src/xml/Makefile
Note:
See TracChangeset
for help on using the changeset viewer.
