Skip to content

Commit

Permalink
🐛 Remove shared asan command (#23)
Browse files Browse the repository at this point in the history
Causes linux to fail to build.
  • Loading branch information
kammce authored Dec 10, 2024
1 parent 388ca12 commit db7ca0e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cmake/build.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ function(libhal_unit_test)
if(${ADDRESS_SANITIZER_SUPPORT})
message(STATUS "${LIBHAL_TITLE} Address Sanitizer available! Using it for tests!")
target_compile_options(unit_test PRIVATE -fsanitize=address)
target_link_options(unit_test PRIVATE -fsanitize=address -shared-libsan)
target_link_options(unit_test PRIVATE -fsanitize=address)
else()
message(STATUS "${LIBHAL_TITLE} Address Sanitizer not supported!")
endif(${ADDRESS_SANITIZER_SUPPORT})
Expand Down
2 changes: 1 addition & 1 deletion conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@

class libhal_cmake_util_conan(ConanFile):
name = "libhal-cmake-util"
version = "4.1.6"
version = "4.1.7"
license = "Apache-2.0"
homepage = "https://libhal.github.io/libhal-armcortex"
description = ("A collection of CMake scripts for ARM Cortex ")
Expand Down

0 comments on commit db7ca0e

Please sign in to comment.