Closed
Merge Request #1 · created by Nathanael Jourdane


Test include boost

Inclut lib boost lors de la compilation de test2.cc en ajoutant l'argument -I ${RTFDIR}/../boost/include.

Sans cela les tests échouent et bld.sh renvoie un erreur.


From test_include_boost into master

Closed by Nathanael Jourdane

Changes were not merged into target branch

2 participants

08 Nov, 2017

1 commit


03 Nov, 2017

1 commit


Showing 1 changed file   Show diff stats
bld.sh
  Diff comments   Edit  View file @ec1921c
... ... @@ -629,10 +629,10 @@ int main()
629 629 return 0;
630 630 }
631 631 EOF
632   - docmd "LOCAL TEST 9" g++ -O3 -Wall -o test2.bin test2.cc
  632 + docmd "LOCAL TEST 9" g++ -O3 -Wall -I ${RTFDIR}/../boost/include -o test2.bin test2.cc
633 633 docmd "LOCAL TEST 10" ./test2.bin
634 634  
635   - docmd "LOCAL TEST 11" g++ -g -Wall -o test2.dbg test2.cc
  635 + docmd "LOCAL TEST 11" g++ -g -Wall -I ${RTFDIR}/../boost/include -o test2.dbg test2.cc
636 636 docmd "LOCAL TEST 12" ./test2.dbg
637 637  
638 638 docmd "LOCAL TEST" ls -l
... ...