diff --git a/stage4/12-pisdr-gnuradio/00-run.sh b/stage4/12-pisdr-gnuradio/00-run.sh index b54a0ff..c4e0094 100755 --- a/stage4/12-pisdr-gnuradio/00-run.sh +++ b/stage4/12-pisdr-gnuradio/00-run.sh @@ -5,13 +5,17 @@ mkdir -p "/home/${FIRST_USER_NAME}/PiSDR/Software" cd "/home/${FIRST_USER_NAME}/PiSDR/Software" if [ ! -d "volk" ]; then - git clone --single-branch --branch v2.5.0 --depth 1 --recurse-submodules --shallow-submodules https://github.com/gnuradio/volk.git + git clone --single-branch --branch v2.5.0 --depth 1 --recurse-submodules --shallow-submodules https://github.com/luigifcruz/volk.git fi cd volk +git checkout m1fix mkdir -p build cd build -cmake -GNinja -DCMAKE_BUILD_TYPE=Release .. +cmake -DCMAKE_CXX_FLAGS:STRING="-march=armv8-a -Wno-psabi" \ + -DCMAKE_C_FLAGS:STRING="-march=armv8-a -Wno-psabi" \ + DCMAKE_ASM_FLAGS:STRING="-march=armv8-a -Wno-psabi" \ + -GNinja -DCMAKE_BUILD_TYPE=Release .. ninja install ldconfig cd ..