You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#rb Steve.Smith #rb Chris.Babcock #jira UE-109517 #ROBOMERGE-SOURCE: CL 15678897 in //UE5/Release-5.0-EarlyAccess/... #ROBOMERGE-BOT: STARSHIP (Release-5.0-EarlyAccess -> Main) (v781-15675533) [CL 15679229 by jules blok in ue5-main branch]
13 lines
282 B
Bash
13 lines
282 B
Bash
#!/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
|