-
Notifications
You must be signed in to change notification settings - Fork 7
Open
Description
On MacOS, if gcc is installed, CC=gcc cargo build or simply cargo build fails with the error log like below:
https://gist.github.com/koba-e964/c9ff5ab39b0ef510d0a893af54f4c0a4
Probably this is because of adding an option -Wno-error=address-of-packed-member here, which is valid in clang but not in gcc.
liberasurecode/install_deps.sh
Lines 44 to 46 in c853227
| if [ "$(uname)" == "Darwin" ]; then | |
| CFLAGS="$CFLAGS -Wno-error=address-of-packed-member" | |
| fi |
Fixing this should be easy. Should I do this?
Metadata
Metadata
Assignees
Labels
No labels