mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-26 09:30:24 +00:00
Lagom: Do not use -fno-sematic-interposition in fuzzer builds
Apparently it breaks the fuzzer build. There's probably a better fix for this, but for now just unbreak the fuzzer build. Keep this for non-fuzzer builds though since it's apparently a 17% speedup for running test262 tests :^)
This commit is contained in:
parent
1ea3f34823
commit
4d555e8b95
Notes:
sideshowbarker
2024-07-18 02:18:35 +09:00
Author: https://github.com/nico Commit: https://github.com/SerenityOS/serenity/commit/4d555e8b950 Pull-request: https://github.com/SerenityOS/serenity/pull/10499 Reviewed-by: https://github.com/ADKaster Reviewed-by: https://github.com/linusg
1 changed files with 3 additions and 1 deletions
|
@ -68,7 +68,9 @@ add_compile_options(-Wall -Wextra -Werror)
|
|||
add_compile_options(-fPIC -g)
|
||||
add_compile_options(-Wno-maybe-uninitialized)
|
||||
add_compile_options(-fno-exceptions)
|
||||
add_compile_options(-fno-semantic-interposition)
|
||||
if (NOT ENABLE_FUZZER_SANITIZER)
|
||||
add_compile_options(-fno-semantic-interposition)
|
||||
endif()
|
||||
|
||||
set(CMAKE_CXX_STANDARD 20)
|
||||
set(CMAKE_CXX_STANDARD_REQUIRED ON)
|
||||
|
|
Loading…
Reference in a new issue