From 45b35a3d66ee95e2526bf609cc88c4b4b21ac175 Mon Sep 17 00:00:00 2001 From: Vittorio Giovara Date: Mon, 23 Sep 2013 09:40:06 +0200 Subject: [PATCH] set the user-defined library search paths first --- libtcc.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/libtcc.c b/libtcc.c index 3b018ae..f841eb0 100644 --- a/libtcc.c +++ b/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