Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2026-04-09 07:49:22

0001 #!/bin/bash -l
0002 
0003 name=stran_test 
0004 
0005 gcc $name.cc -std=c++11 -lstdc++ -I/usr/local/cuda/include -I$OPTICKS_PREFIX/externals/glm/glm -I.. -o /tmp/$name 
0006 [ $? -ne 0 ] && echo $BASH_SOURCE compilation error && exit 1 
0007 
0008 /tmp/$name 
0009 [ $? -ne 0 ] && echo $BASH_SOURCE run error && exit 2
0010 
0011 
0012 exit 0 
0013 
0014 
0015