aboutsummaryrefslogtreecommitdiff
path: root/toolsrc/cmake
diff options
context:
space:
mode:
authornicole mazzuca <mazzucan@outlook.com>2020-04-17 10:56:27 -0700
committerGitHub <noreply@github.com>2020-04-17 10:56:27 -0700
commit12d75a13acb74ab8e4b2d9f91d41209813345d0c (patch)
tree494911cb3290cd083a2a53b09b30901596987006 /toolsrc/cmake
parentb12256a4af4e77e1ae87bbf76c1c3a654cdcd1a2 (diff)
downloadvcpkg-12d75a13acb74ab8e4b2d9f91d41209813345d0c.tar.gz
vcpkg-12d75a13acb74ab8e4b2d9f91d41209813345d0c.zip
[vcpkg] Fix build scripts on openSUSE and g++9 (#10867)
The existing code did not correctly pass `CXX` to cmake.
Diffstat (limited to 'toolsrc/cmake')
-rw-r--r--toolsrc/cmake/utilities.cmake14
1 files changed, 7 insertions, 7 deletions
diff --git a/toolsrc/cmake/utilities.cmake b/toolsrc/cmake/utilities.cmake
index 8f088cea4..695e65510 100644
--- a/toolsrc/cmake/utilities.cmake
+++ b/toolsrc/cmake/utilities.cmake
@@ -51,21 +51,21 @@ function(vcpkg_detect_standard_library)
check_cxx_source_compiles(
"#include <ciso646>
#if !defined(__GLIBCXX__)
- #error not libstdc++
+ #error \"not libstdc++\"
#endif
int main() {}"
_VCPKG_STANDARD_LIBRARY_LIBSTDCXX)
check_cxx_source_compiles(
"#include <ciso646>
#if !defined(_LIBCPP_VERSION)
- #error not libc++
+ #error \"not libc++\"
#endif
int main() {}"
_VCPKG_STANDARD_LIBRARY_LIBCXX)
check_cxx_source_compiles(
"#include <ciso646>
#if !defined(_MSVC_STL_VERSION)
- #error not MSVC stl
+ #error \"not MSVC stl\"
#endif
int main() {}"
_VCPKG_STANDARD_LIBRARY_MSVC_STL)
@@ -101,7 +101,7 @@ function(vcpkg_detect_std_filesystem)
check_cxx_source_compiles(
"#include <ciso646>
#if defined(_GLIBCXX_RELEASE) && _GLIBCXX_RELEASE >= 9
- #error libstdc++ after version 9 does not require -lstdc++fs
+ #error \"libstdc++ after version 9 does not require -lstdc++fs\"
#endif
int main() {}"
_VCPKG_REQUIRE_LINK_CXXFS)
@@ -109,7 +109,7 @@ function(vcpkg_detect_std_filesystem)
check_cxx_source_compiles(
"#include <ciso646>
#if !defined(_GLIBCXX_RELEASE) || _GLIBCXX_RELEASE < 8
- #error libstdc++ before version 8 doesn't support <filesystem>
+ #error \"libstdc++ before version 8 does not support <filesystem>\"
#endif
int main() {}"
_VCPKG_USE_STD_FILESYSTEM)
@@ -121,7 +121,7 @@ function(vcpkg_detect_std_filesystem)
check_cxx_source_compiles(
"#include <ciso646>
#if _LIBCPP_VERSION >= 9000
- #error libc++ after version 9 does not require -lc++fs
+ #error \"libc++ after version 9 does not require -lc++fs\"
#endif
int main() {}"
_VCPKG_REQUIRE_LINK_CXXFS)
@@ -133,7 +133,7 @@ function(vcpkg_detect_std_filesystem)
check_cxx_source_compiles(
"#include <ciso646>
#if !defined(_MSVC_STL_UPDATE) || _MSVC_STL_UPDATE < 201803
- #error MSVC STL before 15.7 doesn't support <filesystem>
+ #error \"MSVC STL before 15.7 does not support <filesystem>\"
#endif
int main() {}"
_VCPKG_USE_STD_FILESYSTEM)