LibJS: Remove compile flag for Windows
Some checks are pending
CI / Lagom (false, FUZZ, ubuntu-24.04, Linux, Clang) (push) Waiting to run
CI / Lagom (false, NO_FUZZ, macos-15, macOS, Clang) (push) Waiting to run
CI / Lagom (false, NO_FUZZ, ubuntu-24.04, Linux, GNU) (push) Waiting to run
CI / Lagom (true, NO_FUZZ, ubuntu-24.04, Linux, Clang) (push) Waiting to run
Package the js repl as a binary artifact / build-and-package (macos-14, macOS, macOS-universal2) (push) Waiting to run
Package the js repl as a binary artifact / build-and-package (ubuntu-24.04, Linux, Linux-x86_64) (push) Waiting to run
Run test262 and test-wasm / run_and_update_results (push) Waiting to run
Lint Code / lint (push) Waiting to run
Push notes / build (push) Waiting to run
Some checks are pending
CI / Lagom (false, FUZZ, ubuntu-24.04, Linux, Clang) (push) Waiting to run
CI / Lagom (false, NO_FUZZ, macos-15, macOS, Clang) (push) Waiting to run
CI / Lagom (false, NO_FUZZ, ubuntu-24.04, Linux, GNU) (push) Waiting to run
CI / Lagom (true, NO_FUZZ, ubuntu-24.04, Linux, Clang) (push) Waiting to run
Package the js repl as a binary artifact / build-and-package (macos-14, macOS, macOS-universal2) (push) Waiting to run
Package the js repl as a binary artifact / build-and-package (ubuntu-24.04, Linux, Linux-x86_64) (push) Waiting to run
Run test262 and test-wasm / run_and_update_results (push) Waiting to run
Lint Code / lint (push) Waiting to run
Push notes / build (push) Waiting to run
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…
Add table
Reference in a new issue