Reverts llvm/llvm-project#86137 Some aarch64 compilers seem to consider that `uint128_t` is not `is_trivially_constructible` which prevents `bit_cast`-ing.
9 lines
259 B
CMake
9 lines
259 B
CMake
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fsanitize=fuzzer")
|
|
add_custom_target(libc-fuzzer)
|
|
|
|
# TODO(#85680): Re-enable math fuzzing after headers are sorted out
|
|
# add_subdirectory(math)
|
|
add_subdirectory(stdlib)
|
|
add_subdirectory(stdio)
|
|
add_subdirectory(string)
|