Skip to content

Commit

Permalink
Merge branch 'dev41' into unicode
Browse files Browse the repository at this point in the history
  • Loading branch information
starg2 committed Mar 10, 2021
2 parents 2ba616f + 3e84a5f commit 03b0142
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ cmake_minimum_required(VERSION 3.9)

project(timidity41)

set(TIM41_X86_SIMD_LEVEL SSE42 CACHE BOOL "x86 SIMD instruction set extension to use")
set(TIM41_X86_SIMD_LEVEL SSE42 CACHE STRING "x86 SIMD instruction set extension to use")
set_property(CACHE TIM41_X86_SIMD_LEVEL PROPERTY STRINGS SSE2 SSE42 AVX AVX2 AVX512)

set(TIM41_SPECTRE_MITIGATION FALSE CACHE BOOL "Enable Spectre mitigation")
Expand Down Expand Up @@ -266,7 +266,7 @@ else()
string(APPEND CMAKE_CXX_FLAGS " -std=c++17")
string(APPEND CMAKE_C_FLAGS_RELEASE " -flto")
string(APPEND CMAKE_CXX_FLAGS_RELEASE " -flto")
string(APPEND CMAKE_EXE_LINKER_FLAGS " --stack 16777216")
string(APPEND CMAKE_EXE_LINKER_FLAGS " -Wl,--stack,16777216")
string(APPEND CMAKE_EXE_LINKER_FLAGS_RELEASE " -s")
string(APPEND CMAKE_SHARED_LINKER_FLAGS_RELEASE " -s")
string(APPEND CMAKE_RC_FLAGS " -O coff")
Expand Down
1 change: 1 addition & 0 deletions libunimod/unimod_priv.h
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ extern "C"
/*========== Error handling */

#define _mm_errno ML_errno
#define _mm_malloc ML_malloc

/*========== Memory allocation */

Expand Down

0 comments on commit 03b0142

Please sign in to comment.