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
|
|
|
|
|
2002-05-13 22:58:22 +00:00
|
|
|
struct TCCState;
|
|
|
|
|
|
|
|
typedef struct TCCState TCCState;
|
|
|
|
|
2019-10-14 07:36:14 +00:00
|
|
|
typedef void (*TCCErrorFunc)(void *opaque, const char *msg);
|
2024-02-06 18:36:00 +00:00
|
|
|
typedef void *(*TCCReallocFunc)(void *ptr, size_t size);
|
|
|
|
|
|
|
|
/* to be used for all allocation (including tcc_new()), otherwise malloc(), realloc(), free() */
|
|
|
|
LIBTCCAPI void tcc_set_realloc(TCCReallocFunc realloc);
|
|
|
|
|
|
|
|
/* return current allocator */
|
|
|
|
LIBTCCAPI TCCReallocFunc tcc_get_realloc();
|
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
|
|
|
|
2002-11-02 14:14:08 +00:00
|
|
|
/* set error/warning display callback */
|
2021-10-22 05:39:54 +00:00
|
|
|
LIBTCCAPI void tcc_set_error_func(TCCState *s, void *error_opaque, TCCErrorFunc error_func);
|
2019-10-14 07:36:14 +00:00
|
|
|
|
|
|
|
/* return error/warning callback */
|
2021-10-22 05:39:54 +00:00
|
|
|
LIBTCCAPI TCCErrorFunc tcc_get_error_func(TCCState *s);
|
2019-10-14 07:36:14 +00:00
|
|
|
|
|
|
|
/* return error/warning callback opaque pointer */
|
2021-10-22 05:39:54 +00:00
|
|
|
LIBTCCAPI void *tcc_get_error_opaque(TCCState *s);
|
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
|
|
|
|
|
|
|
/*****************************/
|
|
|
|
/* 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()) */
|
2021-10-22 05:39:54 +00:00
|
|
|
LIBTCCAPI int tcc_relocate(TCCState *s1, void *ptr);
|
2013-02-12 18:13:28 +00:00
|
|
|
/* possible values for 'ptr':
|
2012-09-01 09:33:34 +00:00
|
|
|
- TCC_RELOCATE_AUTO : Allocate and manage memory internally
|
|
|
|
- NULL : return required memory size for the step below
|
|
|
|
- memory address : copy code to memory passed by the caller
|
2013-02-12 18:13:28 +00:00
|
|
|
returns -1 if error. */
|
2012-09-01 09:33:34 +00:00
|
|
|
#define TCC_RELOCATE_AUTO (void*)1
|
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
|
|
|
|
2019-09-16 07:24:16 +00:00
|
|
|
/* return symbol value or NULL if not found */
|
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));
|
|
|
|
|
2003-04-26 20:51:42 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2002-05-13 22:58:22 +00:00
|
|
|
#endif
|