Skip to content

Commit

Permalink
Merge remote-tracking branch 'upstream/2.3' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
daschuer committed May 26, 2022
2 parents 7672cf1 + 13ba0ff commit b0601aa
Show file tree
Hide file tree
Showing 8 changed files with 1,615 additions and 18,319 deletions.
4 changes: 3 additions & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2037,7 +2037,9 @@ target_link_libraries(mixxx-lib PRIVATE FLAC::FLAC)
# from -ffast-math optimized objects. The MSVC option /fp:fast does not suffer this issue
add_library(FpClassify STATIC EXCLUDE_FROM_ALL src/util/fpclassify.cpp)
if(GNU_GCC OR LLVM_CLANG)
target_compile_options(FpClassify PRIVATE -fno-fast-math)
# The option `-ffp-contract=on` must precede `-fno-fast-math`
# to silence a warning on Clang 14
target_compile_options(FpClassify PRIVATE -ffp-contract=on -fno-fast-math)
endif()
target_link_libraries(mixxx-lib PRIVATE FpClassify)

Expand Down
Binary file modified res/Mixxx-Keyboard-Shortcuts.pdf
Binary file not shown.
Loading

0 comments on commit b0601aa

Please sign in to comment.