Hi all. I received a few replies, and here's the fixes that worked for me.
To solve the /sbin/loader problem:
/sbin/loader: Fatal Error: cannot map libstdc++.so.2.10.0
Make a sym link from <path-to-gcc>/lib/libstdc++.so.2.10.0
/usr/local/lib/libstdc++.so.2.10.0
(or in one of the default search paths, or in your LD_LIBRARY_PATH)
As for the va_list redefinition errors, the following fix from Frank
Wortner (frank_at_bondnet.com) solved this:
----------------------------------
Edit va-alpha.h and change the lines that read
#define _VA_LIST
#define _VA_LIST_
typedef __gnuc_va_list va_list;
to the following:
#ifndef _VA_LIST
typedef __gnuc_va_list va_list;
#define _VA_LIST
#define _VA_LIST_
#endif
---------------------------------
Thanks to all that replied to my questions.
------------
Greg Roberts
Computer Systems Officer
Dept. of Electrical & Electronic Engineering
The University of Western Australia
NEDLANDS WA 6907 Australia
Ph : +61-08-9380-7366
Fax : +61-08-9380-1065
Email : gregr_at_ee.uwa.edu.au
Received on Wed Mar 29 2000 - 06:47:59 NZST