mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-22 17:24:48 -05:00
LibJS: Remove compile flag for Windows
This commit is contained in:
parent
f380b4b95b
commit
18132a0be1
Notes:
github-actions[bot]
2024-12-09 00:57:30 +00:00
Author: https://github.com/R-Goc Commit: https://github.com/LadybirdBrowser/ladybird/commit/18132a0be1c Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/2488 Reviewed-by: https://github.com/ADKaster ✅ Reviewed-by: https://github.com/gmta
1 changed files with 5 additions and 1 deletions
|
@ -272,5 +272,9 @@ if("${CMAKE_SYSTEM_PROCESSOR}" MATCHES "i.86.*")
|
|||
target_link_libraries(LibJS PRIVATE atomic)
|
||||
endif()
|
||||
|
||||
target_compile_options(LibJS PRIVATE -fno-omit-frame-pointer)
|
||||
# This flag has no effect on Windows
|
||||
if (NOT WIN32)
|
||||
target_compile_options(LibJS PRIVATE -fno-omit-frame-pointer)
|
||||
endif()
|
||||
|
||||
target_link_libraries(LibJS PUBLIC JSClangPlugin)
|
||||
|
|
Loading…
Reference in a new issue