public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug c++/53304] New: use of std::future results to relocation error with symbol _ZTINSt13__future_base19_Async_state_commonE
@ 2012-05-10  9:12 lts-rudolph at gmx dot de
  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
  0 siblings, 2 replies; 3+ messages in thread
From: lts-rudolph at gmx dot de @ 2012-05-10  9:12 UTC (permalink / raw)
  To: gcc-bugs

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 -----------


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

end of thread, other threads:[~2012-05-10 14:57 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-05-10  9:12 [Bug c++/53304] New: use of std::future results to relocation error with symbol _ZTINSt13__future_base19_Async_state_commonE lts-rudolph at gmx dot de
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

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).