[ef7d253] | 1 | ######################## -*- Mode: Makefile-Automake -*- ######################
|
---|
| 2 | ##
|
---|
| 3 | ## Cforall Version 1.0.0 Copyright (C) 2015 University of Waterloo
|
---|
| 4 | ##
|
---|
| 5 | ## The contents of this file are covered under the licence agreement in the
|
---|
| 6 | ## file "LICENCE" distributed with Cforall.
|
---|
| 7 | ##
|
---|
| 8 | ## Makefile.am --
|
---|
| 9 | ##
|
---|
| 10 | ## Author : Peter A. Buhr
|
---|
| 11 | ## Created On : Sun May 31 09:08:15 2015
|
---|
| 12 | ## Last Modified By : Peter A. Buhr
|
---|
[0b8c951d] | 13 | ## Last Modified On : Wed Aug 30 22:31:45 2023
|
---|
| 14 | ## Update Count : 197
|
---|
[ef7d253] | 15 | ###############################################################################
|
---|
| 16 |
|
---|
[0c1b566] | 17 | AUTOMAKE_OPTIONS = foreign # do not require all the GNU file names
|
---|
[107b01a] | 18 | ACLOCAL_AMFLAGS = -I automake
|
---|
[f85bc15] | 19 |
|
---|
[bcadb26] | 20 | include $(top_srcdir)/tools/build/cfa.make
|
---|
[dc8511c] | 21 |
|
---|
[e2887a9] | 22 | DEFAULT_INCLUDES = -I${abs_srcdir}
|
---|
[74cfe054] | 23 |
|
---|
[4daf79f] | 24 | debug ?= yes
|
---|
| 25 | installed ?= no
|
---|
[e3d4fd1] | 26 | ARCH = ${if ${arch},"--arch=${arch}"}
|
---|
| 27 | arch_support = "x86/x64/arm"
|
---|
[bdbf536] | 28 | TIMEOUT = ${if ${timeout},"--timeout=${timeout}"}
|
---|
[5007618] | 29 | GLOBAL_TIMEOUT = ${if ${global-timeout},"--global-timeout=${global-timeout}"}
|
---|
| 30 | ARCHIVE_ERRORS = ${if ${archive-errors},"--archive-errors=${archive-errors}"}
|
---|
| 31 |
|
---|
[e3d4fd1] | 32 | DEBUG_FLAGS = -debug -g -O0
|
---|
[e3a5a73] | 33 |
|
---|
[e3d4fd1] | 34 | quick_test = avl_test operators numericConstants expression enum array typeof cast raii/dtor-early-exit raii/init_once attributes meta/dumpable
|
---|
[be65cca] | 35 |
|
---|
[e2887a9] | 36 | TEST_PY = python3 ${builddir}/test.py
|
---|
[f85bc15] | 37 |
|
---|
[ef7d253] | 38 | # applies to both programs
|
---|
[d65f92c] | 39 | # since automake doesn't have support for CFA we have to
|
---|
[e2887a9] | 40 | AM_CFLAGS = ${if ${test}, 2> ${test}, } \
|
---|
| 41 | -fdebug-prefix-map=${abspath ${abs_srcdir}}= \
|
---|
[87fc1b4] | 42 | -fdebug-prefix-map=/tmp= \
|
---|
[0a19c51] | 43 | -fno-diagnostics-show-caret \
|
---|
[b8f6002] | 44 | -g \
|
---|
| 45 | -Wall \
|
---|
[850aff1] | 46 | -Werror=return-type \
|
---|
[b8f6002] | 47 | -Wno-unused-function \
|
---|
[36fbaeca] | 48 | -Wno-psabi \
|
---|
[b44959f] | 49 | -quiet @CFA_FLAGS@
|
---|
[7c03d6d] | 50 |
|
---|
[7215000] | 51 | AM_CFAFLAGS = -XCFA --deterministic-out
|
---|
| 52 |
|
---|
[158b026] | 53 | # get the desired cfa to test
|
---|
[e2887a9] | 54 | TARGET_CFA = ${if ${filter ${installed},yes}, @CFACC_INSTALL@, @CFACC@}
|
---|
[158b026] | 55 |
|
---|
[34e1494] | 56 | # adjust CC to current flags
|
---|
[e2887a9] | 57 | CC = LC_ALL=C ${if ${DISTCC_CFA_PATH},distcc ${DISTCC_CFA_PATH} ${ARCH_FLAGS} ,${TARGET_CFA} ${DEBUG_FLAGS} ${ARCH_FLAGS}}
|
---|
| 58 | CFACC = ${CC}
|
---|
[ef7d253] | 59 |
|
---|
[34e1494] | 60 | # get local binary for depedencies
|
---|
| 61 | CFACCBIN = @CFACC@
|
---|
| 62 |
|
---|
| 63 | # adjusted CC but without the actual distcc call
|
---|
[e2887a9] | 64 | CFACCLOCAL = ${if ${DISTCC_CFA_PATH},${DISTCC_CFA_PATH} ${ARCH_FLAGS} ,${TARGET_CFA} ${DEBUG_FLAGS} ${ARCH_FLAGS}}
|
---|
| 65 | CFACCLINK = ${CFACCLOCAL} -quiet ${if ${test}, 2> ${test}, } ${${shell echo "${@}_FLAGSLD" | sed 's/-\|\//_/g'}}
|
---|
[34e1494] | 66 |
|
---|
[e3d4fd1] | 67 | PRETTY_PATH = mkdir -p ${dir ${abspath ${@}}} && cd ${srcdir} &&
|
---|
[f7d3215] | 68 |
|
---|
[bdbf536] | 69 | .PHONY : concurrency list .validate .test_makeflags
|
---|
[e2887a9] | 70 | .INTERMEDIATE : .validate .validate.cfa .test_makeflags
|
---|
[258aaab8] | 71 | EXTRA_PROGRAMS = avl_test linkonce linking/mangling/anon .dummy_hack # build but do not install
|
---|
[a468e1e9] | 72 | EXTRA_DIST = test.py \
|
---|
| 73 | pybin/__init__.py \
|
---|
| 74 | pybin/print-core.gdb \
|
---|
| 75 | pybin/settings.py \
|
---|
| 76 | pybin/test_run.py \
|
---|
| 77 | pybin/tools.py \
|
---|
| 78 | long_tests.hfa \
|
---|
[d0fa494] | 79 | avltree/avl-private.h \
|
---|
| 80 | avltree/avl.h \
|
---|
[d0a00a5a] | 81 | configs/.in/parseconfig-all.txt \
|
---|
| 82 | configs/.in/parseconfig-errors.txt \
|
---|
| 83 | configs/.in/parseconfig-missing.txt \
|
---|
[d0fa494] | 84 | exceptions/except-io.hfa \
|
---|
| 85 | exceptions/with-threads.hfa \
|
---|
[b44959f] | 86 | io/.in/io.data \
|
---|
[3bd5ca7] | 87 | io/.in/many_read.data \
|
---|
[d0fa494] | 88 | meta/fork+exec.hfa \
|
---|
[c26bea2a] | 89 | concurrency/clib_tls.c \
|
---|
| 90 | concurrency/clib.c \
|
---|
| 91 | concurrency/unified_locking/mutex_test.hfa \
|
---|
[9c4330d5] | 92 | concurrency/channels/parallel_harness.hfa \
|
---|
[0b8c951d] | 93 | array-collections/dimexpr-match.hfa \
|
---|
[ee16f8fc] | 94 | array-collections/dimexpr-match-detail.sh \
|
---|
| 95 | array-collections/array-raii.hfa
|
---|
[a468e1e9] | 96 |
|
---|
| 97 | dist-hook:
|
---|
| 98 | echo "Gathering test files"
|
---|
[e2887a9] | 99 | for file in `${TEST_PY} --list-dist`; do \
|
---|
| 100 | if test -f ${srcdir}/$${file}; then \
|
---|
| 101 | ${MKDIR_P} $$(dirname ${distdir}/$${file}); \
|
---|
| 102 | cp -df ${srcdir}/$${file} ${distdir}/$${file}; \
|
---|
[a468e1e9] | 103 | fi; \
|
---|
| 104 | done
|
---|
[44f44617] | 105 |
|
---|
[107b01a] | 106 | avl_test_SOURCES = avltree/avl_test.cfa avltree/avl0.cfa avltree/avl1.cfa avltree/avl2.cfa avltree/avl3.cfa avltree/avl4.cfa avltree/avl-private.cfa
|
---|
[aff7e86] | 107 | linkonce_SOURCES = link-once/main.cfa link-once/partner.cfa
|
---|
[258aaab8] | 108 | linking_mangling_anon_SOURCES = linking/mangling/header.hfa linking/mangling/lib.cfa linking/mangling/main.cfa
|
---|
[2b10f95] | 109 | # automake doesn't know we still need C/CPP rules so pretend like we have a C program
|
---|
[b7fe2e6] | 110 | nodist__dummy_hack_SOURCES = .dummy_hack.c .dummy_hackxx.cpp
|
---|
[a0dcd2e] | 111 |
|
---|
[73abe95] | 112 | #----------------------------------------------------------------------------------------------------------------
|
---|
[4daf79f] | 113 |
|
---|
[5007618] | 114 | # '@' => do not echo command (SILENT), '+' => allows recursive make from within python program
|
---|
[c083c3d] | 115 | all-local : # This name is important to automake and implies the default build target.
|
---|
[d144c26] | 116 | @+${TEST_PY} --debug=${debug} --install=${installed} ${ARCHIVE_ERRORS} ${TIMEOUT} ${GLOBAL_TIMEOUT} ${ARCH} --all
|
---|
[4daf79f] | 117 |
|
---|
[5007618] | 118 | tests : all-local # synonym
|
---|
[4daf79f] | 119 |
|
---|
[5007618] | 120 | install : all-local # synonym, PAB only
|
---|
[df42128] | 121 |
|
---|
[4daf79f] | 122 | quick :
|
---|
[5007618] | 123 | @+${TEST_PY} --debug=${debug} --install=${installed} ${ARCHIVE_ERRORS} ${ARCH} ${quick_test}
|
---|
[e2887a9] | 124 |
|
---|
| 125 | concurrency :
|
---|
[5007618] | 126 | @+${TEST_PY} --debug=${debug} --install=${installed} ${ARCHIVE_ERRORS} ${TIMEOUT} ${GLOBAL_TIMEOUT} ${ARCH} -Iconcurrency
|
---|
[e2887a9] | 127 |
|
---|
| 128 | list :
|
---|
[bdbf536] | 129 | @+${TEST_PY} --list
|
---|
[e2887a9] | 130 |
|
---|
| 131 | help :
|
---|
| 132 | @echo "user targets:"
|
---|
| 133 | @echo " Run the complete test suite."
|
---|
[5007618] | 134 | @echo " $$ make (null) / tests [debug=yes/no] [installed=yes/no] [archive-errors=dump-dir] [timeout=seconds] [global-timeout=seconds] [arch=${arch_support}]"
|
---|
[e2887a9] | 135 | @echo ""
|
---|
| 136 | @echo " Run the short (quick) test suite."
|
---|
[5007618] | 137 | @echo " $$ make quick [debug=yes/no] [installed=yes/no] [archive-errors=dump-dir] [arch=${arch_support}]"
|
---|
[e2887a9] | 138 | @echo ""
|
---|
[bdbf536] | 139 | @echo " Run the concurrency test suite."
|
---|
[5007618] | 140 | @echo " $$ make concurrency [debug=yes/no] [installed=yes/no] [archive-errors=dump-dir] [timeout=seconds] [global-timeout=seconds] [arch=${arch_support}]"
|
---|
[e2887a9] | 141 | @echo ""
|
---|
| 142 | @echo " List all tests in the test suite."
|
---|
| 143 | @echo " $$ make list"
|
---|
[927e9ce] | 144 |
|
---|
[2a59655] | 145 | mostlyclean-local :
|
---|
[e2887a9] | 146 | find ${builddir} -not -path './__pycache__/*' -path '*.o' -delete
|
---|
| 147 | find ${builddir} -not -path './__pycache__/*' -path '*/.err/*.log' -delete
|
---|
| 148 | find ${builddir} -not -path './__pycache__/*' -path '*/.out/*.log' -delete
|
---|
| 149 | rm -f ${EXTRA_PROGRAMS}
|
---|
[2a59655] | 150 | rm -rf __pycache__
|
---|
| 151 |
|
---|
| 152 | distclean-local :
|
---|
[e2887a9] | 153 | find ${builddir} -path '*.Po' -delete
|
---|
[927e9ce] | 154 |
|
---|
[fc01219] | 155 | .test_makeflags:
|
---|
[e2887a9] | 156 | @echo "${MAKEFLAGS}"
|
---|
[fc01219] | 157 |
|
---|
[1e995d6] | 158 | .validate: .validate.cfa
|
---|
[e2887a9] | 159 | ${CFACOMPILE} .validate.cfa -fsyntax-only -Wall -Wextra -Werror
|
---|
[1e995d6] | 160 |
|
---|
| 161 | .validate.cfa:
|
---|
[e2887a9] | 162 | @echo "int main() { return 0; }" > ${@}
|
---|
[28582b2] | 163 |
|
---|
[107b01a] | 164 | # automake doesn't know we still need C rules so pretend like we have a C program
|
---|
| 165 | .dummy_hack.c:
|
---|
[e2887a9] | 166 | @echo "int main() { return 0; }" > ${@}
|
---|
[28582b2] | 167 |
|
---|
[2b10f95] | 168 | .dummy_hackxx.cpp:
|
---|
[e2887a9] | 169 | @echo "int bar() { return 0; }" > ${@}
|
---|
[026a0f5] | 170 |
|
---|
[73abe95] | 171 | #----------------------------------------------------------------------------------------------------------------
|
---|
[dc8511c] | 172 |
|
---|
[e16797c] | 173 | # Use for all tests, make sure the path are correct and all flags are added
|
---|
[e2887a9] | 174 | CFACOMPILETEST=${PRETTY_PATH} ${CFACOMPILE} ${shell realpath --relative-to=${srcdir} ${<}} ${${shell echo "${@}_FLAGSCFA" | sed 's/-\|\//_/g'}}
|
---|
[d9b499c] | 175 |
|
---|
[e16797c] | 176 | #----------------------------------------------------------------------------------------------------------------
|
---|
[a843067] | 177 |
|
---|
[e16797c] | 178 | # implicit rule so not all test require a rule
|
---|
[15f9c8e] | 179 | # split into two steps to support compiling remotely using distcc
|
---|
[34e1494] | 180 | # don't use distcc to do the linking because distcc doesn't do linking
|
---|
[e2887a9] | 181 | % : %.cfa ${CFACCBIN}
|
---|
| 182 | ${CFACOMPILETEST} -c -o ${abspath ${@}}.o -DIN_DIR="${abspath ${dir ${<}}}/.in/"
|
---|
| 183 | ${CFACCLINK} ${@}.o -o ${abspath ${@}}
|
---|
| 184 | rm ${abspath ${@}}.o
|
---|
[f7d3215] | 185 |
|
---|
[34e1494] | 186 | # implicit rule for c++ test
|
---|
| 187 | # convient for testing the testsuite itself but not actuall used
|
---|
[e16797c] | 188 | % : %.cpp
|
---|
[e2887a9] | 189 | ${PRETTY_PATH} ${CXXCOMPILE} ${shell realpath --relative-to=${srcdir} ${<}} -o ${abspath ${@}}
|
---|
[4c8f86b3] | 190 |
|
---|
[f7d3215] | 191 | #------------------------------------------------------------------------------
|
---|
[34e1494] | 192 | # TARGETS WITH CUSTOM FLAGS
|
---|
[e16797c] | 193 | #------------------------------------------------------------------------------
|
---|
[34e1494] | 194 | # custom libs
|
---|
| 195 | gmp_FLAGSLD= -lgmp
|
---|
[dc8511c] | 196 |
|
---|
[e16797c] | 197 | #------------------------------------------------------------------------------
|
---|
[34e1494] | 198 | # Generated code
|
---|
| 199 | GENERATED_CODE = declarationSpecifier gccExtensions extension attributes functions KRfunctions
|
---|
[e2887a9] | 200 | ${GENERATED_CODE} : % : %.cfa ${CFACCBIN}
|
---|
| 201 | ${CFACOMPILETEST} -CFA -XCFA -p -c -fsyntax-only -o ${abspath ${@}}
|
---|
[34e1494] | 202 |
|
---|
[e16797c] | 203 | #------------------------------------------------------------------------------
|
---|
| 204 | # CUSTOM TARGET
|
---|
| 205 | #------------------------------------------------------------------------------
|
---|
[66812dd] | 206 | # tests that just validate syntax and compiler output should be compared to stderr
|
---|
[e2887a9] | 207 | CFACOMPILE_SYNTAX = ${CFACOMPILETEST} -Wno-unused-variable -Wno-unused-label -c -fsyntax-only -o ${abspath ${@}}
|
---|
[40c81e5] | 208 |
|
---|
[35d1de5] | 209 | SYNTAX_ONLY_CODE = expression typedefRedef variableDeclarator switch numericConstants identFuncDeclarator \
|
---|
[c26bea2a] | 210 | init1 limits nested-types cast labelledExit array quasiKeyword include/stdincludes include/includes builtins/sync warnings/self-assignment concurrency/waitfor/parse
|
---|
[e2887a9] | 211 | ${SYNTAX_ONLY_CODE} : % : %.cfa ${CFACCBIN}
|
---|
| 212 | ${CFACOMPILE_SYNTAX}
|
---|
| 213 | ${if ${test}, cp ${test} ${abspath ${@}}, }
|
---|
[87fc1b4] | 214 |
|
---|
[34e1494] | 215 | # expected failures
|
---|
[e6cfb4e2] | 216 | # use custom target since they require a custom define *and* have a name that doesn't match the file
|
---|
[a5aa5bf] | 217 |
|
---|
| 218 | array-ERR1 : array.cfa ${CFACCBIN}
|
---|
| 219 | ${CFACOMPILE_SYNTAX} -DERR1
|
---|
| 220 | -cp ${test} ${abspath ${@}}
|
---|
| 221 |
|
---|
| 222 | array-ERR2 : array.cfa ${CFACCBIN}
|
---|
| 223 | ${CFACOMPILE_SYNTAX} -DERR2
|
---|
| 224 | -cp ${test} ${abspath ${@}}
|
---|
| 225 |
|
---|
| 226 | array-ERR3 : array.cfa ${CFACCBIN}
|
---|
| 227 | ${CFACOMPILE_SYNTAX} -DERR3
|
---|
| 228 | -cp ${test} ${abspath ${@}}
|
---|
| 229 |
|
---|
[0b8c951d] | 230 | array-collections/dimexpr-match-c-ERRS : array-collections/dimexpr-match-c.cfa
|
---|
[0f4ac10] | 231 | ${CFACOMPILE_SYNTAX} -DERRS
|
---|
| 232 | -cp ${test} ${abspath ${@}}
|
---|
| 233 |
|
---|
[0b8c951d] | 234 | array-collections/dimexpr-match-cfa-ERRS : array-collections/dimexpr-match-cfa.cfa
|
---|
[0f4ac10] | 235 | ${CFACOMPILE_SYNTAX} -DERRS
|
---|
| 236 | -cp ${test} ${abspath ${@}}
|
---|
| 237 |
|
---|
[e2887a9] | 238 | alloc-ERROR : alloc.cfa ${CFACCBIN}
|
---|
| 239 | ${CFACOMPILE_SYNTAX} -DERR1
|
---|
| 240 | -cp ${test} ${abspath ${@}}
|
---|
[b93a3de] | 241 |
|
---|
[e2887a9] | 242 | init1-ERROR : init1.cfa ${CFACCBIN}
|
---|
| 243 | ${CFACOMPILE_SYNTAX} -DERR1
|
---|
| 244 | -cp ${test} ${abspath ${@}}
|
---|
[ee858bf] | 245 |
|
---|
[e2887a9] | 246 | typedefRedef-ERR1 : typedefRedef.cfa ${CFACCBIN}
|
---|
| 247 | ${CFACOMPILE_SYNTAX} -DERR1
|
---|
| 248 | -cp ${test} ${abspath ${@}}
|
---|
[e2c70ab] | 249 |
|
---|
[e2887a9] | 250 | nested-types-ERR1 : nested-types.cfa ${CFACCBIN}
|
---|
| 251 | ${CFACOMPILE_SYNTAX} -DERR1
|
---|
| 252 | -cp ${test} ${abspath ${@}}
|
---|
[49e1275] | 253 |
|
---|
[e2887a9] | 254 | nested-types-ERR2 : nested-types.cfa ${CFACCBIN}
|
---|
| 255 | ${CFACOMPILE_SYNTAX} -DERR2
|
---|
| 256 | -cp ${test} ${abspath ${@}}
|
---|
[49e1275] | 257 |
|
---|
[e2887a9] | 258 | raii/memberCtors-ERR1 : raii/memberCtors.cfa ${CFACCBIN}
|
---|
| 259 | ${CFACOMPILE_SYNTAX} -DERR1
|
---|
| 260 | -cp ${test} ${abspath ${@}}
|
---|
[cdbfab0] | 261 |
|
---|
[e2887a9] | 262 | raii/ctor-autogen-ERR1 : raii/ctor-autogen.cfa ${CFACCBIN}
|
---|
| 263 | ${CFACOMPILE_SYNTAX} -DERR1
|
---|
| 264 | -cp ${test} ${abspath ${@}}
|
---|
[80e8582] | 265 |
|
---|
[e2887a9] | 266 | raii/dtor-early-exit-ERR1 : raii/dtor-early-exit.cfa ${CFACCBIN}
|
---|
| 267 | ${CFACOMPILE_SYNTAX} -DERR1
|
---|
| 268 | -cp ${test} ${abspath ${@}}
|
---|
[80e8582] | 269 |
|
---|
[e2887a9] | 270 | raii/dtor-early-exit-ERR2 : raii/dtor-early-exit.cfa ${CFACCBIN}
|
---|
| 271 | ${CFACOMPILE_SYNTAX} -DERR2
|
---|
| 272 | -cp ${test} ${abspath ${@}}
|
---|
[e16797c] | 273 |
|
---|
[5715d43] | 274 | # Exception Tests
|
---|
| 275 | # Test with libcfathread; it changes how storage works.
|
---|
| 276 |
|
---|
[e2887a9] | 277 | exceptions/%-threads : exceptions/%.cfa ${CFACCBIN}
|
---|
| 278 | ${CFACOMPILETEST} -include exceptions/with-threads.hfa -c -o ${abspath ${@}}.o
|
---|
| 279 | ${CFACCLOCAL} ${${shell echo "${@}_FLAGSLD" | sed 's/-\|\//_/g'}} ${abspath ${@}}.o -o ${abspath ${@}}
|
---|
[5715d43] | 280 |
|
---|
[673eb7a] | 281 | # Linking tests
|
---|
| 282 | # Meta tests to make sure we see linking errors (can't compile with -O2 since it may multiply number of calls)
|
---|
[e2887a9] | 283 | linking/linkerror : linking/linkerror.cfa ${CFACCBIN}
|
---|
| 284 | ${CFACOMPILETEST} -O0 -c -o ${abspath ${@}}.o
|
---|
| 285 | ${CFACCLINK} -O0 ${@}.o -o ${abspath ${@}}
|
---|
| 286 | rm ${abspath ${@}}.o
|
---|
[673eb7a] | 287 |
|
---|
[34e1494] | 288 | #------------------------------------------------------------------------------
|
---|
| 289 | # Other targets
|
---|