public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug libstdc++/50915] New: gcc fails at run time due to undefined libintl_textdomain
@ 2011-10-29 19:45 titu_senapati at yahoo dot com
  2011-10-30  0:19 ` [Bug libstdc++/50915] " paolo.carlini at oracle dot com
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: titu_senapati at yahoo dot com @ 2011-10-29 19:45 UTC (permalink / raw)
  To: gcc-bugs

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=50915

             Bug #: 50915
           Summary: gcc fails at run time due to undefined
                    libintl_textdomain
    Classification: Unclassified
           Product: gcc
           Version: 3.4.3
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: libstdc++
        AssignedTo: unassigned@gcc.gnu.org
        ReportedBy: titu_senapati@yahoo.com


Installed GCC 3.4.3 in one x86_64 machine with OS as Suse Linux SP1

I have configured as follows:
./configure --prefix=[path to installation] --host=x86_64-suse-linux
--build=x86_64-suse-linux target=x86_64-suse-linux --with-included-gettext

reason I have mentioned host, build and target is during configure it is not
able to detect the os type hence
it is setting target as x86_64-unknown-linux

Now the problem is when I am invoking gcc after installation, it is throwing
error

/vobs/tsp/tools/GCC/LINUX/3.4.3_SLES11/bin/gcc  -nodefaultlibs -m32  -o genbin
genbin.o -lstdc++ -lgcc -lc
/vobs/tsp/tools/GCC/LINUX/3.4.3_SLES11/lib/gcc/x86_64-suse-linux/3.4.3/../../../../lib/libstdc++.so:
undefined reference to `libintl_textdomain'
/vobs/tsp/tools/GCC/LINUX/3.4.3_SLES11/lib/gcc/x86_64-suse-linux/3.4.3/../../../../lib/libstdc++.so:
undefined reference to `libintl_bindtextdomain'
collect2: ld returned 1 exit status
*** Error code 1

In my system there is a libintl.so available at /usr/local/lib. can it be a
problem.

Can you please suggest any solution.


^ permalink raw reply	[flat|nested] 4+ messages in thread

* [Bug libstdc++/50915] gcc fails at run time due to undefined libintl_textdomain
  2011-10-29 19:45 [Bug libstdc++/50915] New: gcc fails at run time due to undefined libintl_textdomain titu_senapati at yahoo dot com
@ 2011-10-30  0:19 ` paolo.carlini at oracle dot com
  2011-10-30  9:15 ` rguenth at gcc dot gnu.org
  2011-10-31 14:07 ` titu_senapati at yahoo dot com
  2 siblings, 0 replies; 4+ messages in thread
From: paolo.carlini at oracle dot com @ 2011-10-30  0:19 UTC (permalink / raw)
  To: gcc-bugs

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=50915

Paolo Carlini <paolo.carlini at oracle dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |WAITING
   Last reconfirmed|                            |2011-10-30
     Ever Confirmed|0                           |1

--- Comment #1 from Paolo Carlini <paolo.carlini at oracle dot com> 2011-10-30 00:18:24 UTC ---
3.4.x is very, very, old and not maintained anymore. Thus, before anything
else, try something modern, like the just released 4.6.2.


^ permalink raw reply	[flat|nested] 4+ messages in thread

* [Bug libstdc++/50915] gcc fails at run time due to undefined libintl_textdomain
  2011-10-29 19:45 [Bug libstdc++/50915] New: gcc fails at run time due to undefined libintl_textdomain titu_senapati at yahoo dot com
  2011-10-30  0:19 ` [Bug libstdc++/50915] " paolo.carlini at oracle dot com
@ 2011-10-30  9:15 ` rguenth at gcc dot gnu.org
  2011-10-31 14:07 ` titu_senapati at yahoo dot com
  2 siblings, 0 replies; 4+ messages in thread
From: rguenth at gcc dot gnu.org @ 2011-10-30  9:15 UTC (permalink / raw)
  To: gcc-bugs

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=50915

Richard Guenther <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|WAITING                     |RESOLVED
         Resolution|                            |INVALID

--- Comment #2 from Richard Guenther <rguenth at gcc dot gnu.org> 2011-10-30 09:14:47 UTC ---
You used --with-included-gettext, that's probably breaking things for you
(together with -nodefaultlibs I guess).

Anyway, 3.4.3 is no longer supported.


^ permalink raw reply	[flat|nested] 4+ messages in thread

* [Bug libstdc++/50915] gcc fails at run time due to undefined libintl_textdomain
  2011-10-29 19:45 [Bug libstdc++/50915] New: gcc fails at run time due to undefined libintl_textdomain titu_senapati at yahoo dot com
  2011-10-30  0:19 ` [Bug libstdc++/50915] " paolo.carlini at oracle dot com
  2011-10-30  9:15 ` rguenth at gcc dot gnu.org
@ 2011-10-31 14:07 ` titu_senapati at yahoo dot com
  2 siblings, 0 replies; 4+ messages in thread
From: titu_senapati at yahoo dot com @ 2011-10-31 14:07 UTC (permalink / raw)
  To: gcc-bugs

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=50915

--- Comment #3 from Titu <titu_senapati at yahoo dot com> 2011-10-31 14:07:19 UTC ---
(In reply to comment #2)
> You used --with-included-gettext, that's probably breaking things for you
> (together with -nodefaultlibs I guess).
> 
> Anyway, 3.4.3 is no longer supported.

Thanks for the response. I had used --with-included-gettext as I was getting
the libintl_textdomain problem. I will use the -nodefaultlibs option and try.
If that does not solves, I will move to higher version.

Thanks.


^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2011-10-31 14:07 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-10-29 19:45 [Bug libstdc++/50915] New: gcc fails at run time due to undefined libintl_textdomain titu_senapati at yahoo dot com
2011-10-30  0:19 ` [Bug libstdc++/50915] " paolo.carlini at oracle dot com
2011-10-30  9:15 ` rguenth at gcc dot gnu.org
2011-10-31 14:07 ` titu_senapati at yahoo dot com

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).