spdxl/src
root 940d338d16 Poprawki dekodowania sond DFM 2020-09-08 10:24:26 +02:00
..
lib_armv6
lib_armv7hf
Execlogin.c
Execlogin.h
Makefile
NEW-aprs.txt
NEW-aprsmap.txt
README
Select.c
Select.h
X2C.h
adsb2aprs.c
afskmodem.c
afskmodemptt.c
afskmodemptt.h
aprsdecode.c
aprsdecode.h
aprsmap.c
aprspos.c
aprspos.h
aprsstr.c
aprsstr.h
aprstat.c
aprstat.h
aprstext.c
aprstext.h
basictypes.h
beep.c
beep.h
cleanup.c
cleanup.h
constants.h
deflate.c
deflate.h
frameio.c
frameio.h
geodesy.c
geodesy.h
getalmanach
gnss_error.h
gnss_types.h
gps.c
gps.h
gps2aprs.c
gps2digipos.c
gpspos.c
gpspos.h
help.txt
hints.txt
jpgdec.c
jpgdec.h
l2.c
l2.h
l2cat.c
maptool.c
maptool.h
mlib.h
navigation.c
navigation.h
osi.c
osi.h
osic.c
osic.h
pngread.c
pngread.h
pngwrite.c
pngwrite.h
radio.c
rinex.c
rinex.h
rsc.c
rsc.h
rsc_decode.c
sdr.c
sdr.h
sdrtest.c
sem.c
sem.h
sondeaprs.c
sondeaprs.h
sondemod.c Poprawki dekodowania sond DFM 2020-09-08 10:24:26 +02:00
sondeudp.c Poprawki dekodowania sond DFM 2020-09-08 10:24:26 +02:00
soundctl.c
soundctl.h
tcp.c
tcp.h
tcpb.c
tcpb.h
time_conversion.c
time_conversion.h
udp.c
udp.h
udpbox.c
udpbox.txt
udpflex.c
udpgate4.c
udphub.c
udprfnet.c
url.txt
useri.c
useri.h
xosi.c
xosi.h
xosic.h
yuma.c
yuma.h

README

compiling hints for C-Sources by OE5HPM@OE5XBL.#OE5.AUT.EU

build for X86 with i386 (32-bit) host system
or
build on some native ARM machine (like raspbian on rpi)
================================================================================
install following packages:
- build-essential  (sudo apt-get install build-essential)
- libX11-dev       (sudo apt-get install libX11-dev)
- libXext-dev      (sudo apt-get install libXext-dev)
- libpng-dev       (sudo apt-get install libpng-dev)
- libjpeg-dev      (sudo apt-get install libjpeg-dev)

make all

build for X86 with i686 (64-bit) host system
================================================================================
install following packages:
- build-essential  (sudo apt-get install build-essential)
- libX11-dev       (sudo apt-get install libX11-dev)
- libXext-dev      (sudo apt-get install libXext-dev)
- zlib1g-dev
- libjpeg-dev      (sudo apt-get install libjpeg-dev)

make all

cross-build for ARMV6 (raspberry pi) on x86 host system
================================================================================
install following packages:
- build-essential	(sudo apt-get install build-essential)
- lib32z1			(sudo apt-get install lib32z1)
- rpi-tools			(git clone https://github.com/raspberrypi/tools.git ~/rpi-tools)

PLATFORM=armv6 CROSS_COMPILE=~/rpi-tools/arm-bcm2708/arm-bcm2708hardfp-linux-gnueabi/bin/arm-bcm2708hardfp-linux-gnueabi- make all

cross-build for ARMV7hf (bur am335x pp, bananapi, beaglebone) on x86 host system
================================================================================
install following packages:
- build-essential   (sudo apt-get install build-essential)
- linaro-toolchain
	cd ~/
	wget https://releases.linaro.org/components/toolchain/binaries/latest-5.1/arm-linux-gnueabihf/gcc-linaro-5.1-2015.08-x86_64_arm-linux-gnueabihf.tar.xz
	tar -xf gcc-linaro-5.1-2015.08-x86_64_arm-linux-gnueabihf.tar.xz

PLATFORM=armv7hf CROSS_COMPILE=/opt/gcc-linaro-5.1-2015.08-x86_64_arm-linux-gnueabihf/bin/arm-linux-gnueabihf- make all