Skip to content

Commit 3612d4e

Browse files
committed
Updated dependencies
1 parent efb1622 commit 3612d4e

2 files changed

Lines changed: 4 additions & 2 deletions

File tree

.github/workflows/ci.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,9 @@ jobs:
3737
cmake_args: "-DCMAKE_CXX_FLAGS=-m64"
3838
- os: windows-latest
3939
arch: x86
40-
cmake_args: "-G \"Visual Studio 17 2022\" -A Win32"
40+
# /arch:IA32 means these are builds without SIMD, due to really bad compiler ICEs
41+
# see https://github.com/Langulus/SIMD/issues/22 for more info and updates on the situation
42+
cmake_args: "-G \"Visual Studio 17 2022\" -A Win32 -DCMAKE_CXX_FLAGS=\"/arch:IA32\""
4143
- os: windows-latest
4244
arch: x64
4345
cmake_args: "-G \"Visual Studio 17 2022\" -A x64"

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ if (PROJECT_IS_TOP_LEVEL OR NOT LANGULUS)
1010
set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${PROJECT_BINARY_DIR}/bin)
1111
set(CMAKE_LIBRARY_OUTPUT_DIRECTORY ${PROJECT_BINARY_DIR}/bin)
1212
include(LangulusUtilities.cmake)
13-
fetch_langulus_module(Anyness GIT_TAG fb03aa5c76fe2cb1e117531888ed9c010bd436b0)
13+
fetch_langulus_module(Anyness GIT_TAG 3275f293b241cff9f61fc76d0a9fbe94dab3d965)
1414
endif()
1515

1616
file(GLOB_RECURSE

0 commit comments

Comments
 (0)