mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-04-08 03:59:18 +02:00
cmake: Delete check_cxx_source_links_with_flags
macro
This commit is contained in:
parent
09e8fd25b1
commit
88ee6800c9
@ -387,7 +387,7 @@ target_link_options(sanitize_interface INTERFACE ${SANITIZER_LDFLAGS})
|
||||
|
||||
if(BUILD_FUZZ_BINARY)
|
||||
include(CheckSourceCompilesAndLinks)
|
||||
check_cxx_source_links_with_flags("${SANITIZER_LDFLAGS}" "
|
||||
check_cxx_source_compiles_with_flags("${SANITIZER_LDFLAGS}" "
|
||||
#include <cstdint>
|
||||
#include <cstddef>
|
||||
extern \"C\" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) { return 0; }
|
||||
|
@ -14,14 +14,6 @@ macro(check_cxx_source_compiles_with_flags flags source)
|
||||
cmake_pop_check_state()
|
||||
endmacro()
|
||||
|
||||
macro(check_cxx_source_links_with_flags flags source)
|
||||
cmake_push_check_state(RESET)
|
||||
set(CMAKE_REQUIRED_FLAGS ${flags})
|
||||
list(JOIN CMAKE_REQUIRED_FLAGS " " CMAKE_REQUIRED_FLAGS)
|
||||
check_cxx_source_compiles("${source}" ${ARGN})
|
||||
cmake_pop_check_state()
|
||||
endmacro()
|
||||
|
||||
macro(check_cxx_source_links_with_libs libs source)
|
||||
cmake_push_check_state(RESET)
|
||||
set(CMAKE_REQUIRED_LIBRARIES "${libs}")
|
||||
|
Loading…
x
Reference in New Issue
Block a user