File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -261,9 +261,9 @@ def on_directive_handle(
261261
262262SDL_INCLUDE: Path
263263if "PYODIDE" in os.environ:
264- logger.info(f"{os.environ.get('EMSDK')}= ")
265- logger.info(f"{os.environ.get('EMSCRIPTEN')}= ")
266- logger.info(f"{os.environ.get('EMSCRIPTEN_ROOT')}= ")
264+ logger.info(f"{os.environ.get('EMSDK')=} ")
265+ logger.info(f"{os.environ.get('EMSCRIPTEN')=} ")
266+ logger.info(f"{os.environ.get('EMSCRIPTEN_ROOT')=} ")
267267 SDL_INCLUDE = Path(os.environ["EMSCRIPTEN"], "include")
268268elif sys.platform == "win32" and SDL_PARSE_PATH is not None:
269269 SDL_INCLUDE = SDL_PARSE_PATH / "include"
Original file line number Diff line number Diff line change @@ -74,6 +74,11 @@ def check_sdl_version() -> None:
7474 print("Did you forget to run 'git submodule update --init'?")
7575 sys.exit(1)
7676
77+ print(f"{os.environ.get('EMSDK')=}")
78+ print(f"{os.environ.get('EMSCRIPTEN')=}")
79+ print(f"{os.environ.get('EMSCRIPTEN_ROOT')=}")
80+ print(f"{os.environ.get('PYODIDE')=}")
81+
7782check_sdl_version()
7883
7984setup(
You can’t perform that action at this time.
0 commit comments