Skip to content

Commit

Permalink
gh-127146: Emscripten Include compiler version in _PYTHON_HOST_PLATFO…
Browse files Browse the repository at this point in the history
…RM (#127992)

Modifies _PYTHON_HOST_PLATFORM to include the compiler version under
Emscripten. The Emscripten compiler version is the platform version
compatibility identifier.
  • Loading branch information
hoodmane authored Dec 17, 2024
1 parent be8ae08 commit b92f101
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
3 changes: 3 additions & 0 deletions configure

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -793,6 +793,9 @@ if test "$cross_compiling" = yes; then
*-*-vxworks*)
_host_ident=$host_cpu
;;
*-*-emscripten)
_host_ident=$(emcc -dumpversion)-$host_cpu
;;
wasm32-*-* | wasm64-*-*)
_host_ident=$host_cpu
;;
Expand Down

0 comments on commit b92f101

Please sign in to comment.