mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-03 13:31:05 +00:00
Use the right gcc tool args for IsARMArchitecture.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@109714 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
c6743207e2
commit
887b703d22
@ -627,8 +627,8 @@ CBE *AbstractInterpreter::createCBE(const char *Argv0,
|
||||
// GCC abstraction
|
||||
//
|
||||
|
||||
static bool IsARMArchitecture(std::vector<std::string> Args) {
|
||||
for (std::vector<std::string>::const_iterator
|
||||
static bool IsARMArchitecture(std::vector<const char*> Args) {
|
||||
for (std::vector<const char*>::const_iterator
|
||||
I = Args.begin(), E = Args.end(); I != E; ++I) {
|
||||
if (StringRef(*I).equals_lower("-arch")) {
|
||||
++I;
|
||||
@ -673,7 +673,7 @@ int GCC::ExecuteProgram(const std::string &ProgramFile,
|
||||
// explicitly told what architecture it is working on, so we get
|
||||
// it from gcc flags
|
||||
if ((TargetTriple.getOS() == Triple::Darwin) &&
|
||||
!IsARMArchitecture(ArgsForGCC))
|
||||
!IsARMArchitecture(GCCArgs))
|
||||
GCCArgs.push_back("-force_cpusubtype_ALL");
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user