Changes in / [7b3a6e6:0e0f128c]
- Files:
-
- 7 added
- 4 deleted
- 27 edited
-
.gitignore (modified) (1 diff)
-
Jenkinsfile (modified) (7 diffs)
-
Makefile.in (modified) (1 diff)
-
automake/cfa.m4 (modified) (5 diffs)
-
benchmark/Makefile.am (modified) (1 diff)
-
benchmark/Makefile.in (modified) (2 diffs)
-
configure (modified) (9 diffs)
-
configure.ac (modified) (2 diffs)
-
driver/Makefile.am (modified) (1 diff)
-
driver/Makefile.in (modified) (2 diffs)
-
libcfa/configure (modified) (4 diffs)
-
libcfa/prelude/Makefile.am (modified) (1 diff)
-
libcfa/prelude/Makefile.in (modified) (1 diff)
-
src/Makefile.am (modified) (2 diffs)
-
src/Makefile.in (modified) (3 diffs)
-
tests/.expect/math1.txt (modified) (1 diff)
-
tests/.expect/math2.txt (deleted)
-
tests/.expect/math2.x64.txt (added)
-
tests/.expect/math2.x86.txt (added)
-
tests/.expect/math3.txt (deleted)
-
tests/.expect/math3.x64.txt (added)
-
tests/.expect/math3.x86.txt (added)
-
tests/.expect/math4.txt (deleted)
-
tests/.expect/math4.x64.txt (added)
-
tests/.expect/time.txt (deleted)
-
tests/.expect/time.x64.txt (added)
-
tests/.expect/time.x86.txt (added)
-
tests/Makefile.am (modified) (1 diff)
-
tests/Makefile.in (modified) (2 diffs)
-
tests/math1.c (modified) (1 diff)
-
tests/preempt_longrun/Makefile.am (modified) (1 diff)
-
tests/preempt_longrun/Makefile.in (modified) (2 diffs)
-
tests/pybin/settings.py (modified) (1 diff)
-
tests/time.c (modified) (1 diff)
-
tools/Makefile.am (modified) (1 diff)
-
tools/Makefile.in (modified) (3 diffs)
-
tools/prettyprinter/Makefile.am (modified) (2 diffs)
-
tools/prettyprinter/Makefile.in (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
.gitignore
r7b3a6e6 r0e0f128c 28 28 29 29 # src executables, for lib and bin 30 driver/as31 driver/cfa32 driver/cfa-cpp33 driver/cc130 src/driver/as 31 src/driver/cfa 32 src/driver/cfa-cpp 33 src/driver/cc1 34 34 35 libcfa/prelude/bootloader.c 36 libcfa/prelude/builtins.cf 37 libcfa/prelude/extras.cf 38 libcfa/prelude/gcc-builtins.cf 39 libcfa/prelude/gcc-builtins.c 40 libcfa/prelude/prelude.cf 41 libcfa/x64-debug/ 42 libcfa/x64-nodebug/ 43 libcfa/x64-nolib/ 44 libcfa/x86-debug/ 45 libcfa/x86-nodebug/ 46 libcfa/x86-nolib/ 47 libcfa/arm-debug/ 48 libcfa/arm-nodebug/ 49 libcfa/arm-nolib/ 50 35 src/prelude/bootloader.c 36 src/prelude/builtins.cf 37 src/prelude/extras.cf 38 src/prelude/gcc-builtins.cf 39 src/prelude/gcc-builtins.c 40 src/prelude/prelude.cf 41 src/libcfa/libcfa-prelude.c 51 42 52 43 # generated by bison and lex from parser.yy and lex.ll -
Jenkinsfile
r7b3a6e6 r0e0f128c 277 277 //Use the current directory as the installation target so nothing escapes the sandbox 278 278 //Also specify the compiler by hand 279 targets="" 280 if(do_alltests) { 281 targets="--with-target-hosts='host:debug,host:nodebug'" 282 } else { 283 targets="--with-target-hosts='host:debug'" 284 } 285 286 sh "${srcdir}/configure CXX=${compiler.cpp_cc} ${architecture} ${targets} --with-backend-compiler=${compiler.cfa_cc} --quiet" 279 sh "${srcdir}/configure CXX=${compiler.cpp_cc} ${architecture} --with-backend-compiler=${compiler.cfa_cc} --enable-silent-rules --quiet" 287 280 288 281 //Compile the project … … 298 291 //Run the tests from the tests directory 299 292 if ( do_alltests ) { 300 sh 'make --no-print-directory -C tests all-tests debug=yes'301 sh 'make --no-print-directory -C tests all-tests debug=no '293 sh 'make --no-print-directory -C src/tests all-tests debug=yes' 294 sh 'make --no-print-directory -C src/tests all-tests debug=no ' 302 295 } 303 296 else { 304 sh 'make --no-print-directory -C tests'297 sh 'make --no-print-directory -C src/tests' 305 298 } 306 299 } … … 315 308 dir (builddir) { 316 309 //Append bench results 317 sh "make --no-print-directory -C benchmark jenkins githash=${gitRefNewValue} arch=${arch_name} | tee ${srcdir}/bench.json"310 sh "make --no-print-directory -C src/benchmark jenkins githash=${gitRefNewValue} arch=${arch_name} | tee ${srcdir}/bench.json" 318 311 } 319 312 } … … 348 341 //Routine responsible of sending the email notification once the build is completed 349 342 //=========================================================================================================== 350 def gitBranchUpdate(String gitRefOldValue, String gitRefNewValue) {351 def update = ""352 sh "git rev-list ${gitRefOldValue}..${gitRefNewValue} > GIT_LOG";353 readFile('GIT_LOG').eachLine { rev ->354 sh "git cat-file -t ${rev} > GIT_TYPE"355 def type = readFile('GIT_TYPE')356 357 update += " via ${rev} (${type})\n"358 }359 def rev = gitRefOldValue360 sh "git cat-file -t ${rev} > GIT_TYPE"361 def type = readFile('GIT_TYPE')362 363 update += " from ${rev} (${type})\n"364 return update365 366 def output=readFile('result').trim()367 echo "output=$output";368 }369 370 343 //Standard build email notification 371 344 def email(String status, boolean log, boolean bIsSandbox) { … … 376 349 def gitLog = 'Error retrieving git logs' 377 350 def gitDiff = 'Error retrieving git diff' 378 def gitUpdate = 'Error retrieving update'379 351 380 352 try { 381 gitUpdate = gitBranchUpdate(gitRefOldValue, gitRefNewValue)382 353 383 354 sh "git rev-list --format=short ${gitRefOldValue}...${gitRefNewValue} > GIT_LOG" … … 387 358 gitDiff = readFile('GIT_DIFF') 388 359 } 389 catch (Exception error) { 390 echo error.toString() 391 echo error.getMessage() 392 } 360 catch (Exception error) {} 393 361 394 362 def email_subject = "[${project_name} git][BUILD# ${env.BUILD_NUMBER} - ${status}] - branch ${env.BRANCH_NAME}" … … 399 367 400 368 The branch ${env.BRANCH_NAME} has been updated. 401 ${gitUpdate} 369 via ${gitRefOldValue} (commit) 370 from ${gitRefNewValue} (commit) 402 371 403 372 Check console output at ${env.BUILD_URL} to view the results. -
Makefile.in
r7b3a6e6 r0e0f128c 284 284 EXEEXT = @EXEEXT@ 285 285 GREP = @GREP@ 286 HOST_FLAGS = @HOST_FLAGS@287 286 INSTALL = @INSTALL@ 288 287 INSTALL_DATA = @INSTALL_DATA@ -
automake/cfa.m4
r7b3a6e6 r0e0f128c 6 6 cfa_prefix=${prefix} 7 7 fi 8 cfa_prefix="$(readlink -f ${cfa_prefix})/"9 8 AC_DEFINE_UNQUOTED(CFA_PREFIX, "${cfa_prefix}", [Location of cfa install.]) 10 9 AC_SUBST(CFA_PREFIX, ${cfa_prefix}) … … 15 14 cfa_incdir=${includedir} 16 15 fi 17 cfa_incdir="$(readlink -f ${cfa_incdir})/"18 16 AC_DEFINE_UNQUOTED(CFA_INCDIR, "${cfa_incdir}", [Location of include files.]) 19 17 AC_SUBST(CFA_INCDIR, ${cfa_incdir}) … … 24 22 cfa_bindir=${bindir} 25 23 fi 26 cfa_bindir="$(readlink -f ${cfa_bindir})/"27 24 AC_DEFINE_UNQUOTED(CFA_BINDIR, "${cfa_bindir}", [Location of cfa command.]) 28 25 AC_SUBST(CFA_BINDIR, ${cfa_bindir}) … … 37 34 cfa_libdir="${libdir}/${ARCHITECTURE}${CONFIGURATION}" 38 35 fi 39 cfa_libdir="$(readlink -f ${cfa_libdir})/"40 36 AC_DEFINE_UNQUOTED(CFA_LIBDIR, "${cfa_libdir}", [Location of cc1 and cfa-cpp commands.]) 41 37 AC_SUBST(CFA_LIBDIR, ${cfa_libdir}) … … 58 54 AC_DEFUN([M4CFA_CANNON_CPU], [ 59 55 case $arch_name in 60 "host") arch_name=${host_cpu};;61 *) ;;62 esac63 64 case $arch_name in65 56 "x64" ) cannon_arch_name="x64";; 66 57 "x86-64" ) cannon_arch_name="x64";; -
benchmark/Makefile.am
r7b3a6e6 r0e0f128c 14 14 ## Update Count : 25 15 15 ############################################################################### 16 17 AUTOMAKE_OPTIONS = foreign # do not require all the GNU file names18 16 19 17 # applies to both programs -
benchmark/Makefile.in
r7b3a6e6 r0e0f128c 168 168 EXEEXT = @EXEEXT@ 169 169 GREP = @GREP@ 170 HOST_FLAGS = @HOST_FLAGS@171 170 INSTALL = @INSTALL@ 172 171 INSTALL_DATA = @INSTALL_DATA@ … … 254 253 top_builddir = @top_builddir@ 255 254 top_srcdir = @top_srcdir@ 256 AUTOMAKE_OPTIONS = foreign # do not require all the GNU file names257 255 CFACOMPILE = $(CFACC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CFAFLAGS) $(CFAFLAGS) $(AM_CFLAGS) $(CFLAGS) 258 256 AM_V_CFA = $(am__v_CFA_@AM_V@) -
configure
r7b3a6e6 r0e0f128c 668 668 LIBCFA_TARGET_DIRS 669 669 TARGET_HOSTS 670 HOST_FLAGS671 670 host_os 672 671 host_vendor … … 3235 3234 cfa_prefix=${prefix} 3236 3235 fi 3237 cfa_prefix="$(readlink -f ${cfa_prefix})/"3238 3236 3239 3237 cat >>confdefs.h <<_ACEOF … … 3249 3247 cfa_incdir=${includedir} 3250 3248 fi 3251 cfa_incdir="$(readlink -f ${cfa_incdir})/"3252 3249 3253 3250 cat >>confdefs.h <<_ACEOF … … 3263 3260 cfa_bindir=${bindir} 3264 3261 fi 3265 cfa_bindir="$(readlink -f ${cfa_bindir})/"3266 3262 3267 3263 cat >>confdefs.h <<_ACEOF … … 3281 3277 cfa_libdir="${libdir}/${ARCHITECTURE}${CONFIGURATION}" 3282 3278 fi 3283 cfa_libdir="$(readlink -f ${cfa_libdir})/"3284 3279 3285 3280 cat >>confdefs.h <<_ACEOF … … 3294 3289 # Create variables for commonly used targets 3295 3290 3296 TOP_SRCDIR= "$(readlink -f $ac_confdir/)/"3297 TOP_BUILDDIR= "$(readlink -f $ac_pwd/)/"3291 TOP_SRCDIR=$ac_pwd/$ac_confdir/ 3292 TOP_BUILDDIR=$ac_pwd/ 3298 3293 3299 3294 … … 3412 3407 3413 3408 3414 if ! test "$host_cpu" = "$build_cpu"; then3415 case $host_cpu in3416 i386)3417 HOST_FLAGS="-m32"3418 ;;3419 i686)3420 HOST_FLAGS="-m32"3421 ;;3422 x86_64)3423 HOST_FLAGS="-m64"3424 ;;3425 esac3426 fi3427 3428 3429 3409 default_target="${host_cpu}:debug, ${host_cpu}:nodebug" 3430 3410 … … 3458 3438 esac 3459 3439 3460 3461 case $arch_name in3462 "host") arch_name=${host_cpu};;3463 *) ;;3464 esac3465 3440 3466 3441 case $arch_name in … … 3497 3472 3498 3473 3499 3500 case $arch_name in3501 "host") arch_name=${host_cpu};;3502 *) ;;3503 esac3504 3474 3505 3475 case $arch_name in -
configure.ac
r7b3a6e6 r0e0f128c 80 80 # Create variables for commonly used targets 81 81 82 TOP_SRCDIR= "$(readlink -f $ac_confdir/)/"83 TOP_BUILDDIR= "$(readlink -f $ac_pwd/)/"82 TOP_SRCDIR=$ac_pwd/$ac_confdir/ 83 TOP_BUILDDIR=$ac_pwd/ 84 84 85 85 AC_DEFINE_UNQUOTED(TOP_SRCDIR, "$TOP_SRCDIR", [Top src directory]) … … 120 120 AC_CANONICAL_BUILD 121 121 AC_CANONICAL_HOST 122 123 if ! test "$host_cpu" = "$build_cpu"; then124 case $host_cpu in125 i386)126 HOST_FLAGS="-m32"127 ;;128 i686)129 HOST_FLAGS="-m32"130 ;;131 x86_64)132 HOST_FLAGS="-m64"133 ;;134 esac135 fi136 AC_SUBST(HOST_FLAGS)137 122 138 123 default_target="${host_cpu}:debug, ${host_cpu}:nodebug" -
driver/Makefile.am
r7b3a6e6 r0e0f128c 15 15 ############################################################################### 16 16 17 AUTOMAKE_OPTIONS = foreign # do not require all the GNU file names18 19 17 # applies to both programs 20 AM_CXXFLAGS = @HOST_FLAGS@-Wall -O2 -g -std=c++14 -I${abs_top_srcdir}/src18 AM_CXXFLAGS = -Wall -O2 -g -std=c++14 -I${abs_top_srcdir}/src 21 19 22 20 # don't install cfa directly -
driver/Makefile.in
r7b3a6e6 r0e0f128c 213 213 EXEEXT = @EXEEXT@ 214 214 GREP = @GREP@ 215 HOST_FLAGS = @HOST_FLAGS@216 215 INSTALL = @INSTALL@ 217 216 INSTALL_DATA = @INSTALL_DATA@ … … 299 298 top_builddir = @top_builddir@ 300 299 top_srcdir = @top_srcdir@ 301 AUTOMAKE_OPTIONS = foreign # do not require all the GNU file names302 300 303 301 # applies to both programs 304 AM_CXXFLAGS = @HOST_FLAGS@-Wall -O2 -g -std=c++14 -I${abs_top_srcdir}/src302 AM_CXXFLAGS = -Wall -O2 -g -std=c++14 -I${abs_top_srcdir}/src 305 303 cfa_SOURCES = cfa.cc 306 304 -
libcfa/configure
r7b3a6e6 r0e0f128c 2574 2574 cfa_prefix=${prefix} 2575 2575 fi 2576 cfa_prefix="$(readlink -f ${cfa_prefix})/"2577 2576 2578 2577 cat >>confdefs.h <<_ACEOF … … 2588 2587 cfa_incdir=${includedir} 2589 2588 fi 2590 cfa_incdir="$(readlink -f ${cfa_incdir})/"2591 2589 2592 2590 cat >>confdefs.h <<_ACEOF … … 2602 2600 cfa_bindir=${bindir} 2603 2601 fi 2604 cfa_bindir="$(readlink -f ${cfa_bindir})/"2605 2602 2606 2603 cat >>confdefs.h <<_ACEOF … … 2620 2617 cfa_libdir="${libdir}/${ARCHITECTURE}${CONFIGURATION}" 2621 2618 fi 2622 cfa_libdir="$(readlink -f ${cfa_libdir})/"2623 2619 2624 2620 cat >>confdefs.h <<_ACEOF -
libcfa/prelude/Makefile.am
r7b3a6e6 r0e0f128c 16 16 17 17 # create object files in directory with source files 18 AUTOMAKE_OPTIONS = foreignsubdir-objects18 AUTOMAKE_OPTIONS = subdir-objects 19 19 20 20 # put into lib for now -
libcfa/prelude/Makefile.in
r7b3a6e6 r0e0f128c 259 259 260 260 # create object files in directory with source files 261 AUTOMAKE_OPTIONS = foreignsubdir-objects261 AUTOMAKE_OPTIONS = subdir-objects 262 262 263 263 # put into lib for now -
src/Makefile.am
r7b3a6e6 r0e0f128c 16 16 17 17 # create object files in directory with source files 18 AUTOMAKE_OPTIONS = foreignsubdir-objects18 AUTOMAKE_OPTIONS = subdir-objects 19 19 20 20 SRC = main.cc \ … … 48 48 ___driver_cfa_cpp_LDADD = -ldl # yywrap 49 49 50 AM_CXXFLAGS = @HOST_FLAGS@-Wno-deprecated -Wall -Wextra -DDEBUG_ALL -I./Parser -I$(srcdir)/Parser -I$(srcdir)/include -DYY_NO_INPUT -O2 -g -std=c++1451 AM_LDFLAGS = @HOST_FLAGS@-Xlinker -export-dynamic50 AM_CXXFLAGS = -Wno-deprecated -Wall -Wextra -DDEBUG_ALL -I./Parser -I$(srcdir)/Parser -I$(srcdir)/include -DYY_NO_INPUT -O2 -g -std=c++14 51 AM_LDFLAGS = -Xlinker -export-dynamic 52 52 53 53 MAINTAINERCLEANFILES += ${libdir}/${notdir ${cfa_cpplib_PROGRAMS}} -
src/Makefile.in
r7b3a6e6 r0e0f128c 358 358 EXEEXT = @EXEEXT@ 359 359 GREP = @GREP@ 360 HOST_FLAGS = @HOST_FLAGS@361 360 INSTALL = @INSTALL@ 362 361 INSTALL_DATA = @INSTALL_DATA@ … … 446 445 447 446 # create object files in directory with source files 448 AUTOMAKE_OPTIONS = foreignsubdir-objects447 AUTOMAKE_OPTIONS = subdir-objects 449 448 SRC = main.cc MakeLibCfa.cc CompilationState.cc CodeGen/Generate.cc \ 450 449 CodeGen/CodeGenerator.cc CodeGen/GenType.cc \ … … 509 508 ___driver_cfa_cpp_SOURCES = $(SRC) 510 509 ___driver_cfa_cpp_LDADD = -ldl # yywrap 511 AM_CXXFLAGS = @HOST_FLAGS@-Wno-deprecated -Wall -Wextra -DDEBUG_ALL -I./Parser -I$(srcdir)/Parser -I$(srcdir)/include -DYY_NO_INPUT -O2 -g -std=c++14512 AM_LDFLAGS = @HOST_FLAGS@-Xlinker -export-dynamic510 AM_CXXFLAGS = -Wno-deprecated -Wall -Wextra -DDEBUG_ALL -I./Parser -I$(srcdir)/Parser -I$(srcdir)/include -DYY_NO_INPUT -O2 -g -std=c++14 511 AM_LDFLAGS = -Xlinker -export-dynamic 513 512 all: $(BUILT_SOURCES) 514 513 $(MAKE) $(AM_MAKEFLAGS) all-am -
tests/.expect/math1.txt
r7b3a6e6 r0e0f128c 9 9 exp2:2 2 2 10 10 expm1:1.71828 1.71828182845905 1.71828182845904524 11 pow:1 1 1 0.273957+0.583701i 0.273957253830121+0.583700758758615i -0.638110484918098871+0.705394566961838155i11 pow:1 1 1 0.273957+0.583701i 0.273957253830121+0.583700758758615i 0.273957253830121071+0.583700758758614628i 12 12 \ 16 256 13 13 \ 912673 256 64 -64 0.015625 -0.015625 18.3791736799526 0.264715-1.1922i -
tests/Makefile.am
r7b3a6e6 r0e0f128c 15 15 ############################################################################### 16 16 17 AUTOMAKE_OPTIONS = foreign # do not require all the GNU file names18 17 19 18 debug=yes -
tests/Makefile.in
r7b3a6e6 r0e0f128c 210 210 EXEEXT = @EXEEXT@ 211 211 GREP = @GREP@ 212 HOST_FLAGS = @HOST_FLAGS@213 212 INSTALL = @INSTALL@ 214 213 INSTALL_DATA = @INSTALL_DATA@ … … 296 295 top_builddir = @top_builddir@ 297 296 top_srcdir = @top_srcdir@ 298 AUTOMAKE_OPTIONS = foreign # do not require all the GNU file names299 297 debug = yes 300 298 installed = no -
tests/math1.c
r7b3a6e6 r0e0f128c 41 41 sout | "exp2:" | exp2( 1.0F ) | exp2( 1.0D ) | exp2( 1.0L ) | endl; 42 42 sout | "expm1:" | expm1( 1.0F ) | expm1( 1.0D ) | expm1( 1.0L ) | endl; 43 sout | "pow:" | pow( 1.0F, 1.0F ) | pow( 1.0D, 1.0D ) | pow( 1.0L, 1.0L ) | pow( 1.0F+1.0FI, 1.0F+1.0FI ) | pow( 1.0D+1.0DI, 1.0D+1.0DI ) | pow( 1. 5DL+1.5LI, 1.5DL+1.5LI ) | endl;43 sout | "pow:" | pow( 1.0F, 1.0F ) | pow( 1.0D, 1.0D ) | pow( 1.0L, 1.0L ) | pow( 1.0F+1.0FI, 1.0F+1.0FI ) | pow( 1.0D+1.0DI, 1.0D+1.0DI ) | pow( 1.0DL+1.0LI, 1.0DL+1.0LI ) | endl; 44 44 45 45 int b = 4; -
tests/preempt_longrun/Makefile.am
r7b3a6e6 r0e0f128c 14 14 ## Update Count : 0 15 15 ############################################################################### 16 17 AUTOMAKE_OPTIONS = foreign # do not require all the GNU file names18 16 19 17 repeats=10 -
tests/preempt_longrun/Makefile.in
r7b3a6e6 r0e0f128c 369 369 EXEEXT = @EXEEXT@ 370 370 GREP = @GREP@ 371 HOST_FLAGS = @HOST_FLAGS@372 371 INSTALL = @INSTALL@ 373 372 INSTALL_DATA = @INSTALL_DATA@ … … 455 454 top_builddir = @top_builddir@ 456 455 top_srcdir = @top_srcdir@ 457 AUTOMAKE_OPTIONS = foreign # do not require all the GNU file names458 456 repeats = 10 459 457 max_time = 600 -
tests/pybin/settings.py
r7b3a6e6 r0e0f128c 51 51 self.target = arch 52 52 self.cross_compile = True 53 try : 54 self.flags = Architecture.CrossCompileFlags[arch] 55 except KeyError: 56 print("Cross compilation not available for architecture %s" % arch, file=sys.stderr) 57 sys.exit(1) 58 53 59 else: 54 60 self.target = canonical_host 55 61 self.cross_compile = False 56 57 58 try : 59 self.flags = Architecture.CrossCompileFlags[self.target] 60 except KeyError: 61 print("Cross compilation not available for architecture %s" % self.target, file=sys.stderr) 62 sys.exit(1) 62 self.flags = "" 63 63 64 64 self.string = self.target -
tests/time.c
r7b3a6e6 r0e0f128c 18 18 19 19 int main() { 20 Duration d1 = 3`h, d2 = 2`s, d3 = 3. 375`s, d4 = 12`s, d5 = 1`s + 10_000`ns;20 Duration d1 = 3`h, d2 = 2`s, d3 = 3.07`s, d4 = 12`s, d5 = 1`s + 10_000`ns; 21 21 sout | d1 | d2 | d3 | d4 | d5 | endl; 22 22 int i; -
tools/Makefile.am
r7b3a6e6 r0e0f128c 15 15 ############################################################################### 16 16 17 AUTOMAKE_OPTIONS = foreign # do not require all the GNU file names18 19 17 CC = @BACKEND_CC@ 20 AM_CFLAGS = -Wall -Wextra -O2 -g18 CFLAGS = -Wall -Wextra -O2 -g 21 19 22 20 noinst_PROGRAMS = busy catchsig repeat watchdog -
tools/Makefile.in
r7b3a6e6 r0e0f128c 202 202 CFA_NAME = @CFA_NAME@ 203 203 CFA_PREFIX = @CFA_PREFIX@ 204 CFLAGS = @CFLAGS@204 CFLAGS = -Wall -Wextra -O2 -g 205 205 CPP = @CPP@ 206 206 CPPFLAGS = @CPPFLAGS@ … … 218 218 EXEEXT = @EXEEXT@ 219 219 GREP = @GREP@ 220 HOST_FLAGS = @HOST_FLAGS@221 220 INSTALL = @INSTALL@ 222 221 INSTALL_DATA = @INSTALL_DATA@ … … 304 303 top_builddir = @top_builddir@ 305 304 top_srcdir = @top_srcdir@ 306 AUTOMAKE_OPTIONS = foreign # do not require all the GNU file names307 AM_CFLAGS = -Wall -Wextra -O2 -g308 305 busy_SOURCES = busy.c 309 306 busy_LDFLAGS = -pthread -
tools/prettyprinter/Makefile.am
r7b3a6e6 r0e0f128c 1 1 ######################## -*- Mode: Makefile-Automake -*- ###################### 2 ## 2 ## 3 3 ## Cforall Version 1.0.0 Copyright (C) 2015 University of Waterloo 4 4 ## 5 5 ## The contents of this file are covered under the licence agreement in the 6 6 ## file "LICENCE" distributed with Cforall. 7 ## 8 ## Makefile.am -- 9 ## 7 ## 8 ## Makefile.am -- 9 ## 10 10 ## Author : Peter A. Buhr 11 11 ## Created On : Wed Jun 28 12:07:10 2017 … … 14 14 ## Update Count : 20 15 15 ############################################################################### 16 17 AUTOMAKE_OPTIONS = foreign # do not require all the GNU file names18 16 19 17 BUILT_SOURCES = parser.hh -
tools/prettyprinter/Makefile.in
r7b3a6e6 r0e0f128c 242 242 EXEEXT = @EXEEXT@ 243 243 GREP = @GREP@ 244 HOST_FLAGS = @HOST_FLAGS@245 244 INSTALL = @INSTALL@ 246 245 INSTALL_DATA = @INSTALL_DATA@ … … 328 327 top_builddir = @top_builddir@ 329 328 top_srcdir = @top_srcdir@ 330 AUTOMAKE_OPTIONS = foreign # do not require all the GNU file names331 329 BUILT_SOURCES = parser.hh 332 330 AM_YFLAGS = -d -t -v
Note:
See TracChangeset
for help on using the changeset viewer.