From fe01f82d27dba96e8104b334cd031ff8c27047f0 Mon Sep 17 00:00:00 2001 From: Austen Adler Date: Tue, 13 Jan 2015 21:51:06 -0500 Subject: [PATCH] Removed extra comments in compile.sh --- compile.sh | 6 ------ 1 file changed, 6 deletions(-) diff --git a/compile.sh b/compile.sh index 66fdb54..942bd14 100755 --- a/compile.sh +++ b/compile.sh @@ -3,21 +3,15 @@ cd /vagrant/src INCLUDE=$(find /vagrant/src -type d|sed -e 's/^/-I/'|paste -sd\ ) TMP=$(find . -type d) SRCS=$(find -type f -name \*.cpp|sed -e 's/\(.+\)\.cpp$/\1/') -#echo $INCLUDE -#echo $TMP -#echo $SRCS cd;rm -rf ~/build/;mkdir -p ~/build/;cd ~/build for DIR in $TMP;do mkdir -p $DIR done for SRC in $SRCS;do - #echo arm-frc-linux-gnueabi-g++ -std=c++1y -I/vagrant/wpilib/include $INCLUDE -O0 -g3 -Wall -c -fmessage-length=0 -o /vagrant/src/"$SRC".o "$SRC" echo "Compiling $(echo -n $SRC|sed -e 's/.+\/\(.+\)\.cpp//')" to "$SRC.o" - #echo arm-frc-linux-gnueabi-g++ -std=c++1y -I/vagrant/wpilib/include $INCLUDE -O0 -g3 -Wall -c -fmessage-length=0 -o "$SRC.o" "/vagrant/src/$(echo $SRC|cut -b "1 2" --complement)" arm-frc-linux-gnueabi-g++ -std=c++1y -I/vagrant/wpilib/include $INCLUDE -O0 -g3 -Wall -c -fmessage-length=0 -o "$SRC.o" "/vagrant/src/$(echo $SRC|cut -b "1 2" --complement)"||exit 1 done COMPILED=$(find -type f -name \*.cpp.o|sed -e 's/\(.+\)\.cpp\.o$/\1/') -#echo $COMPILED echo Linking arm-frc-linux-gnueabi-g++ -L/vagrant/wpilib/lib -Wl,-rpath,/opt/GenICam_v2_3/bin/Linux_armv7-a -o /vagrant/build/FRCUserProgram $COMPILED -lwpi cd -