소스 검색

Fix install.sh to compile all the tests.

Matthieu Garrigues 10 년 전
부모
커밋
4c5abab1e2
1개의 변경된 파일4개의 추가작업 그리고 3개의 파일을 삭제
  1. 4 3
      frameworks/C++/silicon/install.sh

+ 4 - 3
frameworks/C++/silicon/install.sh

@@ -9,12 +9,13 @@ CXX=/usr/bin/g++-4.9 ./install.sh $IROOT
 
 # Install microhttpd
 cd $DIR
-wget http://mirror.ibcp.fr/pub/gnu/libmicrohttpd/libmicrohttpd-0.9.39.tar.gz
-tar xvf libmicrohttpd-0.9.39.tar.gz
+fw_get http://mirror.ibcp.fr/pub/gnu/libmicrohttpd/libmicrohttpd-0.9.39.tar.gz
+fw_untar libmicrohttpd-0.9.39.tar.gz
 cd libmicrohttpd-0.9.39
 ./configure --prefix=$IROOT
 make install
 
 cd $TROOT
 mkdir -p build
-cd build; cmake .. -DCMAKE_CXX_COMPILER=g++-4.9 && make silicon_app
+cd build; cmake .. -DCMAKE_CXX_COMPILER=g++-4.9 && make
+