I am trying to link a static third party library compiled with RVCT 2.2 with a test program compiled with GCC (arm-none-linux-gnueabi-gcc Sourcery G++ Lite 2011.03-41).
If I link with -static, everything works as it should. If I do not use -static however, I get lots of complaints like the following:
foolib.a(foo.o): In function `foofunc':
foo.c:(.text+0x4c8): undefined reference to `__aeabi_memcpy'
foolib.a(bar.o): In function `barfunc':
bar.c:(.text+0xa54): undefined reference to `__aeabi_memclr4'
Both memcpy and memset should be present in libc.
Clearly GCC can somehow detect and fix this if I use -static. Can someone explain what is happening? I assume that GCC dynamically links to libc unless I add the -static flag, but shouldn't __aeabi_memcpy and similar be defined in the shared libc library as well?
EDIT:
In order to let people test this themselves I have now created a minimalistic test case like follows:
//foo.c
#include <string.h>
void foo(void *dst, void *src, int num) {
memcpy(dst, src, num);
}
This file is compiled and archived with RVCT 2.2 as follows:
armcc.exe --arm -c --apcs=/noswst/interwork foo.c -o foo.o
armar.exe --create foo.a foo.o
This library is then linked with the following test program:
//bar.c
#include <stdio.h>
extern void foo(void *dst, void *src, int num);
int main(int argc, char *argv[]) {
int a[10], b[10], i;
for (i = 0; i < 10; i++) {
a[i] = i;
}
foo(b, a, sizeof(a));
for (i = 0; i < 10; i++) {
if (a[i] != b[i]) {
printf("Diff at %d: %d != %d\n", i, a[i], b[i]);
return 1;
}
}
printf("Success!\n");
return 0;
}
Using the following command:
arm-none-linux-gnueabi-gcc -Wall bar.c foo.a -o bar
Which gives the following output (unless -static is also used):
foo.a(foo.o): In function `foo':
foo.c:(.text+0x0): undefined reference to `__aeabi_memcpy'
arm-none-linux-gnueabi/bin/ld: bar: hidden symbol `__aeabi_memcpy' isn't defined
arm-none-linux-gnueabi/bin/ld: final link failed: Nonrepresentable section on output
collect2: ld returned 1 exit status
The binary foo.a can be downloaded from http://dl.dropbox.com/u/14498565/foo.a in case you don't have RVCT.
arm-none-linux-gnueabi-gcc -Wall -O2 testprog.c library.a -o testprog, plus-staticto get it to work. – Leo Aug 31 '12 at 11:11