Fix premake build on systems without the 'arch' command - #806
Open
ywiyogo wants to merge 1 commit into
Open
Conversation
The 'arch' utility was removed from recent GNU coreutils releases, so
'io.popen("arch")' returns no output and the 'arch' local ends up nil,
failing with 'attempt to concatenate a nil value' in
create_test_experience_runner() (premake5-isaacsim.lua:348).
Fall back to 'uname -m' when 'arch' is unavailable.
Signed-off-by: Yongkie Wiyogo <4080600+ywiyogo@users.noreply.github.com>
ywiyogo
force-pushed
the
fix/premake-arch-fallback
branch
2 times, most recently
from
September 3, 2026 03:18
5b0a85a to
4cd8789
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.
Summary
premake5-isaacsim.lua:340 shells out to the Unix arch command via io.popen. The arch utility was removed from recent GNU coreutils releases, so on systems with newer coreutils the command is not found, io.popen returns no output, and the Lua local arch ends up nil, causing the build to fail with:
Fix
Fall back to uname -m when arch is unavailable:
Testing
Builds successfully on Arch Linux (coreutils 9.11) with ./build.sh --skip-compiler-version-check, where it previously failed.