< prev index next >

make/autoconf/configure.ac

Print this page
rev 52573 : 8061281: Microbenchmark suite build support, directory layout and sample benchmarks
8061282: Migrate jmh-jdk-microbenchmarks into the JDK
Reviewed-by: ecaspole, mchung, erikj, ihse
Contributed-by: magnus.ihse.bursie@oracle.com, erik.joelsson@oracle.com, claes.redestad@oracle.com, sfriberg@kth.se


 163 # First determine the toolchain type (compiler family)
 164 TOOLCHAIN_DETERMINE_TOOLCHAIN_TYPE
 165 
 166 # The global flags are needed for configure to be able to run the compilers
 167 # correctly.
 168 FLAGS_PRE_TOOLCHAIN
 169 
 170 # Then detect the actual binaries needed
 171 TOOLCHAIN_PRE_DETECTION
 172 TOOLCHAIN_DETECT_TOOLCHAIN_CORE
 173 TOOLCHAIN_DETECT_TOOLCHAIN_EXTRA
 174 TOOLCHAIN_POST_DETECTION
 175 
 176 # Finally do some processing after the detection phase
 177 TOOLCHAIN_SETUP_BUILD_COMPILERS
 178 TOOLCHAIN_MISC_CHECKS
 179 
 180 # Setup the JTReg Regression Test Harness.
 181 TOOLCHAIN_SETUP_JTREG
 182 



 183 # Setup Jib dependency tool
 184 TOOLCHAIN_SETUP_JIB
 185 
 186 # After toolchain setup, we need to process some flags to be able to continue.
 187 FLAGS_POST_TOOLCHAIN
 188 
 189 # Now we can test some aspects on the target using configure macros.
 190 PLATFORM_SETUP_OPENJDK_TARGET_BITS
 191 PLATFORM_SETUP_OPENJDK_TARGET_ENDIANNESS
 192 
 193 # Configure flags for the tools
 194 FLAGS_SETUP_FLAGS
 195 
 196 # Setup debug symbols (need objcopy from the toolchain for that)
 197 JDKOPT_SETUP_DEBUG_SYMBOLS
 198 JDKOPT_SETUP_CODE_COVERAGE
 199 
 200 # AddressSanitizer
 201 JDKOPT_SETUP_ADDRESS_SANITIZER
 202 




 163 # First determine the toolchain type (compiler family)
 164 TOOLCHAIN_DETERMINE_TOOLCHAIN_TYPE
 165 
 166 # The global flags are needed for configure to be able to run the compilers
 167 # correctly.
 168 FLAGS_PRE_TOOLCHAIN
 169 
 170 # Then detect the actual binaries needed
 171 TOOLCHAIN_PRE_DETECTION
 172 TOOLCHAIN_DETECT_TOOLCHAIN_CORE
 173 TOOLCHAIN_DETECT_TOOLCHAIN_EXTRA
 174 TOOLCHAIN_POST_DETECTION
 175 
 176 # Finally do some processing after the detection phase
 177 TOOLCHAIN_SETUP_BUILD_COMPILERS
 178 TOOLCHAIN_MISC_CHECKS
 179 
 180 # Setup the JTReg Regression Test Harness.
 181 TOOLCHAIN_SETUP_JTREG
 182 
 183 # Setup the Java Microbenchmark Harness (JMH)
 184 LIB_TESTS_SETUP_JMH
 185 
 186 # Setup Jib dependency tool
 187 TOOLCHAIN_SETUP_JIB
 188 
 189 # After toolchain setup, we need to process some flags to be able to continue.
 190 FLAGS_POST_TOOLCHAIN
 191 
 192 # Now we can test some aspects on the target using configure macros.
 193 PLATFORM_SETUP_OPENJDK_TARGET_BITS
 194 PLATFORM_SETUP_OPENJDK_TARGET_ENDIANNESS
 195 
 196 # Configure flags for the tools
 197 FLAGS_SETUP_FLAGS
 198 
 199 # Setup debug symbols (need objcopy from the toolchain for that)
 200 JDKOPT_SETUP_DEBUG_SYMBOLS
 201 JDKOPT_SETUP_CODE_COVERAGE
 202 
 203 # AddressSanitizer
 204 JDKOPT_SETUP_ADDRESS_SANITIZER
 205 


< prev index next >