This website works better with JavaScript.
首頁
說明
登入
hms
/
pisdr-rpi-image
镜像来自
https://github.com/luigifreitas/pisdr-image
關註
1
收藏
0
複製
0
程式碼
問題管理
0
版本發佈
14
Wiki
Activity
瀏覽代碼
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
Write
Preview
Loading…
取消
儲存