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 @@ -32,6 +32,7 @@ For other versions, check the git tags of this repository.
3232 * LLVM: Support .lib extension for static zstd.
3333 * LLVM: Portable handling of .def linker flag
3434 * LLVM: Don't pass -static when building executables.
35+ * LLVM: Fix ` Triple::isTargetEHABICompatible() ` for NetBSD
3536 * Clang: Ignore the examples directory
3637 * Clang: Disable building of libclang-cpp.so.
3738 * LLD: Added additional include directory to Zig's libunwind.
Original file line number Diff line number Diff line change @@ -913,7 +913,8 @@ class Triple {
913913 getEnvironment () == Triple::GNUEABIHFT64 ||
914914 getEnvironment () == Triple::OpenHOS ||
915915 getEnvironment () == Triple::MuslEABIHF || isAndroid ()) &&
916- isOSBinFormatELF ();
916+ isOSBinFormatELF () &&
917+ !isOSNetBSD ();
917918 }
918919
919920 // / Tests whether the target is T32.
You can’t perform that action at this time.
0 commit comments