aboutsummaryrefslogtreecommitdiff
path: root/ports/simdjson/Fix-error-LNK2001.patch
diff options
context:
space:
mode:
authormyd7349 <myd7349@gmail.com>2020-05-27 14:00:24 +0800
committerGitHub <noreply@github.com>2020-05-26 23:00:24 -0700
commitea07b5d3cd581e924b4c49295b773d775ce33d25 (patch)
treee642afe44c1db6f5f7e86cb0f15b3983c69551d6 /ports/simdjson/Fix-error-LNK2001.patch
parent7e4ab7967a92fe8dfe889b039425348b8c471030 (diff)
downloadvcpkg-ea07b5d3cd581e924b4c49295b773d775ce33d25.tar.gz
vcpkg-ea07b5d3cd581e924b4c49295b773d775ce33d25.zip
[simdjson] Update to 0.3.1 (#10709)
* [simdjson] Update to 0.3.1 * [simdjson] Update CI baseline * [simdjson] Include arm build * [simdjson] Make UWP happy * [simdjson] Turn off SIMDJSON_COMPETITION for linux * [simdjson] Update to 2020-05-06 [simdjson] Turn off SIMDJSON_SANITIZE under DEBUG mode (#10145) * [simdjson] Update to lastest * wip * [simdjson] Update to 2020-05-20 * [simdjson] Update to 2020-05-21 * [simdjson] Fix ninja build * [simdjson] arm-uwp still not supported * [simdjson] Update to 2020-05-22 and disable UWP patch * [itk] You shall pass * [simdjson] Fix x64-uwp * Revert "[itk] You shall pass" This reverts commit 885e8a8af4bcce2c02207d95cbfdce7078dd4a3b. * [simdjson] Update * [simdjson] Update to 2020-05-26
Diffstat (limited to 'ports/simdjson/Fix-error-LNK2001.patch')
-rw-r--r--ports/simdjson/Fix-error-LNK2001.patch15
1 files changed, 0 insertions, 15 deletions
diff --git a/ports/simdjson/Fix-error-LNK2001.patch b/ports/simdjson/Fix-error-LNK2001.patch
deleted file mode 100644
index d7dd61a2d..000000000
--- a/ports/simdjson/Fix-error-LNK2001.patch
+++ /dev/null
@@ -1,15 +0,0 @@
-diff --git a/tools/cmake/FindOptions.cmake b/tools/cmake/FindOptions.cmake
-index f9854c1..0c4d331 100644
---- a/tools/cmake/FindOptions.cmake
-+++ b/tools/cmake/FindOptions.cmake
-@@ -4,9 +4,9 @@ endmacro(append)
-
- set(SANITIZE_FLAGS "")
- if(SIMDJSON_SANITIZE)
-- set(SIMDJSON_SANITIZE_FLAGS "-fsanitize=address -fno-omit-frame-pointer -fsanitize=undefined -fno-sanitize-recover=all")
- if (CMAKE_COMPILER_IS_GNUCC)
- # Ubuntu bug for GCC 5.0+ (safe for all versions)
-+ set(SIMDJSON_SANITIZE_FLAGS "-fsanitize=address -fno-omit-frame-pointer -fsanitize=undefined -fno-sanitize-recover=all")
- append(CMAKE_EXE_LINKER_FLAGS "-fuse-ld=gold")
- append(CMAKE_SHARED_LINKER_FLAGS "-fuse-ld=gold")
- endif()