2 * Simple Test program for libtcc
4 * libtcc can be useful to use tcc as a "backend" for a code generator.
11 /* this function is called by the generated code */
23 " return fib(n-1) + fib(n-2);\n"
28 " printf(\"Hello World!\\n\");\n"
29 " printf(\"fib(%d) = %d\\n\", n, fib(n));\n"
30 " printf(\"add(%d, %d) = %d\\n\", n, 2 * n, add(n, 2 * n));\n"
34 int main(int argc
, char **argv
)
41 fprintf(stderr
, "Could not create tcc state\n");
45 /* MUST BE CALLED before any compilation or file loading */
46 tcc_set_output_type(s
, TCC_OUTPUT_MEMORY
);
48 tcc_compile_string(s
, my_program
);
50 /* as a test, we add a symbol that the compiled program can be
51 linked with. You can have a similar result by opening a dll
52 with tcc_add_dll(() and using its symbols directly. */
53 tcc_add_symbol(s
, "add", (unsigned long)&add
);
57 func
= tcc_get_symbol(s
, "foo");