diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2009-11-19 14:54:04 -0800 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2009-11-19 14:54:04 -0800 |
commit | d3abb71364d041a2d8334fcd8d32ba7857606fb0 (patch) | |
tree | 5991ff81ef062a16ec23419a2977eba2016715b4 /configure | |
parent | f5b18ec696f2c176a2f9f49a3c3a5e158291d00f (diff) | |
download | txr-d3abb71364d041a2d8334fcd8d32ba7857606fb0.tar.gz txr-d3abb71364d041a2d8334fcd8d32ba7857606fb0.tar.bz2 txr-d3abb71364d041a2d8334fcd8d32ba7857606fb0.zip |
Get rid of macros in favor of safer inline functions.
The recent auto_str("byte str") error could have been caught
at compile time.
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -112,6 +112,7 @@ opt_flags=${opt_flags--O2} lang_flags=${lang_flags--ansi -std=c89 -D_POSIX_C_SOURCE=2} diag_flags=${diag_flags--Wall} debug_flags=${debug_flags--g} +inline_flags=${inline_flags--Dinline=\"static __inline\"} lex_dbg_flags=${lex_dbg_flags-} txr_dbg_opts=${txr_dbg_opts---gc-debug} # @@ -245,6 +246,11 @@ debug_flags [$debug_flags] Specifies flags for requesting that debugging information be retained in the compile and link. +inline_flags [$inline_flags] + + Specifies flag for defining a macro that expands to a suitable + compiler-specific inline specifier. + lex_dbg_flags [$lex_dbg_flags] Specifies debug flags to be passed to lex, perhaps to generate a debugging @@ -453,6 +459,7 @@ OPT_FLAGS := $opt_flags LANG_FLAGS := $lang_flags DIAG_FLAGS := $diag_flags DBG_FLAGS := $debug_flags +INLINE_FLAGS := $inline_flags LEX_DBG_FLAGS := $lex_dbg_flags TXR_DBG_OPTS := $txr_dbg_opts ! |