view resources/tests/make_tests.sh @ 125:850a4a9bd832 scope-refactoring

Added ifdefs and unified the code with udpioplugin ... the latter has not been tested (or committed). TODO: still it hangs after ctrl-c BeagleRT (auxiliary tasks do not terminate). TODO: sometimes you can hear dropouts in the transmission. Maybe it is due to pointer drifting. Rebooting BBB fixes/affects this issue.
author Giulio Moro <giuliomoro@yahoo.it>
date Sat, 22 Aug 2015 02:53:36 +0100
parents f5b5c648cd5d
children
line wrap: on
line source
#!/bin/bash
mkdir -p build
mkdir -p bin
g++ -o build/UdpServer.o -O2 -c ../../core/UdpServer.cpp &&\
g++ -O2 -o build/UdpClient.o -c ../../core/UdpClient.cpp && \
g++ -O2 -o build/UdpClientUdpServerTest.o -c UdpClientUdpServerTest.cpp && \
g++ -o bin/UdpClientUdpServerTest build/UdpClientUdpServerTest.o build/UdpClient.o build/UdpServer.o