diff options
author | Carmelo Amoroso <carmelo.amoroso@st.com> | 2007-11-16 14:26:46 +0000 |
---|---|---|
committer | Carmelo Amoroso <carmelo.amoroso@st.com> | 2007-11-16 14:26:46 +0000 |
commit | e130b681c43ee2215512ffcf6cadcbc4487e96e6 (patch) | |
tree | 107831cfb61595a907dff264d1bdbf02e18c53f5 /ldso/include | |
parent | c08b07bc9bff10988100653d280e8afe428249f7 (diff) |
Added AVR32 support to uClibc. Signed-off-by: Hans-Christian Egtvedt <hcegtvedt@atmel.com>
Diffstat (limited to 'ldso/include')
-rw-r--r-- | ldso/include/dl-string.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ldso/include/dl-string.h b/ldso/include/dl-string.h index 32c5bf83a..4a35a1c8d 100644 --- a/ldso/include/dl-string.h +++ b/ldso/include/dl-string.h @@ -285,7 +285,8 @@ static __always_inline char * _dl_simple_ltoahex(char * local, unsigned long i) /* On some arches constant strings are referenced through the GOT. * This requires that load_addr must already be defined... */ #if defined(mc68000) || defined(__arm__) || defined(__thumb__) || \ - defined(__mips__) || defined(__sh__) || defined(__powerpc__) + defined(__mips__) || defined(__sh__) || defined(__powerpc__) || \ + defined(__avr32__) # define CONSTANT_STRING_GOT_FIXUP(X) \ if ((X) < (const char *) load_addr) (X) += load_addr # define NO_EARLY_SEND_STDERR |