소스 검색

patch cpu_features for arm64

pull/71/head
luigifcruz 2 년 전
부모
커밋
56d915fcf8
1개의 변경된 파일6개의 추가작업 그리고 2개의 파일을 삭제
  1. +6
    -2
      stage4/12-pisdr-gnuradio/00-run.sh

+ 6
- 2
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 ..


불러오는 중...
취소
저장