This website requires JavaScript.
Explore
Help
Register
Sign In
github-repos
/
tinycc
Watch
1
Star
0
Fork
0
You've already forked tinycc
mirror of
https://github.com/mirror/tinycc.git
synced
2025-02-08 06:40:11 +08:00
Code
Issues
Packages
Projects
Releases
Wiki
Activity
4d6a4a26e0
tinycc
/
examples
/
ex1.c.template
9 lines
100 B
Plaintext
Raw
Normal View
History
Unescape
Escape
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.
2011-06-18 06:24:47 +08:00
#! @BINDIR@/tcc -run
added examples
2003-10-05 05:25:32 +08:00
#include <tcclib.h>
fix makefiles etc for subdirs
2009-04-18 20:31:35 +08:00
int main()
added examples
2003-10-05 05:25:32 +08:00
{
printf("Hello World\n");
return 0;
}
Reference in New Issue
Copy Permalink