mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-10 04:22:20 +02:00
Handle spaces in path to wasm rt lib
This commit is contained in:
parent
0ee3259eb1
commit
166ff4d5e3
1 changed files with 2 additions and 1 deletions
|
@ -9977,10 +9977,11 @@ namespace IDE
|
|||
case .Linux:
|
||||
newString.AppendF("./{} -lpthread -ldl -Wl,-rpath -Wl,$ORIGIN", rtName);
|
||||
case .Wasm:
|
||||
newString.Append("\"");
|
||||
newString.Append(mInstallDir);
|
||||
newString.Append("Beef", IDEApp.sRTVersionStr, "RT");
|
||||
newString.Append((Workspace.PlatformType.GetPtrSizeByName(gApp.mPlatformName) == 4) ? "32" : "64");
|
||||
newString.Append("_wasm.a");
|
||||
newString.Append("_wasm.a\"");
|
||||
default:
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue