You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
0.13.1 — the probe now starts a program that needs an interpreter (#30)
And the README paragraph that blamed the emulator is corrected, because the way
it was wrong matters more than the fact.
`examples/subprocess` starts a `#!` script and asserts it runs. ⚠️ The script is
made executable BY THE SHELL, not by this program: `chmod` is refused here, so a
script this port wrote would be refused for its MODE and the observation would
have held for the wrong reason — which is exactly what the first attempt at this
check did, answering EACCES and looking like the defect being hunted.
openkal-linux 0.12.0 carries the fix: `execveat` with a directory descriptor
hands the interpreter `/dev/fd/<dirfd>/<name>`, which a close-on-exec descriptor
does not survive.
Copy file name to clipboardExpand all lines: mcpp.toml
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,7 @@
1
1
[package]
2
2
namespace = "mcpplibs"
3
3
name = "openkal-musl"
4
-
version = "0.13.0"
4
+
version = "0.13.1"
5
5
description = "musl 1.2.5 redirected onto openkal: one C library, ported once, above every implementation of the specification rather than above one kernel."
6
6
license = "Apache-2.0"
7
7
@@ -30,7 +30,7 @@ openkal = "0.12.0"
30
30
#
31
31
# The consequence for a program is that it names this package and nothing else.
32
32
[target.'cfg(os="linux")'.dependencies]
33
-
openkal-linux = { version = "0.11.0", features = ["standalone"] }
33
+
openkal-linux = { version = "0.12.0", features = ["standalone"] }
34
34
35
35
[target.'cfg(os="macos")'.dependencies]
36
36
openkal-macos = { version = "0.9.0", features = ["standalone"] }
0 commit comments