create.sh 441 B

1234567891011
  1. cmake -DHOST=YES \
  2. -DLOOPUNROLL=ON \
  3. -DWRAPPER=YES \
  4. -DCMAKE_POSITION_INDEPENDENT_CODE=YES \
  5. -DCMSISDSP="path to CMSIS-DSP folder" \
  6. -DCMAKE_C_FLAGS_RELEASE="-std=c11 -Ofast -ffast-math -DNDEBUG -Wall -Wextra" \
  7. -DCMAKE_CXX_FLAGS_RELEASE="-fno-rtti -std=c++11 -Ofast -ffast-math -DNDEBUG -Wall -Wextra -Wno-unused-parameter" \
  8. -G "Unix Makefiles" ..
  9. # For Mac universal lib
  10. # -arch x86_64 -arch arm64 -mmacosx-version-min=11.0