diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2009-11-23 20:42:39 -0800 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2009-11-23 20:42:39 -0800 |
commit | 152aefb0086b3482acae19ab78545a4a29ae7c20 (patch) | |
tree | 6f75f47ba32a42f2f9ef9a72c4c6a9838920ce8c /configure | |
parent | a96e16af6a24bf929032612fb8cd0397ca5aeb11 (diff) | |
download | txr-152aefb0086b3482acae19ab78545a4a29ae7c20.tar.gz txr-152aefb0086b3482acae19ab78545a4a29ae7c20.tar.bz2 txr-152aefb0086b3482acae19ab78545a4a29ae7c20.zip |
* configure (platform_flags, remove_flags): New config variables.
* Makefile (CFLAGS): Take into account new flags.
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 15 |
1 files changed, 15 insertions, 0 deletions
@@ -115,6 +115,8 @@ 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\"} +platform_flags=${platform_flags-} +remove_flags=${remove_flags-} lex_dbg_flags=${lex_dbg_flags-} txr_dbg_opts=${txr_dbg_opts---gc-debug} # @@ -263,6 +265,17 @@ inline_flags [$inline_flags] Specifies flag for defining a macro that expands to a suitable compiler-specific inline specifier. +platform_flags [$platform_flags] + + Specify additional compiler flags for anything else, such as CPU tuning, + target ABI selection, code generation options, et cetera. + +remove_flags [$remove_flags] + + This is a negative otpion. Any flags mentioned in this variable + will be removed from any of the other compiler flags options above. + The flags may contain GNU Make patterns. + lex_dbg_flags [$lex_dbg_flags] Specifies debug flags to be passed to lex, perhaps to generate a debugging @@ -462,6 +475,8 @@ LANG_FLAGS := $lang_flags DIAG_FLAGS := $diag_flags DBG_FLAGS := $debug_flags INLINE_FLAGS := $inline_flags +PLATFORM_FLAGS := $platform_flags +REMOVE_FLAGS := $remove_flags LEX_DBG_FLAGS := $lex_dbg_flags TXR_DBG_OPTS := $txr_dbg_opts ! |