diff options
author | Ash Wolf <ninji@wuffs.org> | 2023-01-12 03:01:34 +0000 |
---|---|---|
committer | Ash Wolf <ninji@wuffs.org> | 2023-01-12 03:01:34 +0000 |
commit | 3a6db389b250439a0cce6b45ef1424a5728f5d18 (patch) | |
tree | 864b179a0be181ded24a546eb80dfb57bfec724e /compiler_and_linker/CmdLine_Tools/MacOS_PPC | |
parent | 54bb1363a26b6a52cf1a8ecf1f16f76e9920956f (diff) | |
download | MWCC-3a6db389b250439a0cce6b45ef1424a5728f5d18.tar.gz MWCC-3a6db389b250439a0cce6b45ef1424a5728f5d18.zip |
more fixing
Diffstat (limited to 'compiler_and_linker/CmdLine_Tools/MacOS_PPC')
2 files changed, 2 insertions, 2 deletions
diff --git a/compiler_and_linker/CmdLine_Tools/MacOS_PPC/Tools_PPC/Src/Options/Glue/ParserGlue-mach-ppc-cc.c b/compiler_and_linker/CmdLine_Tools/MacOS_PPC/Tools_PPC/Src/Options/Glue/ParserGlue-mach-ppc-cc.c index 7e741c3..f605817 100644 --- a/compiler_and_linker/CmdLine_Tools/MacOS_PPC/Tools_PPC/Src/Options/Glue/ParserGlue-mach-ppc-cc.c +++ b/compiler_and_linker/CmdLine_Tools/MacOS_PPC/Tools_PPC/Src/Options/Glue/ParserGlue-mach-ppc-cc.c @@ -75,7 +75,7 @@ static int MidParse() { pCmdLine.state = OptsCmdLineState_2; if (parseopts.possibleFiles > 0 && useDefaultIncludes) { - if ((env = GetEnvVar("MWCMachPPCIncludes", 1, &match))) { + if ((env = GetEnvVar("MWCMachPPCIncludes\0MWCIncludes\0", 1, &match))) { // FIXME can probably get rid of this cast later if (!AddAccessPathList(env, ':', ',', 1, (char *) match, 1, -1, 0)) return 0; diff --git a/compiler_and_linker/CmdLine_Tools/MacOS_PPC/Tools_PPC/Src/Plugin/libimp-mach-ppc.c b/compiler_and_linker/CmdLine_Tools/MacOS_PPC/Tools_PPC/Src/Plugin/libimp-mach-ppc.c index a0cf8c7..484db0f 100644 --- a/compiler_and_linker/CmdLine_Tools/MacOS_PPC/Tools_PPC/Src/Plugin/libimp-mach-ppc.c +++ b/compiler_and_linker/CmdLine_Tools/MacOS_PPC/Tools_PPC/Src/Plugin/libimp-mach-ppc.c @@ -8,7 +8,7 @@ CWPLUGIN_ENTRY (PPCLibImport_GetDropInFlags)(const DropInFlags **flags, SInt32 * kCurrentDropInFlagsVersion, CWDROPINCOMPILERTYPE, DROPINCOMPILERLINKERAPIVERSION_8, - kGeneratescode | kCanpreprocess | kCanprecompile | kCompAllowDupFileNames | kCompMultiTargAware, + kGeneratescode | kCompAllowDupFileNames | kCompMultiTargAware, Lang_MISC, DROPINCOMPILERLINKERAPIVERSION_12 }; |