aboutsummaryrefslogtreecommitdiff
path: root/ports/superlu/fix-libm.patch
diff options
context:
space:
mode:
authorRobert Schumacher <roschuma@microsoft.com>2020-03-09 09:19:05 -0700
committerRobert Schumacher <roschuma@microsoft.com>2020-03-09 09:19:05 -0700
commit6b55c62144b120f3c5fc0d3cd8163f309241a18a (patch)
tree125aa435dff79db545fc4b08ab0c3cb537bc725c /ports/superlu/fix-libm.patch
parente21400c7cae2c2df3a9dce6ef8e3c4bf7109aaac (diff)
parentd0b1f2a9e8ed1ea53d181d13c69e15cf775148db (diff)
downloadvcpkg-6b55c62144b120f3c5fc0d3cd8163f309241a18a.tar.gz
vcpkg-6b55c62144b120f3c5fc0d3cd8163f309241a18a.zip
Merge remote-tracking branch 'origin/master' into HEAD
Diffstat (limited to 'ports/superlu/fix-libm.patch')
-rw-r--r--ports/superlu/fix-libm.patch17
1 files changed, 17 insertions, 0 deletions
diff --git a/ports/superlu/fix-libm.patch b/ports/superlu/fix-libm.patch
new file mode 100644
index 000000000..a356bbda2
--- /dev/null
+++ b/ports/superlu/fix-libm.patch
@@ -0,0 +1,17 @@
+diff --git a/SRC/CMakeLists.txt b/SRC/CMakeLists.txt
+index e627f06..9aa8949 100644
+--- a/SRC/CMakeLists.txt
++++ b/SRC/CMakeLists.txt
+@@ -232,7 +232,11 @@ if(enable_complex16)
+ endif()
+
+ add_library(superlu ${sources} ${HEADERS})
+-target_link_libraries(superlu PUBLIC ${BLAS_LIB} m)
++if(CMAKE_SYSTEM_NAME STREQUAL "Windows")
++ target_link_libraries(superlu PUBLIC ${BLAS_LIB})
++else()
++ target_link_libraries(superlu PUBLIC ${BLAS_LIB} m)
++endif()
+ target_include_directories(superlu PUBLIC
+ $<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}>
+ $<INSTALL_INTERFACE:include>