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 /* this strinc is referenced by the generated code */
19 const char hello
[] = "Hello World!";
22 "#include <tcclib.h>\n" /* include the "Simple libc header for TCC" */
23 "extern int add(int a, int b);\n"
24 "#ifdef _WIN32\n" /* dynamically linked data needs 'dllimport' */
25 " __attribute__((dllimport))\n"
27 "extern const char hello[];\n"
33 " return fib(n-1) + fib(n-2);\n"
38 " printf(\"%s\\n\", hello);\n"
39 " printf(\"fib(%d) = %d\\n\", n, fib(n));\n"
40 " printf(\"add(%d, %d) = %d\\n\", n, 2 * n, add(n, 2 * n));\n"
44 int main(int argc
, char **argv
)
52 fprintf(stderr
, "Could not create tcc state\n");
56 /* if tcclib.h and libtcc1.a are not installed, where can we find them */
57 for (i
= 1; i
< argc
; ++i
) {
61 tcc_set_lib_path(s
, a
+2);
63 tcc_add_include_path(s
, a
+2);
65 tcc_add_library_path(s
, a
+2);
69 /* MUST BE CALLED before any compilation */
70 tcc_set_output_type(s
, TCC_OUTPUT_MEMORY
);
72 if (tcc_compile_string(s
, my_program
) == -1)
75 /* as a test, we add symbols that the compiled program can use.
76 You may also open a dll with tcc_add_dll() and use symbols from that */
77 tcc_add_symbol(s
, "add", add
);
78 tcc_add_symbol(s
, "hello", hello
);
80 /* relocate the code */
81 if (tcc_relocate(s
, TCC_RELOCATE_AUTO
) < 0)
84 /* get entry symbol */
85 func
= tcc_get_symbol(s
, "foo");
92 /* delete the state */