fix: reduce MAXTFS/MAXMIRS from 1500 to 1000 to fix SIGABRT (exit 134)#54
Closed
marouenbg wants to merge 1 commit intonetZoo:develfrom
Closed
fix: reduce MAXTFS/MAXMIRS from 1500 to 1000 to fix SIGABRT (exit 134)#54marouenbg wants to merge 1 commit intonetZoo:develfrom
marouenbg wants to merge 1 commit intonetZoo:develfrom
Conversation
…Linux PUMA's REGULATION struct array with MAXTFS=1500 creates a ~2GB __DATA segment that exceeds the macOS Mach-O segment size limit, causing dyld to fail loading libc++.1.dylib/libSystem.B.dylib with exit code 134 (SIGABRT). Reducing MAXTFS and MAXMIRS to 1000 (matching PANDA) brings __DATA under the limit. Output is verified identical with the toy dataset reference.
43a25c1 to
935b92d
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Problem
CI fails on both ubuntu-latest and macos-latest with exit code 134 (SIGABRT) when running PUMA.
Root cause: PUMA REGULATION struct array with MAXTFS=1500 creates a ~2 GB __DATA segment that exceeds the macOS Mach-O segment size limit. This causes dyld to fail loading shared libraries (libc++.1.dylib, libSystem.B.dylib), aborting the process before main() even runs.
Fix
Reduce MAXTFS and MAXMIRS from 1500 back to 1000 (matching PANDA). This brings the __DATA segment from ~2.0 GB to ~1.83 GB, within limits.
Verification
Fixes https://github.com/netZoo/netZooC/actions/runs/22497581186