This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Python 3 | |
import sys | |
import socketserver | |
from http.server import SimpleHTTPRequestHandler | |
class WasmHandler(SimpleHTTPRequestHandler): | |
def end_headers(self): | |
self.send_header("Cross-Origin-Opener-Policy", "same-origin") | |
self.send_header("Cross-Origin-Embedder-Policy", "require-corp") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
git clone --recursive https://github.com/PixarAnimationStudios/USD | |
cd USD | |
In build_scripts/build_usd.py replace the line: | |
"https://github.com/oneapi-src/oneTBB/archive/2017_U6.tar.gz" | |
With: | |
"https://github.com/jerrans/oneTBB/archive/refs/heads/2017_U6/schmidje/armsupport.zip" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/emsdk.py b/emsdk.py | |
index 6d30c56..e2010bc 100644 | |
--- a/emsdk.py | |
+++ b/emsdk.py | |
@@ -1241,12 +1241,12 @@ def find_latest_installed_tool(name): | |
# npm install in Emscripten root directory | |
def emscripten_npm_install(tool, directory): | |
- node_tool = find_latest_installed_tool('node') | |
- if not node_tool: |