commit | d8a12bc0c61282b38439ee76b05dbde0200002e1 | [log] [tgz] |
---|---|---|
author | Lasse Collin <[email protected]> | Mon Feb 15 19:45:13 2021 +0200 |
committer | Lasse Collin <[email protected]> | Mon Feb 15 19:46:09 2021 +0200 |
tree | 379121c41022926c02030155cb60e7058c27966d | |
parent | ef038b9db55bba73e2574ae451d62e16ce9c0ef9 [diff] |
userspace/Makefile: Add a comment about -std=gnu89 and add -Wno-long-long. gcc -std=gnu89 -pedantic warns about the ULL integer constant suffix in xz_crc64.c so silence it with -Wno-long-long. clang -std=gnu89 -pedantic is noisy about C99 features and language extensions. Omitting either option silences all these warnings, so mention this in a comment.