|
| 1 | +:: Entry point for running python scripts on windows systems. |
| 2 | +:: |
| 3 | +:: Automatically generated by `create_entry_points.py`; DO NOT EDIT. |
| 4 | +:: |
| 5 | +:: To make modifications to this file, edit `tools/run_python.bat` and then run |
| 6 | +:: `tools/maint/create_entry_points.py` |
| 7 | + |
| 8 | +:: N.b. In Windows .bat scripts, the ':' character cannot appear inside any if () blocks, |
| 9 | +:: or there will be a parsing error. |
| 10 | + |
| 11 | +:: All env. vars specified in this file are to be local only to this script. |
| 12 | +@setlocal |
| 13 | +:: -E will not ignore _PYTHON_SYSCONFIGDATA_NAME an internal |
| 14 | +:: of cpython used in cross compilation via setup.py. |
| 15 | +@set _PYTHON_SYSCONFIGDATA_NAME= |
| 16 | +@set EM_PY=%EMSDK_PYTHON% |
| 17 | +@if "%EM_PY%"=="" ( |
| 18 | + set EM_PY=python |
| 19 | +) |
| 20 | + |
| 21 | +:: Work around Windows bug https://github.com/microsoft/terminal/issues/15212 : If this |
| 22 | +:: script is invoked via enclosing the invocation in quotes via PATH lookup, then %~f0 and |
| 23 | +:: %~dp0 expansions will not work. |
| 24 | +:: So first try if %~dp0 might work, and if not, manually look up this script from PATH. |
| 25 | +@if exist "%~f0" ( |
| 26 | + set MYDIR=%~dp0 |
| 27 | + goto FOUND_MYDIR |
| 28 | +) |
| 29 | +@for %%I in (%~n0.bat) do ( |
| 30 | + @if exist %%~$PATH:I ( |
| 31 | + set MYDIR=%%~dp$PATH:I |
| 32 | + ) else ( |
| 33 | + echo Fatal Error! Due to a Windows bug, we are unable to locate the path to %~n0.bat. |
| 34 | + echo To help this issue, try removing unnecessary quotes in the invocation of emcc, |
| 35 | + echo or add Emscripten directory to PATH. |
| 36 | + echo See github.com/microsoft/terminal/issues/15212 and |
| 37 | + echo github.com/emscripten-core/emscripten/issues/19207 for more details. |
| 38 | + ) |
| 39 | +) |
| 40 | +:FOUND_MYDIR |
| 41 | + |
| 42 | +:: Python Windows bug https://bugs.python.org/issue34780: If this script was invoked via a |
| 43 | +:: shared stdin handle from the parent process, and that parent process stdin handle is in |
| 44 | +:: a certain state, running python.exe might hang here. To work around this, if |
| 45 | +:: EM_WORKAROUND_PYTHON_BUG_34780 is defined, invoke python with '< NUL' stdin to avoid |
| 46 | +:: sharing the parent's stdin handle to it, avoiding the hang. |
| 47 | + |
| 48 | +:: On Windows 7, the compiler batch scripts are observed to exit with a non-zero errorlevel, |
| 49 | +:: even when the python executable above did succeed and quit with errorlevel 0 above. |
| 50 | +:: On Windows 8 and newer, this issue has not been observed. It is possible that this |
| 51 | +:: issue is related to the above python bug, but this has not been conclusively confirmed, |
| 52 | +:: so using a separate env. var EM_WORKAROUND_WIN7_BAD_ERRORLEVEL_BUG to enable the known |
| 53 | +:: workaround this issue, which is to explicitly quit the calling process with the previous |
| 54 | +:: errorlevel from the above command. |
| 55 | + |
| 56 | +:: Also must use goto to jump to the command dispatch, since we cannot invoke emcc from |
| 57 | +:: inside a if() block, because if a cmdline param would contain a char '(' or ')', that |
| 58 | +:: would throw off the parsing of the cmdline arg. |
| 59 | +@if "%EM_WORKAROUND_PYTHON_BUG_34780%"=="" ( |
| 60 | + @if "%EM_WORKAROUND_WIN7_BAD_ERRORLEVEL_BUG%"=="" ( |
| 61 | + goto NORMAL |
| 62 | + ) else ( |
| 63 | + goto NORMAL_EXIT |
| 64 | + ) |
| 65 | +) else ( |
| 66 | + @if "%EM_WORKAROUND_WIN7_BAD_ERRORLEVEL_BUG%"=="" ( |
| 67 | + goto MUTE_STDIN |
| 68 | + ) else ( |
| 69 | + goto MUTE_STDIN_EXIT |
| 70 | + ) |
| 71 | +) |
| 72 | + |
| 73 | +:NORMAL_EXIT |
| 74 | +@"%EM_PY%" -E "%MYDIR%%~n0.py" %* |
| 75 | +@exit %ERRORLEVEL% |
| 76 | + |
| 77 | +:MUTE_STDIN |
| 78 | +@"%EM_PY%" -E "%MYDIR%%~n0.py" %* < NUL |
| 79 | +@exit /b %ERRORLEVEL% |
| 80 | + |
| 81 | +:MUTE_STDIN_EXIT |
| 82 | +@"%EM_PY%" -E "%MYDIR%%~n0.py" %* < NUL |
| 83 | +@exit %ERRORLEVEL% |
| 84 | + |
| 85 | +:NORMAL |
| 86 | +@"%EM_PY%" -E "%MYDIR%%~n0.py" %* |
0 commit comments