Skip to content

Commit eced9ca

Browse files
committed
another try
1 parent 3cd112d commit eced9ca

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

.github/workflows/cmake-linux-cc.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,8 +75,16 @@ jobs:
7575
working-directory: ${{github.workspace}}
7676
run: cmake --build ./product/cache/gnu-aarch64-so -j20
7777

78+
- name: Linux - check 'asm' directory
79+
run: |
80+
echo hashFiles('/usr/include/asm')
81+
ls -al /usr/include/
82+
echo ------------
83+
echo hashFiles('/usr/include/asm-generic')
84+
ls -al /usr/include/asm-generic
85+
7886
- name: Linux - Fix 'asm' directory issue, create sym-link if does not exist.
79-
if: ${{ hashFiles('/usr/include/asm/') == '' && hashFiles('/usr/include/asm-generic/') != ''}}
87+
if: ${{ hashFiles('/usr/include/asm') == '' && hashFiles('/usr/include/asm-generic') != ''}}
8088
run: sudo ln -s /usr/include/asm-generic/ /usr/include/asm
8189

8290
- name: Linux - Cross-compile configure, gnu-linux-arm32.cmake

0 commit comments

Comments
 (0)