소스 검색

Fix GNURadio Build

tags/v4.0.0-refresh.1
Luigi Cruz 4 년 전
부모
커밋
6223f86897
1개의 변경된 파일18개의 추가작업 그리고 1개의 파일을 삭제
  1. +18
    -1
      builder/stage4/05-pisdr-gnuradio/00-run.sh

+ 18
- 1
builder/stage4/05-pisdr-gnuradio/00-run.sh 파일 보기

@@ -4,6 +4,22 @@ on_chroot << EOF
mkdir -p "/home/${FIRST_USER_NAME}/PiSDR/Software"
cd "/home/${FIRST_USER_NAME}/PiSDR/Software"

if [ ! -d "volk" ]; then
git clone --recursive https://github.com/gnuradio/volk.git
fi

cd volk
mkdir -p build
cd build
cmake -DCMAKE_BUILD_TYPE=Release ../
make -j$(nproc) install
ldconfig
EOF

on_chroot << EOF
mkdir -p "/home/${FIRST_USER_NAME}/PiSDR/Software"
cd "/home/${FIRST_USER_NAME}/PiSDR/Software"

if [ ! -d "gnuradio" ]; then
git clone --recursive https://github.com/gnuradio/gnuradio.git
fi
@@ -12,7 +28,8 @@ cd gnuradio
git checkout maint-3.7
mkdir -p build
cd build
cmake -DCMAKE_BUILD_TYPE=Release -DPYTHON_EXECUTABLE=/usr/bin/python ../
cmake -DENABLE_INTERNAL_VOLK=OFF -DCMAKE_BUILD_TYPE=Release -DPYTHON_EXECUTABLE=/usr/bin/python ../
make -j$(nproc) install
ldconfig
EOF


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