Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

⚡ Optimize #26

Merged
merged 14 commits into from
Jul 24, 2024
Merged
10 changes: 10 additions & 0 deletions conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -131,6 +131,16 @@ def package_info(self):
"-Wl,--wrap=__cxa_end_catch",
"-Wl,--wrap=__cxa_begin_catch",
"-Wl,--wrap=__cxa_end_cleanup",
"-Wl,--wrap=__gnu_unwind_pr_common",
"-Wl,--wrap=__aeabi_unwind_cpp_pr0",
"-Wl,--wrap=_sig_func",
"-Wl,--wrap=__gxx_personality_v0",
"-Wl,--wrap=deregister_tm_clones",
"-Wl,--wrap=register_tm_clones",
# Ensure that all symbols are added to the linker's symbol table
"-Wl,--whole-archive",
lib_path,
"-Wl,--no-whole-archive",
])

# Keep this for now, will update this for the runtime select
Expand Down
3 changes: 3 additions & 0 deletions demos/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,12 @@ cmake_minimum_required(VERSION 3.15)

project(demos LANGUAGES CXX)

set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} --save-temps")

libhal_build_demos(
DEMOS
single_level
multi_levels

PACKAGES
libhal-exceptions
Expand Down
Loading
Loading