-
Notifications
You must be signed in to change notification settings - Fork 57
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Minor portability improvements #74
base: main
Are you sure you want to change the base?
Conversation
- support BSD tar(1) - support BSD install(1) - remove dependency on working directory from binutils and gzip build scripts - explicit dependency on GNU make (gmake(1))
binutils.sh
Outdated
--disable-plugins \ | ||
--disable-gprof \ | ||
--enable-compressed-debug-sections=none && \ | ||
gmake all-ld -j$(nproc) MAKEINFO=true |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Command gmake
is not found in default Ubuntu Linux installation even after running sudo apt install make
. Can you specify the appropriate command (gmake
or make
) by detecting at runtime?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Most certainly. Added a script to detect GNU make.
Note that FreeBSD port PR #86 should contain all the changes in this PR, so it can be merged instead, otherwise they should still merge cleanly on top of each other. |
tar(1)
install(1)
gmake(1)
)