-
Notifications
You must be signed in to change notification settings - Fork 120
Building for Your Language
James Reynolds edited this page Nov 29, 2022
·
1 revision
This is a common pattern.
make --jobs {{ hw.concurrency }}
make prefix={{ prefix }} install
Moustaches: hw.concurrency
is the number of CPU cores, prefix
is the path to the package install location.
You might need to mkdir {{prefix}}/bin
. Move files, don't copy. For example:
mkdir {{prefix}}/bin
mv script {{prefix}}/bin
Change the first line (shebang line) to? #!/usr/bin/env perl
?
^^ Guides for specific build tools and scenarios
- Resources — links to outside sources that help
- Troubleshooting