You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

8 miesięcy temu
1234567891011121314
  1. CFLAGS='-I.. -std=gnu++17 -g -O0 -pthread'
  2. g++ $CFLAGS childProgram.cpp -o childProgram
  3. if [ $? -ne 0 ]
  4. then
  5. exit -1
  6. fi
  7. g++ $CFLAGS testChild.cpp ../CodeDweller/child.cpp ../CodeDweller/timing.cpp -o testChild
  8. if [ $? -ne 0 ]
  9. then
  10. exit -1
  11. fi
  12. ./testChild