2 * Simple Test program for libtcc
4 * libtcc can be useful to use tcc as a "backend" for a code generator.
12 /* this function is called by the generated code */
18 const char hello
[] = "Hello World!";
21 "#include <tcclib.h>\n" /* include the "Simple libc header for TCC" */
22 "extern int add(int a, int b);\n"
23 "extern const char hello[];\n"
29 " return fib(n-1) + fib(n-2);\n"
34 " printf(\"%s\\n\", hello);\n"
35 " printf(\"fib(%d) = %d\\n\", n, fib(n));\n"
36 " printf(\"add(%d, %d) = %d\\n\", n, 2 * n, add(n, 2 * n));\n"
40 int main(int argc
, char **argv
)
48 fprintf(stderr
, "Could not create tcc state\n");
52 /* if tcclib.h and libtcc1.a are not installed, where can we find them */
53 for (i
= 1; i
< argc
; ++i
) {
57 tcc_set_lib_path(s
, a
+2);
59 tcc_add_include_path(s
, a
+2);
61 tcc_add_library_path(s
, a
+2);
65 /* MUST BE CALLED before any compilation */
66 tcc_set_output_type(s
, TCC_OUTPUT_MEMORY
);
68 if (tcc_compile_string(s
, my_program
) == -1)
71 /* as a test, we add symbols that the compiled program can use.
72 You may also open a dll with tcc_add_dll() and use symbols from that */
73 tcc_add_symbol(s
, "add", add
);
74 tcc_add_symbol(s
, "hello", hello
);
76 /* relocate the code */
77 if (tcc_relocate(s
, TCC_RELOCATE_AUTO
) < 0)
80 /* get entry symbol */
81 func
= tcc_get_symbol(s
, "foo");
88 /* delete the state */