File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed
llvm/include/llvm/TargetParser Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -21,6 +21,7 @@ For other versions, check the git tags of this repository.
21
21
* LLVM: Support .lib extension for static zstd.
22
22
* LLVM: Portable handling of .def linker flag
23
23
* LLVM: Don't pass -static when building executables.
24
+ * LLVM: Fix ` Triple::isTargetEHABICompatible() ` for NetBSD
24
25
* Clang: Ignore the examples directory
25
26
* Clang: Disable building of libclang-cpp.so.
26
27
* LLD: Added additional include directory to Zig's libunwind.
Original file line number Diff line number Diff line change @@ -912,7 +912,8 @@ class Triple {
912
912
getEnvironment () == Triple::GNUEABIHFT64 ||
913
913
getEnvironment () == Triple::OpenHOS ||
914
914
getEnvironment () == Triple::MuslEABIHF || isAndroid ()) &&
915
- isOSBinFormatELF ();
915
+ isOSBinFormatELF () &&
916
+ !isOSNetBSD ();
916
917
}
917
918
918
919
// / Tests whether the target is T32.
You can’t perform that action at this time.
0 commit comments