CCは
.bash_profile
export CC=clang
みたいな書き方でいけるのにCFLAGSの設定はidentifier / 識別子のエラーになった。
以下解決策。
.bash_profile
CFLAGS="$CFLAGS -Ofast -march=armv8-a+crc -mtune=cortex-a72 -mcpu=cortex-a72+crc -funsafe-math-optimizations"; export CFLAGS
参考:
Trouble setting up my chost, cflags [Archive] - Ubuntu Forums
↧