We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 110f3a2 commit eb79194Copy full SHA for eb79194
build_sdl.py
@@ -261,7 +261,10 @@ def on_directive_handle(
261
262
SDL_INCLUDE: Path
263
if "PYODIDE" in os.environ:
264
- SDL_INCLUDE = Path(os.environ["EMSDK"], "include")
+ logger.info(f"{os.environ.get('EMSDK')}=")
265
+ logger.info(f"{os.environ.get('EMSCRIPTEN')}=")
266
+ logger.info(f"{os.environ.get('EMSCRIPTEN_ROOT')}=")
267
+ SDL_INCLUDE = Path(os.environ["EMSCRIPTEN"], "include")
268
elif sys.platform == "win32" and SDL_PARSE_PATH is not None:
269
SDL_INCLUDE = SDL_PARSE_PATH / "include"
270
elif sys.platform == "darwin" and SDL_PARSE_PATH is not None:
0 commit comments