sysv4.h (CHOOSE_DYNAMIC_LINKER): Default to GLIBC when no C library is specified.

* config/rs6000/sysv4.h (CHOOSE_DYNAMIC_LINKER): Default to GLIBC
	when no C library is specified.

From-SVN: r162408
This commit is contained in:
Maxim Kuvyrkov 2010-07-22 09:47:01 +00:00 committed by Maxim Kuvyrkov
parent 93c594a39d
commit 14ee5f0ae2
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2010-07-22 Maxim Kuvyrkov <maxim@codesourcery.com>
* config/rs6000/sysv4.h (CHOOSE_DYNAMIC_LINKER): Default to GLIBC
when no C library is specified.
2010-07-22 Martin Jambor <mjambor@suse.cz>
* ipa-prop.h (struct ipa_node_params): Updated comment.

View File

@ -905,7 +905,7 @@ SVR4_ASM_SPEC \
#define UCLIBC_DYNAMIC_LINKER "/lib/ld-uClibc.so.0"
#if DEFAULT_LIBC == LIBC_UCLIBC
#define CHOOSE_DYNAMIC_LINKER(G, U) "%{mglibc:" G ";:" U "}"
#elif DEFAULT_LIBC == LIBC_GLIBC
#elif !defined (DEFAULT_LIBC) || DEFAULT_LIBC == LIBC_GLIBC
#define CHOOSE_DYNAMIC_LINKER(G, U) "%{muclibc:" U ";:" G "}"
#else
#error "Unsupported DEFAULT_LIBC"