public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
From: "lts-rudolph at gmx dot de" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/53304] New: use of std::future results to relocation error with symbol _ZTINSt13__future_base19_Async_state_commonE
Date: Thu, 10 May 2012 09:12:00 -0000	[thread overview]
Message-ID: <bug-53304-4@http.gcc.gnu.org/bugzilla/> (raw)

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

             Bug #: 53304
           Summary: use of std::future results to relocation error with
                    symbol _ZTINSt13__future_base19_Async_state_commonE
    Classification: Unclassified
           Product: gcc
           Version: 4.7.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
        AssignedTo: unassigned@gcc.gnu.org
        ReportedBy: lts-rudolph@gmx.de


The example did not run if compiled with 4.7.0 but runs as expected with 4.6.3

Error:
krud@x:~/test/c++/c++11/thread_future_promise$ go
go: relocation error: go: symbol _ZTINSt13__future_base19_Async_state_commonE,
version GLIBCXX_3.4.17 not defined in file libstdc++.so.6 with link time
reference

comiled with

---- start makefile --------
all: go

#CXX=/opt/linux-gnu_4.6.3/bin/g++
CXX=/opt/linux-gnu_4.7.0/bin/g++
CXXFLAGS=-pthread -std=c++0x -O2 -g 
LDFLAGS=-pthread -g


go: main.o
    $(CXX) $< $(LDFLAGS) -o go

------- end Makefile --------

------- start main.cpp --------

#include <iostream>

#define _GLIBCXX_USE_NANOSLEEP
#include <thread>
#include <future>

using namespace std;

int main()
{
   future<int> retval= async( [] { this_thread::sleep_for( chrono::seconds(1));
return 42; } );

    cout << "Result " << retval.get() << endl;

    return 0;
}
------ end main.cpp -----------


             reply	other threads:[~2012-05-10  9:05 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-05-10  9:12 lts-rudolph at gmx dot de [this message]
2012-05-10 14:57 ` [Bug c++/53304] " redi at gcc dot gnu.org
2012-05-10 14:57 ` lts-rudolph at gmx dot de

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=bug-53304-4@http.gcc.gnu.org/bugzilla/ \
    --to=gcc-bugzilla@gcc.gnu.org \
    --cc=gcc-bugs@gcc.gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).