Skip to content

Commit

Permalink
Merge pull request #1265 from LLNL/bugfix/chapman39/locale_error_cuda
Browse files Browse the repository at this point in the history
Set System.cpp back to cpp due to nvcc compiler error
  • Loading branch information
white238 committed Feb 6, 2024
2 parents a29fc73 + 90f9951 commit b98abba
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions RELEASE-NOTES.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@ The Axom project release numbers follow [Semantic Versioning](http://semver.org/
- Upgrades our `vcpkg` usage for automated Windows builds of our TPLs to its [2023.12.12 release](https://github.com/microsoft/vcpkg/releases/tag/2023.12.12)
- Fixed a bug in the bounds checks for `primal::clip(Triangle, BoundingBox)`
- Fixed a bug when loading Sidre groups with attributes that already exist
- Fixed `std::locale` error when when compiling `src/axom/core/utilities/System.cpp` using nvcc

## [Version 0.8.1] - Release date 2023-08-16

Expand Down
3 changes: 3 additions & 0 deletions src/axom/core/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,9 @@ axom_add_library(NAME core
FOLDER axom/core
)

# Set file back to C++ due to nvcc compiler error
set_source_files_properties(utilities/System.cpp PROPERTIES LANGUAGE CXX)

# Basic includes that should be inherited to all Axom targets
target_include_directories(core PUBLIC
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/../..>
Expand Down

0 comments on commit b98abba

Please sign in to comment.