Skip to content

Commit

Permalink
reflex: Work-around clang 14.0 bug
Browse files Browse the repository at this point in the history
  • Loading branch information
dnicolodi authored and jpakkane committed Dec 8, 2024
1 parent c8608c7 commit 06a12cd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions releases.json
Original file line number Diff line number Diff line change
Expand Up @@ -3133,6 +3133,7 @@
"reflex"
],
"versions": [
"5.1.0-2",
"5.1.0-1",
"3.2.11-1",
"3.2.7-1",
Expand Down
2 changes: 2 additions & 0 deletions subprojects/packagefiles/reflex/meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -141,6 +141,8 @@ libsimd_avx512bw = static_library(
cpp_args: simd_avx512bw_args,
include_directories: includes,
build_by_default: false,
# clang 14.0 fails to compile this code at optimization levels higher than 0
override_options: cpp.get_id() == 'clang' and cpp.version() == '14.0.0' ? {'optimization': '0'} : {},
)

# No DLLEXPORT declarations, thus only static library supported with MSVC
Expand Down

0 comments on commit 06a12cd

Please sign in to comment.