Skip to content

Commit

Permalink
stash
Browse files Browse the repository at this point in the history
  • Loading branch information
SadiinsoSnowfall committed Oct 19, 2024
1 parent 5807643 commit c29b51b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cmake/config/compiler.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ if(EVE_ENABLE_COVERAGE)
if(CMAKE_CXX_COMPILER_ID MATCHES "MSVC")
message(FATAL_ERROR "EVE coverage profiling is not supported on MSVC")
else()
target_compile_options( eve_test INTERFACE --coverage )
target_link_options( eve_test INTERFACE --coverage )
target_compile_options( eve_test INTERFACE --coverage -fprofile-update=atomic )
target_link_options( eve_test INTERFACE --coverage -fprofile-update=atomic )
endif()
endif()

Expand Down
1 change: 1 addition & 0 deletions include/eve/arch/cpu/wide.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@
#include <eve/module/core/regular/mul.hpp>
#include <eve/module/core/regular/div.hpp>
#include <eve/module/core/regular/minus.hpp>
#include <eve/module/core/regular/shl.hpp>
#include <eve/memory/soa_ptr.hpp>
#include <eve/traits/product_type.hpp>

Expand Down

0 comments on commit c29b51b

Please sign in to comment.