mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-01 00:33:09 +00:00
Make Triple::getOSVersion make sense for Android.
Reviewers: srhines Reviewed By: srhines Subscribers: llvm-commits Differential Revision: http://reviews.llvm.org/D7928 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@231090 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
b900a6d000
commit
a33c652878
@ -714,6 +714,14 @@ void Triple::getOSVersion(unsigned &Major, unsigned &Minor,
|
|||||||
unsigned &Micro) const {
|
unsigned &Micro) const {
|
||||||
StringRef OSName = getOSName();
|
StringRef OSName = getOSName();
|
||||||
|
|
||||||
|
// For Android, we care about the Android version rather than the Linux
|
||||||
|
// version.
|
||||||
|
if (getEnvironment() == Android) {
|
||||||
|
OSName = getEnvironmentName().substr(strlen("android"));
|
||||||
|
if (OSName.startswith("eabi"))
|
||||||
|
OSName = OSName.substr(strlen("eabi"));
|
||||||
|
}
|
||||||
|
|
||||||
// Assume that the OS portion of the triple starts with the canonical name.
|
// Assume that the OS portion of the triple starts with the canonical name.
|
||||||
StringRef OSTypeName = getOSTypeName(getOS());
|
StringRef OSTypeName = getOSTypeName(getOS());
|
||||||
if (OSName.startswith(OSTypeName))
|
if (OSName.startswith(OSTypeName))
|
||||||
|
Loading…
Reference in New Issue
Block a user