Make examples' shebang use target tcc bindir path

Use @BINDIR@ in shebang of examples to put the right path on the target
system. That is, use #!/usr/local/bin/tcc if tcc is installed in /usr/local/bin
and #!/usr/bin/tcc if tcc is installed in /usr/bin/tcc.
This commit is contained in:
Thomas Preud'homme
2011-06-18 00:24:47 +02:00
parent 3511e6e2a8
commit cb2138f8b0
4 changed files with 14 additions and 7 deletions

3
README
View File

@ -65,7 +65,8 @@ operations given a list of numbers (benchmark).
ex3.c: compute fibonacci numbers (benchmark).
ex4.c: more complicated: X11 program. Very complicated test in fact
because standard headers are being used !
because standard headers are being used ! As for ex1.c, can also be launched
directly as a script: './ex4.c'.
ex5.c: 'hello world' with standard glibc headers.