Il sito funziona meglio con JavaScript.
Home
Aiuto
Accedi
hms
/
pisdr-rpi-image
mirror da
https://github.com/luigifreitas/pisdr-image
Segui
1
Vota
0
Forka
0
Codice
Problemi
0
Rilasci
14
Wiki
Attività
Sfoglia il codice sorgente
compile pybind11 from source
pull/64/head
Luigi Cruz
3 anni fa
parent
8ef82d0f0b
commit
e115f2df3a
3 ha cambiato i file
con
23 aggiunte
e
2 eliminazioni
Visualizzazione separata
Opzioni Diff
Mostra statistiche
Scarica il file Patch
Scarica il file Diff
+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
Vedi File
@@ -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
Vedi File
@@ -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
Vedi File
@@ -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
Scrivi
Anteprima
Caricamento…
Annulla
Salva