File tree Expand file tree Collapse file tree 2 files changed +8
-4
lines changed
Expand file tree Collapse file tree 2 files changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -208,17 +208,17 @@ jobs:
208208 run : |
209209 set -x
210210 uname -m
211- ls -l bin/highs/highs
212- file bin/highs/highs
211+ ls -l bin/highs
212+ file bin/highs
213213
214214 echo "Checking interpreter:"
215- readelf -l bin/highs/highs | grep interpreter || true
215+ readelf -l bin/highs | grep interpreter || true
216216
217217 echo "Checking loader existence:"
218218 ls -l /lib/ld-linux-armhf.so.3 || true
219219
220220 echo "Running highs:"
221- ./bin/highs/highs --version
221+ ./bin/highs --version
222222
223223 - name : Test executable
224224 working-directory : ${{runner.workspace}}/build
Original file line number Diff line number Diff line change @@ -23,6 +23,10 @@ if (BUILD_OPENBLAS)
2323 message (STATUS "ARM architecture detected. Applying -DTARGET=ARMV7." )
2424 list (APPEND OPENBLAS_MINIMAL_FLAGS -DTARGET=ARMV7)
2525 list (APPEND OPENBLAS_MINIMAL_FLAGS -DNO_GETARCH=1 -DARMV7=1)
26+ list (APPEND OPENBLAS_MINIMAL_FLAGS
27+ -DNO_COMPLEX:BOOL =ON
28+ -DNO_DOUBLE_COMPLEX:BOOL =ON # explicit
29+ )
2630 set (SKIP_PARSE_GETARCH TRUE )
2731 else ()
2832 message (STATUS "ARM architecture detected. Applying -DTARGET=ARMV8." )
You can’t perform that action at this time.
0 commit comments