|
|
"g35rider@xxxxxxxxx" <g35rider@xxxxxxxxx> writes:
> I tried this and still couldnt get it to work..
>
> ./app.compileFC5.runRH9
> ./app.compileFC5.runRH9: /lib/libgcc_s.so.1: version `GCC_3.3' not
You will probably want to set APBUILD_STATIC_LIBGCC=1
> ./app.compileFC5.runRH9: /lib/tls/libc.so.6: version `GLIBC_2.4' not
> found (required by ./app.compileFC5.runRH9)
This one is more serious: apg++ should have removed that dependency.
Most likely you didn't use apg++ to link your app (i.e. it's a
user mistake).
If you did; you are using a symbol from GLIBC_2.4 that apg++
apparently doesn't know to rename. Find out which symbol that is:
objdump -T app.compileFC5.runRH9 | grep GLIBC_2.4
Cheers,
--
In order to understand recursion you must first understand recursion.
Remove /-nsp/ for email.
|
|