[ryu]Fix linux problem with ccache (#10340)

* Fix linux problem with ccache

* wip

* wip
This commit is contained in:
kreuzerkrieg 2020-03-28 06:29:06 +03:00 committed by GitHub
parent 4772dc2c40
commit 7b0dea5b36
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 3 deletions

View File

@ -1,4 +1,5 @@
Source: ryu
Version: 2.0
Version: 2.0-1
Homepage: https://github.com/ulfjack/ryu
Description: Ryu generates the shortest decimal representation of a floating point number that maintains round-trip safety.
Supports: !(uwp|arm|x86)

View File

@ -1,4 +1,4 @@
vcpkg_fail_port_install(ON_TARGET "UWP")
vcpkg_fail_port_install(ON_ARCH "x86" "arm" ON_TARGET "uwp")
vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH
@ -19,7 +19,7 @@ if (CMAKE_HOST_WIN32)
endif ()
vcpkg_execute_build_process(
COMMAND ${BAZEL} build --verbose_failures //ryu
COMMAND ${BAZEL} build --verbose_failures --strategy=CppCompile=standalone //ryu
WORKING_DIRECTORY ${SOURCE_PATH}
LOGNAME build-${TARGET_TRIPLET}-rel
)