mirror of
https://gitee.com/openharmony/third_party_ffmpeg
synced 2024-11-23 11:19:55 +00:00
48860df34d
Allows in-tree msvc compilation with wsl.
10 lines
149 B
Bash
Executable File
10 lines
149 B
Bash
Executable File
#!/bin/sh
|
|
|
|
LINK_EXE_PATH=$(dirname "$(command -v cl)")/link
|
|
if [ -x "$LINK_EXE_PATH" ]; then
|
|
"$LINK_EXE_PATH" $@
|
|
else
|
|
link.exe $@
|
|
fi
|
|
exit $?
|