Skip to content

Commit 3799c22

Browse files
committed
fixup! fixup! fixup! fixup! fixup! Test Pyodide builds
1 parent c16ca1c commit 3799c22

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

build_sdl.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -429,12 +429,12 @@ def get_cdef() -> tuple[str, dict[str, str]]:
429429
if "PYODIDE" in os.environ:
430430
extra_compile_args += ["--use-port=sdl3"]
431431
extra_link_args += ["--use-port=sdl3"]
432-
extra_compile_args += (
433-
subprocess.check_output((*CMAKE_FIND_SDL_CMD, "-D", "MODE=COMPILE"), text=True).strip().split()
434-
)
435-
extra_link_args += subprocess.check_output((*CMAKE_FIND_SDL_CMD, "-D", "MODE=LINK"), text=True).strip().split()
436-
print(f"{extra_compile_args=}")
437-
print(f"{extra_link_args=}")
432+
# extra_compile_args += (
433+
# subprocess.check_output((*CMAKE_FIND_SDL_CMD, "-D", "MODE=COMPILE"), text=True).strip().split()
434+
# )
435+
# extra_link_args += subprocess.check_output((*CMAKE_FIND_SDL_CMD, "-D", "MODE=LINK"), text=True).strip().split()
436+
# print(f"{extra_compile_args=}")
437+
# print(f"{extra_link_args=}")
438438
elif sys.platform not in ["win32", "darwin"]:
439439
# Use sdl-config to link to SDL on Linux.
440440
extra_compile_args += (

0 commit comments

Comments
 (0)