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
| # this script uses syntax for bitbucket server. | |
| # For bitbucket cloud see https://confluence.atlassian.com/bitbucket/use-the-bitbucket-cloud-rest-apis-222724129.html | |
| # | |
| # Note: replace username, password and PROJECTNAME with your values | |
| USERNAME=xxxx | |
| PASSWORD=xxxx | |
| PROJECTNAME=xxxxx | |
| # jq syntax helpful links: |
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
| /* This is the original elf.h file from the GNU C Library; I only removed | |
| the inclusion of feature.h and added definitions of __BEGIN_DECLS and | |
| __END_DECLS as documented in | |
| https://cmd.inp.nsk.su/old/cmd2/manuals/gnudocs/gnudocs/libtool/libtool_36.html | |
| On macOS, simply copy the file to /usr/local/include/. | |
| Mathias Lafeldt <mathias.lafeldt@gmail.com> */ | |
| /* This file defines standard ELF types, structures, and macros. |