Skip to content

Commit 9e65ff7

Browse files
committed
Add missing flag to arm compilations
1 parent 12556cc commit 9e65ff7

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/build.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -87,12 +87,12 @@ jobs:
8787

8888
- name: Build trimal for Linux armv7 (alpine)
8989
if: matrix.arch == 'armv7' && matrix.cpu_instr == 'non-SIMD' && matrix.os == 'alpine'
90-
run: cmake . -DDISABLE_SSE2=1 -DDISABLE_AVX2=1 && make && file bin/trimal && file bin/readal &&
90+
run: cmake . -D_FILE_OFFSET_BITS=64 -DDISABLE_SSE2=1 -DDISABLE_AVX2=1 && make && file bin/trimal && file bin/readal &&
9191
./scripts/generate_trimmed_msas.sh && ./scripts/compare_trimmed_msas.sh
9292
shell: alpine-armv7.sh {0}
9393
- name: Build trimal for Linux armv7 (alpine) and auto-selected SIMD (NEON)
9494
if: matrix.arch == 'armv7' && matrix.cpu_instr == 'auto-selected' && matrix.os == 'alpine'
95-
run: cmake . && make && file bin/trimal && file bin/readal &&
95+
run: cmake . -D_FILE_OFFSET_BITS=64 && make && file bin/trimal && file bin/readal &&
9696
./scripts/generate_trimmed_msas.sh && ./scripts/compare_trimmed_msas.sh
9797
shell: alpine-armv7.sh {0}
9898

@@ -111,7 +111,7 @@ jobs:
111111
apt-get update -q -y
112112
apt-get install -q -y cmake make g++ file
113113
run: |
114-
cmake . -DDISABLE_NEON=1 && make && file bin/trimal && file bin/readal &&
114+
cmake . -D_FILE_OFFSET_BITS=64 -DDISABLE_NEON=1 && make && file bin/trimal && file bin/readal &&
115115
./scripts/generate_trimmed_msas.sh && ./scripts/compare_trimmed_msas.sh
116116
117117
- name: Build trimal for Linux armv7 (ubuntu) and auto-selected SIMD (NEON)
@@ -129,7 +129,7 @@ jobs:
129129
apt-get update -q -y
130130
apt-get install -q -y cmake make g++ file
131131
run: |
132-
cmake . && make && file bin/trimal && file bin/readal &&
132+
cmake . -D_FILE_OFFSET_BITS=64 && make && file bin/trimal && file bin/readal &&
133133
./scripts/generate_trimmed_msas.sh && ./scripts/compare_trimmed_msas.sh
134134
135135
- name: Build trimal for Linux aarch64

0 commit comments

Comments
 (0)