Skip to content

Commit

Permalink
ARM v7 tentative tests
Browse files Browse the repository at this point in the history
  • Loading branch information
jfalcou committed Sep 21, 2024
1 parent 82e6fc3 commit 42b2a25
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/unit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,6 @@ jobs:
- { comp: gcc , arch: x86 , opts: -mavx2 , pch: "-DEVE_USE_PCH=ON" }
- { comp: gcc , arch: sve256 , opts: -Wno-psabi , pch: "-DEVE_USE_PCH=ON" }
- { comp: gcc , arch: sve512 , opts: -Wno-psabi , pch: "-DEVE_USE_PCH=ON" }
- { comp: gcc , arch: ppc64 , opts: -Wno-psabi , pch: "-DEVE_USE_PCH=ON" }
steps:
- name: Fetch current branch
uses: actions/[email protected]
Expand All @@ -176,7 +175,7 @@ jobs:
matrix:
cfg:
- { comp: clang, arch: aarch64_osx}
# - { comp: clang, arch: arm_osx }
- { comp: clang, arch: arm_osx }
steps:
- name: Fetch current branch
uses: actions/[email protected]
Expand Down Expand Up @@ -208,6 +207,7 @@ jobs:
- { comp: clang_libcpp, arch: x86 , opts: -msse2 }
- { comp: clang , arch: x86 , opts: "-mavx2 -mbmi2 -DEVE_USE_BMI_ON_AVX2" }
- { comp: gcc , arch: x86 , opts: "-mavx2 -mbmi2 -DEVE_USE_BMI_ON_AVX2" }
- { comp: gcc , arch: ppc64 , opts: -Wno-psabi }
steps:
- name: Fetch current branch
uses: actions/[email protected]
Expand Down Expand Up @@ -251,7 +251,6 @@ jobs:
- { comp: gcc , arch: x86 , opts: -mavx2 , pch: "-DEVE_USE_PCH=ON" }
- { comp: gcc , arch: sve256 , opts: -Wno-psabi , pch: "-DEVE_USE_PCH=ON" }
- { comp: gcc , arch: sve512 , opts: -Wno-psabi , pch: "-DEVE_USE_PCH=ON" }
- { comp: gcc , arch: ppc64 , opts: -Wno-psabi , pch: "-DEVE_USE_PCH=ON" }
steps:
- name: Fetch current branch
uses: actions/[email protected]
Expand Down Expand Up @@ -309,6 +308,7 @@ jobs:
- { comp: clang_libcpp, arch: x86 , opts: -msse2 }
- { comp: clang , arch: x86 , opts: "-mavx2 -mbmi2 -DEVE_USE_BMI_ON_AVX2" }
- { comp: gcc , arch: x86 , opts: "-mavx2 -mbmi2 -DEVE_USE_BMI_ON_AVX2" }
- { comp: gcc , arch: ppc64 , opts: -Wno-psabi }
steps:
- name: Fetch current branch
uses: actions/[email protected]
Expand Down Expand Up @@ -351,7 +351,6 @@ jobs:
- { comp: gcc , arch: x86 , opts: -mavx2 , pch: "-DEVE_USE_PCH=ON" }
- { comp: gcc , arch: sve256 , opts: -Wno-psabi , pch: "-DEVE_USE_PCH=ON" }
- { comp: gcc , arch: sve512 , opts: -Wno-psabi , pch: "-DEVE_USE_PCH=ON" }
- { comp: gcc , arch: ppc64 , opts: -Wno-psabi , pch: "-DEVE_USE_PCH=ON" }
steps:
- name: Fetch current branch
uses: actions/[email protected]
Expand Down Expand Up @@ -409,6 +408,7 @@ jobs:
- { comp: clang_libcpp, arch: x86 , opts: -msse2 }
- { comp: clang , arch: x86 , opts: "-mavx2 -mbmi2 -DEVE_USE_BMI_ON_AVX2" }
- { comp: gcc , arch: x86 , opts: "-mavx2 -mbmi2 -DEVE_USE_BMI_ON_AVX2" }
- { comp: gcc , arch: ppc64 , opts: -Wno-psabi }
steps:
- name: Fetch current branch
uses: actions/[email protected]
Expand Down Expand Up @@ -453,7 +453,6 @@ jobs:
- { comp: gcc , arch: x86 , opts: -mavx2 , pch: "-DEVE_USE_PCH=ON" }
- { comp: gcc , arch: sve256 , opts: -Wno-psabi , pch: "-DEVE_USE_PCH=ON" }
- { comp: gcc , arch: sve512 , opts: -Wno-psabi , pch: "-DEVE_USE_PCH=ON" }
- { comp: gcc , arch: ppc64 , opts: -Wno-psabi , pch: "-DEVE_USE_PCH=ON" }
steps:
- name: Fetch current branch
uses: actions/[email protected]
Expand Down Expand Up @@ -511,6 +510,7 @@ jobs:
- { comp: clang_libcpp, arch: x86 , opts: -msse2 }
- { comp: clang , arch: x86 , opts: "-mavx2 -mbmi2 -DEVE_USE_BMI_ON_AVX2" }
- { comp: gcc , arch: x86 , opts: "-mavx2 -mbmi2 -DEVE_USE_BMI_ON_AVX2" }
- { comp: gcc , arch: ppc64 , opts: -Wno-psabi }
steps:
- name: Fetch current branch
uses: actions/[email protected]
Expand Down
2 changes: 1 addition & 1 deletion cmake/toolchain/clang.arm_osx.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ set(CMAKE_SYSTEM_PROCESSOR arm )
set(CMAKE_C_COMPILER /opt/homebrew/opt/llvm@15/bin/clang )
set(CMAKE_CXX_COMPILER /opt/homebrew/opt/llvm@15/bin/clang++ )

set(CMAKE_CXX_FLAGS "--target=arm-linux-gnueabihf -mfpu=neon-vfpv4 -march=armv7-a -DEVE_NO_FORCEINLINE ${EVE_OPTIONS}" )
set(CMAKE_CXX_FLAGS "-target armv7-unknown-linux-gnu -stdlib=libc++ -mfloat-abi=hard -DEVE_NO_FORCEINLINE ${EVE_OPTIONS}" )

0 comments on commit 42b2a25

Please sign in to comment.