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