Daniel Ruf
Daniel Ruf
Maybe `vcpkg.exe install zlib` helps further (see https://vcpkgx.com/details.html?package=zlib and https://vcpkg.io/en/). https://github.com/DanielRuf/spx-windows-build/actions/runs/10763553391/job/29845207008#step:2:54 I also found this: https://wiki.php.net/internals/windows/libs/apache22 https://github.com/madler/zlib/tree/develop/win32 Not sure if there is some more step needed to compile and load...
`zlib.lib` and `zlibd(ebug).lib` should be there: ``` vcpkg.exe install zlib dir C:/vcpkg/packages/zlib_x64-windows/debug/lib dir C:/vcpkg/packages/zlib_x64-windows/lib ``` ``` vcpkg.exe install zlib:x64-windows-static dir C:/vcpkg/packages/zlib_x64-windows-static/debug/lib dir C:/vcpkg/packages/zlib_x64-windows-static/lib ``` `C:\vcpkg\packages\zlib_x64-windows\bin` contains `zlib.pdb` and `zlib1.dll`. `C:\vcpkg\packages\zlib_x64-windows\include`...
@cmb69 before I am going in circles, where can we drop the files to let config.w32 find them with the least amount of changes and most portable setup (`configure` paramaters...
@cmb69 would be https://github.com/DanielRuf/php-spx/blob/windows-build/.github/workflows/main.yml sufficient?
Looks better now with the new action. I guess `fatal error C1083: Cannot open include file: 'unistd.h': No such file or directory` will be resolved with a check. Not sure...
> I can't port the logic of the Makefile.frag (adding assets dir copy to `install` target and defining `SPX_HTTP_UI_ASSETS_DIR` macro) to win32. I tried to do the equivalent in a...
Understood, so I can not do some `bc_parse(some-string-from-stdin)` with that and I have to resort to some other solution then. Where can I find the current logic of the CLI?...
> Or do you just need simple expressions? Or something else? Just basic calculations like `eval(1+2/3*4-5)`. > If you need the full language, the best solution would be to run...
I will check that and let you know in the next days. At least parentheses are also needed. If there is at least one function (like sqrt or max) implemened,...
No problem and thanks for letting me know. I will try to understand and solve it.