2002-05-13 22:58:22 +00:00
|
|
|
#ifndef LIBTCC_H
|
|
|
|
#define LIBTCC_H
|
|
|
|
|
2011-08-11 14:55:30 +00:00
|
|
|
#ifndef LIBTCCAPI
|
|
|
|
# define LIBTCCAPI
|
2009-04-18 11:17:38 +00:00
|
|
|
#endif
|
|
|
|
|
2003-04-26 20:51:42 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2024-02-07 06:42:56 +00:00
|
|
|
/*****************************/
|
2024-02-21 09:27:32 +00:00
|
|
|
/* set custom allocator for all allocations (optional), NULL for default. */
|
2024-02-07 06:42:56 +00:00
|
|
|
typedef void *TCCReallocFunc(void *ptr, unsigned long size);
|
|
|
|
LIBTCCAPI void tcc_set_realloc(TCCReallocFunc *my_realloc);
|
2024-02-06 18:36:00 +00:00
|
|
|
|
2024-02-07 06:42:56 +00:00
|
|
|
/*****************************/
|
|
|
|
typedef struct TCCState TCCState;
|
2019-10-14 07:36:14 +00:00
|
|
|
|
2002-05-13 22:58:22 +00:00
|
|
|
/* create a new TCC compilation context */
|
2009-04-18 11:17:38 +00:00
|
|
|
LIBTCCAPI TCCState *tcc_new(void);
|
2002-05-13 22:58:22 +00:00
|
|
|
|
|
|
|
/* free a TCC compilation context */
|
2021-10-22 05:39:54 +00:00
|
|
|
LIBTCCAPI void tcc_delete(TCCState *s);
|
2002-05-13 22:58:22 +00:00
|
|
|
|
2013-02-12 18:13:28 +00:00
|
|
|
/* set CONFIG_TCCDIR at runtime */
|
2021-10-22 05:39:54 +00:00
|
|
|
LIBTCCAPI void tcc_set_lib_path(TCCState *s, const char *path);
|
2002-05-13 22:58:22 +00:00
|
|
|
|
2024-02-07 06:42:56 +00:00
|
|
|
/* set error/warning callback (optional) */
|
|
|
|
typedef void TCCErrorFunc(void *opaque, const char *msg);
|
|
|
|
LIBTCCAPI void tcc_set_error_func(TCCState *s, void *error_opaque, TCCErrorFunc *error_func);
|
2003-04-26 20:51:42 +00:00
|
|
|
|
2013-02-12 18:13:28 +00:00
|
|
|
/* set options as from command line (multiple supported) */
|
2023-04-15 07:54:23 +00:00
|
|
|
LIBTCCAPI int tcc_set_options(TCCState *s, const char *str);
|
2010-04-05 19:21:58 +00:00
|
|
|
|
2002-05-13 22:58:22 +00:00
|
|
|
/*****************************/
|
|
|
|
/* preprocessor */
|
|
|
|
|
|
|
|
/* add include path */
|
2021-10-22 05:39:54 +00:00
|
|
|
LIBTCCAPI int tcc_add_include_path(TCCState *s, const char *pathname);
|
2002-05-13 22:58:22 +00:00
|
|
|
|
2002-08-18 13:24:03 +00:00
|
|
|
/* add in system include path */
|
2021-10-22 05:39:54 +00:00
|
|
|
LIBTCCAPI int tcc_add_sysinclude_path(TCCState *s, const char *pathname);
|
2002-08-18 13:24:03 +00:00
|
|
|
|
2020-06-27 15:02:12 +00:00
|
|
|
/* define preprocessor symbol 'sym'. value can be NULL, sym can be "sym=val" */
|
2021-10-22 05:39:54 +00:00
|
|
|
LIBTCCAPI void tcc_define_symbol(TCCState *s, const char *sym, const char *value);
|
2002-05-13 22:58:22 +00:00
|
|
|
|
|
|
|
/* undefine preprocess symbol 'sym' */
|
2021-10-22 05:39:54 +00:00
|
|
|
LIBTCCAPI void tcc_undefine_symbol(TCCState *s, const char *sym);
|
2002-05-13 22:58:22 +00:00
|
|
|
|
|
|
|
/*****************************/
|
|
|
|
/* compiling */
|
|
|
|
|
2013-02-12 18:13:28 +00:00
|
|
|
/* add a file (C file, dll, object, library, ld script). Return -1 if error. */
|
2021-10-22 05:39:54 +00:00
|
|
|
LIBTCCAPI int tcc_add_file(TCCState *s, const char *filename);
|
2002-05-13 22:58:22 +00:00
|
|
|
|
2013-02-12 18:13:28 +00:00
|
|
|
/* compile a string containing a C source. Return -1 if error. */
|
2021-10-22 05:39:54 +00:00
|
|
|
LIBTCCAPI int tcc_compile_string(TCCState *s, const char *buf);
|
2002-05-13 22:58:22 +00:00
|
|
|
|
2024-02-07 06:42:56 +00:00
|
|
|
/* Tip: to have more specific errors/warnings from tcc_compile_string(),
|
|
|
|
you can prefix the string with "#line <num> \"<filename>\"\n" */
|
|
|
|
|
2002-05-13 22:58:22 +00:00
|
|
|
/*****************************/
|
|
|
|
/* linking commands */
|
|
|
|
|
2002-08-18 13:24:03 +00:00
|
|
|
/* set output type. MUST BE CALLED before any compilation */
|
2021-10-22 05:39:54 +00:00
|
|
|
LIBTCCAPI int tcc_set_output_type(TCCState *s, int output_type);
|
2022-05-28 19:00:40 +00:00
|
|
|
#define TCC_OUTPUT_MEMORY 1 /* output will be run in memory */
|
2015-01-06 19:19:45 +00:00
|
|
|
#define TCC_OUTPUT_EXE 2 /* executable file */
|
2022-05-28 19:00:40 +00:00
|
|
|
#define TCC_OUTPUT_DLL 4 /* dynamic library */
|
|
|
|
#define TCC_OUTPUT_OBJ 3 /* object file */
|
|
|
|
#define TCC_OUTPUT_PREPROCESS 5 /* only preprocess */
|
2004-10-23 22:49:08 +00:00
|
|
|
|
2002-07-24 22:12:38 +00:00
|
|
|
/* equivalent to -Lpath option */
|
2021-10-22 05:39:54 +00:00
|
|
|
LIBTCCAPI int tcc_add_library_path(TCCState *s, const char *pathname);
|
2002-05-13 22:58:22 +00:00
|
|
|
|
2002-07-24 22:12:38 +00:00
|
|
|
/* the library name is the same as the argument of the '-l' option */
|
2021-10-22 05:39:54 +00:00
|
|
|
LIBTCCAPI int tcc_add_library(TCCState *s, const char *libraryname);
|
2002-07-24 22:12:38 +00:00
|
|
|
|
|
|
|
/* add a symbol to the compiled program */
|
2021-10-22 05:39:54 +00:00
|
|
|
LIBTCCAPI int tcc_add_symbol(TCCState *s, const char *name, const void *val);
|
2002-05-13 22:58:22 +00:00
|
|
|
|
2002-11-02 14:14:08 +00:00
|
|
|
/* output an executable, library or object file. DO NOT call
|
|
|
|
tcc_relocate() before. */
|
2021-10-22 05:39:54 +00:00
|
|
|
LIBTCCAPI int tcc_output_file(TCCState *s, const char *filename);
|
2002-05-13 22:58:22 +00:00
|
|
|
|
2002-11-02 14:14:08 +00:00
|
|
|
/* link and run main() function and return its value. DO NOT call
|
|
|
|
tcc_relocate() before. */
|
2021-10-22 05:39:54 +00:00
|
|
|
LIBTCCAPI int tcc_run(TCCState *s, int argc, char **argv);
|
2002-05-13 22:58:22 +00:00
|
|
|
|
2013-02-12 18:13:28 +00:00
|
|
|
/* do all relocations (needed before using tcc_get_symbol()) */
|
2024-02-07 06:42:56 +00:00
|
|
|
LIBTCCAPI int tcc_relocate(TCCState *s1);
|
2002-09-08 22:46:32 +00:00
|
|
|
|
2009-04-16 19:50:43 +00:00
|
|
|
/* return symbol value or NULL if not found */
|
2021-10-22 05:39:54 +00:00
|
|
|
LIBTCCAPI void *tcc_get_symbol(TCCState *s, const char *name);
|
2002-09-08 22:46:32 +00:00
|
|
|
|
2024-02-07 06:42:56 +00:00
|
|
|
/* list all (global) symbols and their values via 'symbol_cb()' */
|
2021-10-22 05:39:54 +00:00
|
|
|
LIBTCCAPI void tcc_list_symbols(TCCState *s, void *ctx,
|
2019-09-16 07:24:16 +00:00
|
|
|
void (*symbol_cb)(void *ctx, const char *name, const void *val));
|
|
|
|
|
2024-02-14 09:00:22 +00:00
|
|
|
/* experimental/advanced section (see libtcc_test_mt.c for an example) */
|
|
|
|
|
|
|
|
/* catch runtime exceptions (optionally limit backtraces at top_func),
|
|
|
|
when using tcc_set_options("-bt") and when not using tcc_run() */
|
2024-02-16 18:11:56 +00:00
|
|
|
LIBTCCAPI void *_tcc_setjmp(TCCState *s1, void *jmp_buf, void *top_func, void *longjmp);
|
|
|
|
#define tcc_setjmp(s1,jb,f) setjmp(_tcc_setjmp(s1, jb, f, longjmp))
|
2024-02-14 09:00:22 +00:00
|
|
|
|
2024-02-16 18:11:56 +00:00
|
|
|
/* custom error printer for runtime exceptions. Returning 0 stops backtrace */
|
|
|
|
typedef int TCCBtFunc(void *udata, void *pc, const char *file, int line, const char* func, const char *msg);
|
|
|
|
LIBTCCAPI void tcc_set_backtrace_func(TCCState *s1, void* userdata, TCCBtFunc*);
|
2024-02-14 09:00:22 +00:00
|
|
|
|
2003-04-26 20:51:42 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2002-05-13 22:58:22 +00:00
|
|
|
#endif
|