From 5e954fef32ec8b630132c230793e0f3faca34e0a Mon Sep 17 00:00:00 2001 From: Thomas Preud'homme Date: Mon, 1 Aug 2011 15:39:38 +0200 Subject: Set CONFIG_TCC_CRT_PREFIX relative to CONFIG_SYSROOT Set CONFIG_TCC_CRT_PREFIX relative to CONFIG_SYSROOT for consistency with CONFIG_TCC_LDDIR. --- tcc.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tcc.h') diff --git a/tcc.h b/tcc.h index 636822b..f8ad00c 100644 --- a/tcc.h +++ b/tcc.h @@ -149,7 +149,7 @@ typedef int BOOL; /* path to find crt1.o, crti.o and crtn.o */ #ifndef CONFIG_TCC_CRT_PREFIX -# define CONFIG_TCC_CRT_PREFIX CONFIG_SYSROOT "/usr" CONFIG_TCC_LDDIR +# define CONFIG_TCC_CRT_PREFIX "/usr" CONFIG_TCC_LDDIR #endif #ifndef CONFIG_TCC_SYSINCLUDE_PATHS @@ -165,7 +165,7 @@ typedef int BOOL; # define CONFIG_TCC_LIBPATH "\b/lib" # else # define CONFIG_TCC_LIBPATH \ - CONFIG_TCC_CRT_PREFIX \ + CONFIG_SYSROOT CONFIG_TCC_CRT_PREFIX \ ":" CONFIG_SYSROOT CONFIG_TCC_LDDIR \ ":" CONFIG_SYSROOT "/usr/local" CONFIG_TCC_LDDIR # endif -- cgit v1.3.1