Overview
Comment: | Check to see if -mmpx can actually be linked in |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
ad21e0c8c774c38039e56468103d0bc4 |
User & Date: | rkeene on 2019-01-22 17:55:29.292 |
Other Links: | manifest | tags |
Context
2019-01-22
| ||
17:59 | Upgraded AES to get rid of a warning check-in: 4c806fd6da user: rkeene tags: trunk | |
17:55 | Check to see if -mmpx can actually be linked in check-in: ad21e0c8c7 user: rkeene tags: trunk | |
17:51 | Better peer tracking and block verification check-in: 995dbd8993 user: rkeene tags: trunk | |
Changes
Added aclocal/ax_check_link_flag.m4 version [ab8ff737c8].
Modified autogen.sh
from [5177f2c1f8]
to [6d68802801].
︙ | ︙ | |||
12 13 14 15 16 17 18 19 20 21 22 23 24 25 | ) urls=( http://chiselapp.com/user/rkeene/repository/autoconf/doc/trunk/tcl.m4 http://chiselapp.com/user/rkeene/repository/autoconf/doc/trunk/shobj.m4 http://chiselapp.com/user/rkeene/repository/autoconf/doc/trunk/versionscript.m4 'http://git.savannah.gnu.org/gitweb/?p=autoconf-archive.git;a=blob_plain;f=m4/ax_check_compile_flag.m4' ) localFiles=( ) failed='0' for command in "${commands[@]}"; do | > | 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 | ) urls=( http://chiselapp.com/user/rkeene/repository/autoconf/doc/trunk/tcl.m4 http://chiselapp.com/user/rkeene/repository/autoconf/doc/trunk/shobj.m4 http://chiselapp.com/user/rkeene/repository/autoconf/doc/trunk/versionscript.m4 'http://git.savannah.gnu.org/gitweb/?p=autoconf-archive.git;a=blob_plain;f=m4/ax_check_compile_flag.m4' 'http://git.savannah.gnu.org/gitweb/?p=autoconf-archive.git;a=blob_plain;f=m4/ax_check_link_flag.m4' ) localFiles=( ) failed='0' for command in "${commands[@]}"; do |
︙ | ︙ |
Modified configure.ac
from [7a30832d7a]
to [4e2388c162].
︙ | ︙ | |||
52 53 54 55 56 57 58 | tcl_nano_debug='true' fi ]) dnl If we are building a debug release, enable debugging flags if test "$tcl_nano_debug" = 'true'; then AC_DEFINE(TCLEXT_TCL_NANO_DEBUG, [1], [Enable debugging build]) | | > > > > | 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 | tcl_nano_debug='true' fi ]) dnl If we are building a debug release, enable debugging flags if test "$tcl_nano_debug" = 'true'; then AC_DEFINE(TCLEXT_TCL_NANO_DEBUG, [1], [Enable debugging build]) AX_CHECK_COMPILE_FLAG([-mmpx -fcheck-pointer-bounds], [ AX_CHECK_LINK_FLAG([-mmpx -fcheck-pointer-bounds], [ CFLAGS="$CFLAGS -mmpx -fcheck-pointer-bounds" ]) ]) AX_CHECK_COMPILE_FLAG([-g3], [CFLAGS="$CFLAGS -g3"]) AX_CHECK_COMPILE_FLAG([-ggdb3], [CFLAGS="$CFLAGS -ggdb3"]) else dnl If we are not doing debugging disable some of the more annoying warnings AX_CHECK_COMPILE_FLAG([-Wno-unused-value], [CFLAGS="$CFLAGS -Wno-unused-value"]) AX_CHECK_COMPILE_FLAG([-Wno-unused-parameter], [CFLAGS="$CFLAGS -Wno-unused-parameter"]) AX_CHECK_COMPILE_FLAG([-Wno-deprecated-declarations], [CFLAGS="$CFLAGS -Wno-deprecated-declarations"]) |
︙ | ︙ |