This is the mail archive of the gcc-bugs@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

ada/10046: Bootstrap failed with Ada enabled and libi


>Number:         10046
>Category:       ada
>Synopsis:       Bootstrap failed with Ada enabled and libi
>Confidential:   no
>Severity:       serious
>Priority:       medium
>Responsible:    unassigned
>State:          open
>Class:          sw-bug
>Submitter-Id:   net
>Arrival-Date:   Wed Mar 12 18:26:00 UTC 2003
>Closed-Date:
>Last-Modified:
>Originator:     Laurent Goujon
>Release:        gcc version 3.2.2
>Organization:
>Environment:
OS: IBM AIX 5.1
ARCH : RS6000
>Description:
If you specify a directory where to find libiconv and you want to build gcc with ada enabled, you'll get an error :
*** No rule to make target -L/libiconv_path needed by gnat1

>How-To-Repeat:
../gcc-3.2.2/configure --with-libiconv-prefix=/some_path --enable-languages=ada
>Fix:
in gcc/ada, modify Makefile.in :

add below :
INTLLIBS = @INTLLIBS@
this line :
INTLDEPS = @INTLDEPS@

modify the line :
LIBDEPS = $(INTLLIBS) $(LIBIBERTY)
with:
LIBDEPS = $(INTLDEPS) $(LIBIBERTY)
>Release-Note:
>Audit-Trail:
>Unformatted:


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]