mirror of
https://github.com/frida/tinycc
synced 2024-11-24 16:49:44 +03:00
set the user-defined library search paths first
This commit is contained in:
parent
673befd2d7
commit
45b35a3d66
4
libtcc.c
4
libtcc.c
@ -989,8 +989,6 @@ LIBTCCAPI TCCState *tcc_new(void)
|
||||
/* glibc defines */
|
||||
tcc_define_symbol(s, "__REDIRECT(name, proto, alias)", "name proto __asm__ (#alias)");
|
||||
tcc_define_symbol(s, "__REDIRECT_NTH(name, proto, alias)", "name proto __asm__ (#alias) __THROW");
|
||||
/* default library paths */
|
||||
tcc_add_library_path(s, CONFIG_TCC_LIBPATHS);
|
||||
/* paths for crt objects */
|
||||
tcc_split_path(s, (void ***)&s->crt_paths, &s->nb_crt_paths, CONFIG_TCC_CRTPREFIX);
|
||||
#endif
|
||||
@ -1343,8 +1341,8 @@ LIBTCCAPI int tcc_set_output_type(TCCState *s, int output_type)
|
||||
put_stabs("", 0, 0, 0, 0);
|
||||
}
|
||||
|
||||
#ifdef TCC_TARGET_PE
|
||||
tcc_add_library_path(s, CONFIG_TCC_LIBPATHS);
|
||||
#ifdef TCC_TARGET_PE
|
||||
# ifdef _WIN32
|
||||
tcc_add_systemdir(s);
|
||||
# endif
|
||||
|
Loading…
Reference in New Issue
Block a user