- Timestamp:
 - Sep 18, 2020, 1:24:16 PM (5 years ago)
 - Branches:
 - ADT, arm-eh, ast-experimental, enum, forall-pointer-decay, jacob/cs343-translation, master, new-ast-unique-expr, pthread-emulation, qualifiedEnum
 - Children:
 - a951171
 - Parents:
 - 2724b4e
 - File:
 - 
      
- 1 edited
 
- 
          
  tests/Makefile.am (modified) (3 diffs)
 
 
Legend:
- Unmodified
 - Added
 - Removed
 
- 
      
tests/Makefile.am
r2724b4e r673eb7a 60 60 # adjusted CC but without the actual distcc call 61 61 CFACCLOCAL = $(if $(DISTCC_CFA_PATH),$(DISTCC_CFA_PATH) ${ARCH_FLAGS},$(TARGET_CFA) ${DEBUG_FLAGS} ${ARCH_FLAGS}) 62 CFACCLINK = $(CFACCLOCAL) $(if $(test), 2> $(test), ) $($(shell echo "${@}_FLAGSLD" | sed 's/-\|\//_/g')) 62 63 63 64 PRETTY_PATH=mkdir -p $(dir $(abspath ${@})) && cd ${srcdir} && … … 112 113 % : %.cfa $(CFACCBIN) 113 114 $(CFACOMPILETEST) -c -o $(abspath ${@}).o 114 $(CFACCL OCAL) $(if $(test), 2> $(test), ) $($(shell echo "${@}_FLAGSLD" | sed 's/-\|\//_/g')) ${@}.o -o $(abspath ${@})115 $(CFACCLINK) ${@}.o -o $(abspath ${@}) 115 116 116 117 # implicit rule for c++ test … … 176 177 $(CFACCLOCAL) $($(shell echo "${@}_FLAGSLD" | sed 's/-\|\//_/g')) $(abspath ${@}).o -o $(abspath ${@}) 177 178 179 # Linking tests 180 # Meta tests to make sure we see linking errors (can't compile with -O2 since it may multiply number of calls) 181 linking/linkerror : linking/linkerror.cfa $(CFACCBIN) 182 $(CFACOMPILETEST) -O0 -c -o $(abspath ${@}).o 183 $(CFACCLINK) -O0 ${@}.o -o $(abspath ${@}) 184 178 185 #------------------------------------------------------------------------------ 179 186 # Other targets  
  Note:
 See   TracChangeset
 for help on using the changeset viewer.