about summary refs log tree commit diff
path: root/pkgs/development/compilers/llvm/10/libcxxabi-wasm.patch
diff options
context:
space:
mode:
authorGabor Greif <ggreif@gmail.com>2020-01-25 00:17:00 +0100
committerGabor Greif <ggreif@gmail.com>2020-02-25 13:24:27 +0100
commitf111c6f9cebacc0201f59c25d6be0683014a3935 (patch)
tree4e75bed915f9b292898e97f022a5e4687a4ae723 /pkgs/development/compilers/llvm/10/libcxxabi-wasm.patch
parent82cbc6af3cbb77a07e1725554119e0fb032d7cf6 (diff)
downloadnixlib-f111c6f9cebacc0201f59c25d6be0683014a3935.tar
nixlib-f111c6f9cebacc0201f59c25d6be0683014a3935.tar.gz
nixlib-f111c6f9cebacc0201f59c25d6be0683014a3935.tar.bz2
nixlib-f111c6f9cebacc0201f59c25d6be0683014a3935.tar.lz
nixlib-f111c6f9cebacc0201f59c25d6be0683014a3935.tar.xz
nixlib-f111c6f9cebacc0201f59c25d6be0683014a3935.tar.zst
nixlib-f111c6f9cebacc0201f59c25d6be0683014a3935.zip
llvmPackages_10: copy llvmPackages_9
* starting with rc2
* make `lldb` compilable again on Darwin
* separate out manpage creation for `lldb` into a new derivation
* minor tweaks to the patching of sources,
  some of which are backportable to earlier versions
Diffstat (limited to 'pkgs/development/compilers/llvm/10/libcxxabi-wasm.patch')
-rw-r--r--pkgs/development/compilers/llvm/10/libcxxabi-wasm.patch16
1 files changed, 16 insertions, 0 deletions
diff --git a/pkgs/development/compilers/llvm/10/libcxxabi-wasm.patch b/pkgs/development/compilers/llvm/10/libcxxabi-wasm.patch
new file mode 100644
index 000000000000..4ebfe46aa813
--- /dev/null
+++ b/pkgs/development/compilers/llvm/10/libcxxabi-wasm.patch
@@ -0,0 +1,16 @@
+diff --git a/cmake/modules/HandleLLVMOptions.cmake b/cmake/modules/HandleLLVMOptions.cmake
+index 15497d405e0..33f7f18193a 100644
+--- a/cmake/modules/HandleLLVMOptions.cmake
++++ b/cmake/modules/HandleLLVMOptions.cmake
+@@ -127,7 +127,10 @@ else(WIN32)
+       set(LLVM_HAVE_LINK_VERSION_SCRIPT 1)
+     endif()
+   else(FUCHSIA OR UNIX)
+-    MESSAGE(SEND_ERROR "Unable to determine platform")
++    if(${CMAKE_SYSTEM_NAME} MATCHES "Wasi")
++    else()
++      MESSAGE(SEND_ERROR "Unable to determine platform")
++    endif()
+   endif(FUCHSIA OR UNIX)
+ endif(WIN32)
+