Skip to content
Snippets Groups Projects
Select Git revision
  • c5b1d3f510606edb2ab22b54b9b35a513f8ff906
  • master default protected
  • compilation2022apr
  • ISEI_3_5_1
  • VERSION_3_9-alba
  • VERSION_3_9-Indus2
  • Jianfeng
  • VERSION-3_10
  • VERSION-3_9_1
  • VERSION-3_9_alba
  • VERSION-3_9_Indus2
  • VERSION-3_9
  • VERSION-3_8
  • VERSION-3_7
  • ISEI_3_5_1-PATCH_2
  • ISEI_3_5_1-PATCH_1
  • PROD_3_5_1
  • VERSION_3_6prerelease2
  • VERSION_3_6prerelease
  • VERSION-3_5
  • tracy
21 results

configure.in

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    configure.in 769 B
    # Process this file with autoconf to produce a configure script.
    AC_INIT(tracy/src/t2elem.cc)
    AC_CONFIG_AUX_DIR(config)
    AM_INIT_AUTOMAKE(Tracy, 3.5)
    AM_CONFIG_HEADER(config.h)
    # Checks for programs.
    AC_PROG_AWK
    # Check for compiler in this order
    # icc is on the Cluster
    # gcc otherwise MAC, Linux
    AC_PROG_CC([icc gcc])
    AM_PROG_CC_STDC
    AC_PROG_INSTALL
    AC_PROG_LN_S
    AC_PROG_CPP
    AC_PROG_RANLIB
    AC_PROG_CXX(gcc)
    AM_PROG_CC_C_O
    AC_PROG_F77(gfortran)
    
    # Checks for libraries.
    
    # Checks for header files.
    AC_CHECK_HEADERS([stdlib.h string.h])
    
    # Checks for typedefs, structures, and compiler characteristics.
    AC_C_CONST
    AC_C_INLINE
    AC_TYPE_SIZE_T
    
    # Checks for library functions.
    AC_OUTPUT(Makefile
              TPSA/Makefile
    	  tracy/Makefile tracy/src/Makefile tools/Makefile)