1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-23 11:13:28 +01:00

Support substitution options for the W, M, and f options.

llvm-svn: 16326
This commit is contained in:
Reid Spencer 2004-09-14 01:59:31 +00:00
parent 669b65ce16
commit 262612560a
2 changed files with 6 additions and 0 deletions

View File

@ -59,6 +59,7 @@ enum ConfigLexerTokens {
DEFS_SUBST, ///< The substitution item %defs%
EQUALS, ///< The equals sign, =
FALSETOK, ///< A boolean false value (false/no/off)
FOPTS_SUBST, ///< The substitution item %fOpts%
FORCE_SUBST, ///< The substitution item %force%
IN_SUBST, ///< The substitution item %in%
INCLS_SUBST, ///< The substitution item %incls%
@ -68,6 +69,7 @@ enum ConfigLexerTokens {
LIBS, ///< The name "libs" (and variants)
LIBS_SUBST, ///< The substitution item %libs%
LINKER, ///< The name "linker" (and variants)
MOPTS_SUBST, ///< The substitution item %Mopts%
NAME, ///< The name "name" (and variants)
OPT_SUBST, ///< The substitution item %opt%
OPTIMIZER, ///< The name "optimizer" (and variants)
@ -92,6 +94,7 @@ enum ConfigLexerTokens {
TRUETOK, ///< A boolean true value (true/yes/on)
VERBOSE_SUBST,///< The substitution item %verbose%
VERSION, ///< The name "version" (and variants)
WOPTS_SUBST, ///< The %WOpts% substitution
};
extern ConfigLexerTokens Configlex();

View File

@ -171,6 +171,9 @@ White [ \t]*
%target% { return handleSubstitution(TARGET_SUBST); }
%time% { return handleSubstitution(TIME_SUBST); }
%verbose% { return handleSubstitution(VERBOSE_SUBST); }
%fOpts% { return handleSubstitution(FOPTS_SUBST); }
%MOpts% { return handleSubstitution(MOPTS_SUBST); }
%WOpts% { return handleSubstitution(WOPTS_SUBST); }
{BadSubst} { YY_FATAL_ERROR("Invalid substitution token"); }
{Assembly} { return handleValueContext(ASSEMBLY); }