Move android and rpi examples to others
This commit is contained in:
parent
5f11d4eab4
commit
438d1cfad7
16 changed files with 2 additions and 2 deletions
18
examples/others/rpi/basic_window/README.md
Normal file
18
examples/others/rpi/basic_window/README.md
Normal file
|
@ -0,0 +1,18 @@
|
|||
### Raspberry Pi example
|
||||
|
||||
To cross compile example for Raspberry Pi you will need [RPi toolchain](https://github.com/raspberrypi/tools/tree/master/arm-bcm2708) and [userspace libraries](https://github.com/raspberrypi/firmware) (opt/vc).
|
||||
|
||||
Export path to RPi toolchain:
|
||||
|
||||
export RPI_HOME=/opt/tools/arm-bcm2708/arm-linux-gnueabihf
|
||||
|
||||
Add toolchain bin directory to PATH:
|
||||
|
||||
export PATH=${RPI_HOME}/bin:${PATH}
|
||||
|
||||
And compile example:
|
||||
|
||||
CC=arm-linux-gnueabihf-gcc \
|
||||
CGO_CFLAGS="-I/opt/vc/include -I/opt/vc/include/interface/vcos -I/opt/vc/include/interface/vmcs_host/linux -I/opt/vc/include/interface/vcos/pthreads --sysroot=${RPI_HOME}/arm-linux-gnueabihf/sysroot" \
|
||||
CGO_LDFLAGS="-L/opt/vc/lib -L/opt/vc/lib64 --sysroot=${RPI_HOME}/arm-linux-gnueabihf/sysroot" \
|
||||
CGO_ENABLED=1 GOOS=linux GOARCH=arm go build
|
Loading…
Add table
Add a link
Reference in a new issue