@@ -87,12 +87,12 @@ jobs:
87
87
88
88
- name : Build trimal for Linux armv7 (alpine)
89
89
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 &&
91
91
./scripts/generate_trimmed_msas.sh && ./scripts/compare_trimmed_msas.sh
92
92
shell : alpine-armv7.sh {0}
93
93
- name : Build trimal for Linux armv7 (alpine) and auto-selected SIMD (NEON)
94
94
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 &&
96
96
./scripts/generate_trimmed_msas.sh && ./scripts/compare_trimmed_msas.sh
97
97
shell : alpine-armv7.sh {0}
98
98
@@ -111,7 +111,7 @@ jobs:
111
111
apt-get update -q -y
112
112
apt-get install -q -y cmake make g++ file
113
113
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 &&
115
115
./scripts/generate_trimmed_msas.sh && ./scripts/compare_trimmed_msas.sh
116
116
117
117
- name : Build trimal for Linux armv7 (ubuntu) and auto-selected SIMD (NEON)
@@ -129,7 +129,7 @@ jobs:
129
129
apt-get update -q -y
130
130
apt-get install -q -y cmake make g++ file
131
131
run : |
132
- cmake . && make && file bin/trimal && file bin/readal &&
132
+ cmake . -D_FILE_OFFSET_BITS=64 && make && file bin/trimal && file bin/readal &&
133
133
./scripts/generate_trimmed_msas.sh && ./scripts/compare_trimmed_msas.sh
134
134
135
135
- name : Build trimal for Linux aarch64
0 commit comments