Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Cuda-Chen committed Nov 22, 2023
1 parent 4423119 commit 86ad09a
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/github_actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ jobs:
apt-get install -q -y "${{ matrix.cxx_compiler }}" make
apt-get install -q -y gcc
run: |
make FEATURE=${{ matrix.arch_with_features.feature }} ${{ (matrix.arch_with_features.arch_flags != '') && 'ARCH_CFLAGS=${{ master.arch_with_features.arch_flags }}' || '' }} check
make FEATURE=${{ matrix.arch_with_features.feature }} ${{ (matrix.arch_with_features.arch_flags != '') && 'ARCH_CFLAGS=${{ matrix.arch_with_features.arch_flags }}' || '' }} check
host_win_msvc:
runs-on: windows-2022
Expand Down
10 changes: 7 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -119,19 +119,23 @@ $ make FEATURE=crypto+crc check

You can specify GNU toolchain for cross compilation as well.
[QEMU](https://www.qemu.org/) should be installed in advance.

For ARMv8-A running in 64-bit mode type:
```shell
$ make CROSS_COMPILE=aarch64-linux-gnu- check # ARMv8-A
```
or

For ARMv7-A type:
```shell
$ make CROSS_COMPILE=arm-linux-gnueabihf- check # ARMv7-A
```
or

For ARMv8-A running in 32-bit mode (A32 instruction set), type:
``` shell
$ make \
CROSS_COMPILE=arm-linux-gnueabihf- \
ARCH_CFLAGS="-mcpu=cortex-a32 -mfpu=neon-fp-armv8" \
check # ARMv8-A running in 32-bit mode, i.e., A32 instruction set
check
```

Check the details via [Test Suite for SSE2NEON](tests/README.md).
Expand Down

0 comments on commit 86ad09a

Please sign in to comment.