You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
13 lines
282 B
Plaintext
13 lines
282 B
Plaintext
|
|
#!/bin/sh
|
||
|
|
|
||
|
|
if [ ! -d "$MLSDK" ]; then
|
||
|
|
echo Unable to locate Magic Leap SDK location.
|
||
|
|
read -rsp $'Press any key to continue...\n' -n1 key
|
||
|
|
exit 1
|
||
|
|
fi
|
||
|
|
echo Replacing ld.lld at $MLSDK/tools/toolchains/llvm-8/bin
|
||
|
|
chmod +x ld.lld
|
||
|
|
cp ld.lld "%MLSDK%"/tools/toolchains/llvm-8/bin
|
||
|
|
|
||
|
|
exit 0
|