이 웹사이트는 자바스크립트 활성화가 필요합니다.
홈
도움말
로그인
hms
/
pisdr-rpi-image
의 미러
https://github.com/luigifreitas/pisdr-image
보기
1
좋아요
0
포크
0
코드
이슈
0
릴리즈
14
위키
활동
소스 검색
compile pybind11 from source
pull/64/head
Luigi Cruz
3 년 전
부모
8ef82d0f0b
커밋
e115f2df3a
3개의 변경된 파일
과
23개의 추가작업
그리고
2개의 파일을 삭제
분할 보기
Diff Options
Show Stats
Download Patch File
Download Diff File
+4
-1
stage4/04-pisdr-system/00-packages
+0
-1
stage4/04-pisdr-system/03-run.sh
+19
-0
stage4/04-pisdr-system/05-run.sh
+ 4
- 1
stage4/04-pisdr-system/00-packages
파일 보기
@@ -5,4 +5,7 @@ build-essential
git
pkg-config
re2c
libssl-dev
libssl-dev
libboost-dev
python3-pytest
+ 0
- 1
stage4/04-pisdr-system/03-run.sh
파일 보기
@@ -3,5 +3,4 @@
on_chroot << EOF
python3 -m pip install cmake
python3 -m pip install ninja
python3 -m pip install pybind11
EOF
+ 19
- 0
stage4/04-pisdr-system/05-run.sh
파일 보기
@@ -0,0 +1,19 @@
#!/bin/bash -e
on_chroot << EOF
mkdir -p "/home/${FIRST_USER_NAME}/PiSDR/System"
cd "/home/${FIRST_USER_NAME}/PiSDR/System"
if [ ! -d "pybind11" ]; then
git clone --depth 1 https://github.com/pybind/pybind11.git
fi
cd pybind11
mkdir -p build
cd build
cmake -GNinja ..
ninja install
ldconfig
cd ..
rm -fr build
EOF
쓰기
미리보기
불러오는 중...
취소
저장