Skip to content

Commit 8fe9c58

Browse files
committed
no complex and ls debug
1 parent c71fea1 commit 8fe9c58

File tree

2 files changed

+8
-4
lines changed

2 files changed

+8
-4
lines changed

.github/workflows/hipo-fetch.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff 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

cmake/FindHipoDeps.cmake

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff 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.")

0 commit comments

Comments
 (0)