< prev index next >

common/autoconf/configure.ac

Print this page




 244 # Can the C/C++ compiler use precompiled headers?
 245 BPERF_SETUP_PRECOMPILED_HEADERS
 246 
 247 # Setup use of ccache, if available
 248 BPERF_SETUP_CCACHE
 249 
 250 ###############################################################################
 251 #
 252 # And now the finish...
 253 #
 254 ###############################################################################
 255 
 256 # Check for some common pitfalls
 257 BASIC_TEST_USABILITY_ISSUES
 258 
 259 # At the end, call the custom hook. (Dummy macro if no custom sources available)
 260 CUSTOM_LATE_HOOK
 261 
 262 # We're messing a bit with internal autoconf variables to put the config.status
 263 # in the output directory instead of the current directory.
 264 CONFIG_STATUS="$OUTPUT_ROOT/config.status"
 265 
 266 # Create the actual output files. Now the main work of configure is done.
 267 AC_OUTPUT
 268 CUSTOM_CONFIG_OUTPUT_GENERATED_HOOK
 269 
 270 # Try to move the config.log file to the output directory.
 271 if test -e ./config.log; then
 272   $MV -f ./config.log "$OUTPUT_ROOT/config.log" 2> /dev/null
 273 fi
 274 
 275 # Make the compare script executable
 276 $CHMOD +x $OUTPUT_ROOT/compare.sh
 277 
 278 # Finally output some useful information to the user
 279 HELP_PRINT_SUMMARY_AND_WARNINGS
 280 CUSTOM_SUMMARY_AND_WARNINGS_HOOK
 281 HELP_REPEAT_WARNINGS


 244 # Can the C/C++ compiler use precompiled headers?
 245 BPERF_SETUP_PRECOMPILED_HEADERS
 246 
 247 # Setup use of ccache, if available
 248 BPERF_SETUP_CCACHE
 249 
 250 ###############################################################################
 251 #
 252 # And now the finish...
 253 #
 254 ###############################################################################
 255 
 256 # Check for some common pitfalls
 257 BASIC_TEST_USABILITY_ISSUES
 258 
 259 # At the end, call the custom hook. (Dummy macro if no custom sources available)
 260 CUSTOM_LATE_HOOK
 261 
 262 # We're messing a bit with internal autoconf variables to put the config.status
 263 # in the output directory instead of the current directory.
 264 CONFIG_STATUS="$CONFIGURE_SUPPORT/config.status"
 265 
 266 # Create the actual output files. Now the main work of configure is done.
 267 AC_OUTPUT
 268 CUSTOM_CONFIG_OUTPUT_GENERATED_HOOK
 269 
 270 # Try to move the config.log file to the output directory.
 271 if test -e ./config.log; then
 272   $MV -f ./config.log "$CONFIGURE_SUPPORT/config.log" 2> /dev/null
 273 fi
 274 
 275 # Make the compare script executable
 276 $CHMOD +x $OUTPUT_ROOT/compare.sh
 277 
 278 # Finally output some useful information to the user
 279 HELP_PRINT_SUMMARY_AND_WARNINGS
 280 CUSTOM_SUMMARY_AND_WARNINGS_HOOK
 281 HELP_REPEAT_WARNINGS
< prev index next >