package spawn
Install
Dune Dependency
Authors
Maintainers
Sources
sha256=33fbb5cd4c3387a6829095cfa73d5fc2eff572be61647e6052010bfbd0c2df49
sha512=bb85d1f706774793170f2d52ccbeeeaf67558046b8012bdd8a9cefc46215522a4d59a4a6f21296b0825158e6853a2430f2642ee714e1d1d8b726442d52006fc1
CHANGES.md.html
v0.17.0
Support older GCC like 4.8.5 (#59)
Fix spawning processes on Windows when environment contains non-ascii characters (#58)
Skip calls to pthread_cancelstate on android, as its not available (#52)
Fix compatibility with systems that do not define
PIPE_BUF
. Use_POSIX_PIPE_BUF
as a fallback. (#49)[haiku] Fix compilation on Haiku OS. The header sys/syscalls.h isn't available, neither is pipe2()
Allow setting the sigprocmask for spawned processes (#32)
v0.15.1
[windows] Use the same quoting heuristic as the compiler (#29)
[windows] Fix compilation on cygwin (#29)
v0.15.0
Add support for
setpgid
(#23)
v0.14.0
Do not use vfork by default on OSX as it seems broken (#20, @jeremiedimino)
Fix compilation under msvc (#21, @nojb)
v0.13.0
Breaking change on Windows: to match the Unix behavior,
prog
is interpreted as relative to the directory specified by thecwd
argument (#13)Switch to dune (#12)
Switch to MIT+DCO (#11)
v0.12.0
Breaking change: make environments abstract so that we can later optimize them without further breaking changes (#3)
v0.11.1
Fix linking errors due to missing
-lphtread
(#1)
v0.9.0
Initial release