We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5b87b36 commit 830467fCopy full SHA for 830467f
.github/workflows/test-opencvsharp.yml
@@ -183,8 +183,10 @@ jobs:
183
cl /nologo /EHsc test.c ../opencvsharp/lib/OpenCvSharpExtern.lib /link /OUT:test.exe
184
elif [[ "${{ runner.os }}" == macOS ]]; then
185
gcc test.c -L../opencvsharp/lib -lOpenCvSharpExtern -Wl,-rpath,@loader_path -o test.exe
186
+ elif [[ "${{ matrix.os }}" == "centos.7" ]]; then
187
+ gcc -std=c99 test.c -L../opencvsharp/lib -lOpenCvSharpExtern -Wl,-rpath,'$ORIGIN' -o test.exe
188
else
- gcc test.c -L../opencvsharp/lib -lOpenCvSharpExtern -Wl,-rpath,'$ORIGIN' -o test.exe
189
+ gcc test.c -L../opencvsharp/lib -lOpenCvSharpExtern -Wl,-rpath,'$ORIGIN' -o test.exe
190
fi
191
ls -lR
192
EOS
0 commit comments