Skip to content

Commit 43a5eca

Browse files
committed
update rpp
1 parent d5724c4 commit 43a5eca

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.github/workflows/ubuntu.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
- '*'
88
pull_request:
99
jobs:
10-
build-ubuntu:
10+
build:
1111
runs-on: ubuntu-latest
1212
steps:
1313
- name: Checkout

.github/workflows/windows.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
- '*'
88
pull_request:
99
jobs:
10-
build-windows:
10+
build:
1111
runs-on: windows-latest
1212
steps:
1313
- name: Checkout

rvk/CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,14 +78,14 @@ if(MSVC)
7878
$<$<CONFIG:MinSizeRel>:_NO_DEBUG_HEAP=1>
7979
)
8080
target_link_options(rvk PRIVATE /NODEFAULTLIB:MSVCRT)
81-
target_compile_options(rvk PRIVATE /arch:AVX2 /MP /W4 /GR- /GS- /EHa- /wd4201)
81+
target_compile_options(rvk PRIVATE /MP /W4 /GR- /GS- /EHa- /wd4201)
8282

8383
elseif(CLANG)
8484
if(CLANG_VERSION_MAJOR LESS 17)
8585
message(FATAL_ERROR "Unsupported Clang version: only 17+ is supported.")
8686
endif()
8787

88-
target_compile_options(rvk PRIVATE -mavx2 -Wall -Wextra -fno-exceptions -fno-rtti)
88+
target_compile_options(rvk PRIVATE -Wall -Wextra -fno-exceptions -fno-rtti)
8989
else()
9090
message(FATAL_ERROR "Unsupported compiler: only MSVC and Clang are supported.")
9191
endif()

0 commit comments

Comments
 (0)