Mercurial > hg > beaglert
view resources/tests/make_tests.sh @ 147:e9a2f31dff7b ClockSync
Something weird happened when pllP=8, so I set pllP=7, which reduces (a bit) the clock adjustment precision
author | Giulio Moro <giuliomoro@yahoo.it> |
---|---|
date | Tue, 15 Sep 2015 02:01:15 +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