aboutsummaryrefslogtreecommitdiff
path: root/Config.in
diff options
context:
space:
mode:
authorRob Landley <rob@landley.net>2020-02-17 04:11:07 -0600
committerRob Landley <rob@landley.net>2020-02-17 04:11:07 -0600
commita24295758beff40825bf3b1fcb35f908a5829242 (patch)
tree5b28452c918e88438c5ea13136bda1d64129203a /Config.in
parentbc287a20ddb6028c10ff2330822d73f41ca32748 (diff)
downloadtoybox-a24295758beff40825bf3b1fcb35f908a5829242.tar.gz
Rename config symbol now that we've worked around the worst of the breakage.
Diffstat (limited to 'Config.in')
-rw-r--r--Config.in42
1 files changed, 27 insertions, 15 deletions
diff --git a/Config.in b/Config.in
index 67583372..362b22f3 100644
--- a/Config.in
+++ b/Config.in
@@ -165,22 +165,34 @@ config TOYBOX_UID_USR
help
When commands like useradd/groupadd allocate user IDs, start here.
-config TOYBOX_MUSL_NOMMU_IS_BROKEN
- bool "Workaround for musl-libc breakage on nommu systems."
+config TOYBOX_FORCE_NOMMU
+ bool "Enable nommu support when the build can't detect it."
default n
help
- When using musl-libc on a nommu system, you'll need to say "y" here.
-
- Although uclibc lets you detect support for things like fork() and
- daemon() at compile time, musl intentionally includes broken versions
- that always return -ENOSYS on nommu systems, and goes out of its way
- to prevent any cross-compile compatible compile-time probes for a
- nommu system. (It doesn't even #define __MUSL__ in features.h.)
-
- Musl does this despite the fact that a nommu system can't even run
- standard ELF binaries, and requires specially packaged executables.
- So our only choice is to manually provide a musl nommu bug workaround
- you can manually select to enable (larger, slower) nommu support with
- musl.
+ When using musl-libc on a nommu system, you'll need to say "y" here
+ unless you used the patch in the mcm-buildall.sh script. You can also
+ say "y" here to test the nommu codepaths on an mmu system.
+
+ A nommu system can't use fork(), it can only vfork() which suspends
+ the parent until the child calls exec() or exits. When a program
+ needs a second instance of itself to run specific code at the same
+ time as the parent, it must use a more complicated approach (such as
+ exec("/proc/self/exe") then pass data to the new child through a pipe)
+ which is larger and slower, especially for things like toysh subshells
+ that need to duplicate a lot of internal state in the child process
+ fork() gives you for free.
+
+ Libraries like uclibc omit fork() on nommu systems, allowing
+ compile-time probes to select which codepath to use. But musl
+ intentionally includes a broken version of fork() that always returns
+ -ENOSYS on nommu systems, and goes out of its way to prevent any
+ cross-compile compatible compile-time probes for a nommu system.
+ (It doesn't even #define __MUSL__ in features.h.) Musl does this
+ despite the fact that a nommu system can't even run standard ELF
+ binaries (requiring specially packaged executables) because it wants
+ to force every program to either include all nommu code in every
+ instance ever built, or drop nommu support altogether.
+
+ Building a toolchain scripts/mcm-buildall.sh patches musl to fix this.
endmenu