Overview
Comment: | Fixed typo causing compiler flags to be used even if not supported |
---|---|
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
c775cbea62ad0be647615f9d664a45ca |
User & Date: | rkeene on 2016-12-09 14:48:17 |
Other Links: | manifest | tags |
Context
2016-12-09
| ||
14:48 | tcc4tcl 0.28 check-in: a86f876ef8 user: rkeene tags: trunk, 0.28 | |
14:48 | Fixed typo causing compiler flags to be used even if not supported check-in: c775cbea62 user: rkeene tags: trunk | |
05:23 | tcc4tcl 0.27 check-in: 2a3cb3f447 user: rkeene tags: trunk, 0.27 | |
Changes
Modified configure.ac from [d3ecbe92bf] to [23793a9225].
80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 |
])
CFLAGS="${SAVE_CFLAGS}"
])
if test "$tcc4tcl_cv_compiler_wno_unused_result" = 'yes'; then
TCC_WNO_UNUSED_RESULT='-Wno-unused-result'
else
TCC_WNO_UNUSED_RESULT='-Wno-unused-result'
fi
AC_SUBST(TCC_WNO_UNUSED_RESULT)
dnl Determine HOST_PATH_SEPERATOR
case $host_os in
*mingw*)
HOST_PATH_SEPARATOR=';'
|
| |
80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 |
]) CFLAGS="${SAVE_CFLAGS}" ]) if test "$tcc4tcl_cv_compiler_wno_unused_result" = 'yes'; then TCC_WNO_UNUSED_RESULT='-Wno-unused-result' else TCC_WNO_UNUSED_RESULT='' fi AC_SUBST(TCC_WNO_UNUSED_RESULT) dnl Determine HOST_PATH_SEPERATOR case $host_os in *mingw*) HOST_PATH_SEPARATOR=';' |