Commit 3899178
committed
fix(smol): use python configure.py on Windows instead of ./configure
Windows doesn't recognize ./configure as an executable. On Windows,
Node.js's configure script must be invoked via Python explicitly.
Changes:
- Detect platform with WIN32 constant
- Windows: Run 'python configure.py <flags>'
- Unix/Linux/macOS: Run './configure <flags>' (existing behavior)
- Update log message to show correct command per platform
This fixes Windows smol build failure:
"'.' is not recognized as an internal or external command"1 parent 40497fb commit 3899178
1 file changed
+6
-2
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1418 | 1418 | | |
1419 | 1419 | | |
1420 | 1420 | | |
1421 | | - | |
1422 | | - | |
| 1421 | + | |
| 1422 | + | |
| 1423 | + | |
| 1424 | + | |
| 1425 | + | |
| 1426 | + | |
1423 | 1427 | | |
1424 | 1428 | | |
1425 | 1429 | | |
| |||
0 commit comments