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 8925da0 commit 89cc447Copy full SHA for 89cc447
build_sdl.py
@@ -261,16 +261,12 @@ def on_directive_handle(
261
262
SDL_INCLUDE: Path
263
if "PYODIDE" in os.environ:
264
- import pprint
265
-
266
- pprint.pprint(dict(os.environ))
267
for path in os.environ["PATH"].split(os.pathsep):
268
if Path(path, "../upstream/emscripten").exists():
269
SDL_INCLUDE = Path(path)
270
break
271
else:
272
raise AssertionError
273
- SDL_INCLUDE = Path(os.environ["EMSCRIPTEN"], "include")
274
elif sys.platform == "win32" and SDL_PARSE_PATH is not None:
275
SDL_INCLUDE = SDL_PARSE_PATH / "include"
276
elif sys.platform == "darwin" and SDL_PARSE_PATH is not None:
0 commit comments