mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-13 09:33:50 +00:00
Support: normalize the default triple on Unix
This will fix cross-compiling buildbots (e.g. cygwin). This is in the same vein as SVN r205070. Apply this to fix the cross-compiling scenario, even though the preferred solution is to update the build system to normalize the embedded triple rather than perform this at runtime every time. This is meant to tide us over until that approach is fleshed out and applied. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@205120 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
6c449e8fa6
commit
4a9804a938
@ -59,5 +59,5 @@ std::string sys::getDefaultTargetTriple() {
|
||||
Triple += getOSVersion();
|
||||
}
|
||||
|
||||
return Triple;
|
||||
return Triple::normalize(Triple);
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user