Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.debian.maint.python > #7251

Re: trying to solve the pytango FTBFS with gcc5

Path csiph.com!eternal-september.org!feeder.eternal-september.org!aioe.org!bofh.it!news.nic.it!robomod
From Dmitry Shachnev <mitya57@debian.org>
Newsgroups linux.debian.maint.python
Subject Re: trying to solve the pytango FTBFS with gcc5
Date Sun, 06 Sep 2015 18:10:01 +0200
Message-ID <q5KFX-3Dz-5@gated-at.bofh.it> (permalink)
References <q5Ehb-2V1-7@gated-at.bofh.it> <q5J7c-1k0-5@gated-at.bofh.it> <q5JgR-1vn-17@gated-at.bofh.it> <q5K3g-2EY-3@gated-at.bofh.it>
X-Original-To debian-python@lists.debian.org
X-Mailbox-Line From debian-python-request@lists.debian.org Sun Sep 6 16:04:05 2015
Old-Return-Path <mitya57@gmail.com>
X-Amavis-Spam-Status No, score=-12.27 tagged_above=-10000 required=5.3 tests=[BAYES_00=-2, FREEMAIL_ENVFROM_END_DIGIT=0.25, FREEMAIL_FORGED_FROMDOMAIN=0.198, FREEMAIL_FROM=0.001, HEADER_FROM_DIFFERENT_DOMAINS=0.001, LDO_WHITELIST=-5, PGPSIGNATURE=-5, RCVD_IN_DNSWL_LOW=-0.7, RCVD_IN_MSPIKE_H3=-0.01, RCVD_IN_MSPIKE_WL=-0.01] autolearn=ham autolearn_force=no
X-Policyd-Weight NOT_IN_SBL_XBL_SPAMHAUS=-1.5 NOT_IN_BL_NJABL=-1.5 CL_IP_EQ_HELO_IP=-2 (check from: .gmail. - helo: .mail-la0-f54.google. - helo-domain: .google.) FROM/MX_MATCHES_HELO(DOMAIN)=-2; rate: -7
X-Google-Dkim-Signature v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=content-type:mime-version:subject:from:to:in-reply-to:references :date:message-id; bh=Ne89J5rFV/AIp+U9uKl/Svna4Q6vak0Tjgd6aA5UuUQ=; b=ed2ieYxTaqqPLcJ1t+GMTyv8wL93B0WcgIvtsmqlFvYkXKj3jGhBrEjVoRqKg1dCPs BLky8GAuKImv/OwczTY1XhscmDatmxj9sADQQtHjVDo4EWXYu3sDOo5veB+NjVChlO/F 07T7KN4eLN4gg52nOSjwK24pUJigK/pkujpGLv2YPgg6vn3ArMYqvWtG5Hlj+MeDBHbY tdjds2wxdaCQ7Qz9c0tYHESASqLA29Z9tO8cObEpWyqpOi9/J2+zEbC9O3VYzcfnsn/B 4sWb33r5VhBG0ocedKwvf6nQ9/JYc+Y6dRBpVDbgDHiuxVsC1ETNIAuKA022sQ0Yhle+ Q7jg==
X-Received by 10.112.77.168 with SMTP id t8mr13237548lbw.70.1441555428926; Sun, 06 Sep 2015 09:03:48 -0700 (PDT)
Content-Type multipart/signed; micalg="pgp-sha1"; protocol="application/pgp-signature"; boundary="===============8431954306347309981=="
MIME-Version 1.0
X-Mailing-List <debian-python@lists.debian.org> archive/latest/12558
List-ID <debian-python.lists.debian.org>
List-URL <https://lists.debian.org/debian-python/>
List-Archive https://lists.debian.org/msgid-search/144155542719.3502.532677847039317531@mitya57.me
Approved robomod@news.nic.it
Lines 72
Organization linux.* mail to news gateway
Sender robomod@news.nic.it
X-Original-Date Sun, 06 Sep 2015 19:03:47 +0300
X-Original-Message-ID <144155542719.3502.532677847039317531@mitya57.me>
X-Original-References <A2A20EC3B8560D408356CAC2FC148E53B2F8062D@SUN-DAG3.synchrotron-soleil.fr> <1921765.67YpD7VbQY@kitterma-e6430> <55EC4F3C.6000004@debian.org> <144155328471.2505.17612112195669382799@mitya57.me>
Xref csiph.com linux.debian.maint.python:7251

Show key headers only | View raw


[Multipart message — attachments visible in raw view] - view raw

On Sun, 06 Sep 2015 18:28:04 +0300, Dmitry Shachnev wrote:
> The actual error is about another symbol:
>
>   _PyTango.so: undefined symbol: _ZN5Tango17ranges_type2constIjE3strE
>
> This symbol is old ABI, as opposed to _ZN5Tango17ranges_type2constIjE3strB5cxx11E
> (which *does* exist in libtango.so.8).
>
> Can it be a bug in GCC? I don't think it should produce such a broken _PyTango.so.

I have created a small test project (attached) that has a library exporting
"std::string Tango::ranges_type2const<short>::str" symbol and a test program
using it.

Interestingly, GCC uses the symbol _ZN5Tango17ranges_type2constIjE3strE
(*without* the B5cxx11 part) for both library and client.

So now I wonder why does libtango have B5cxx11 in it symbols and what is it
needed for.

--
Dmitry Shachnev

Back to linux.debian.maint.python | Previous | NextPrevious in thread | Next in thread | Find similar


Thread

trying to solve the pytango FTBFS with gcc5 PICCA Frederic-Emmanuel <frederic-emmanuel.picca@synchrotron-soleil.fr> - 2015-09-06 11:20 +0200
  Re: trying to solve the pytango FTBFS with gcc5 Scott Kitterman <debian@kitterman.com> - 2015-09-06 16:30 +0200
    Re: trying to solve the pytango FTBFS with gcc5 Matthias Klose <doko@debian.org> - 2015-09-06 16:40 +0200
      Re: trying to solve the pytango FTBFS with gcc5 Dmitry Shachnev <mitya57@debian.org> - 2015-09-06 17:30 +0200
        Re: trying to solve the pytango FTBFS with gcc5 Dmitry Shachnev <mitya57@debian.org> - 2015-09-06 18:10 +0200
          RE:trying to solve the pytango FTBFS with gcc5 PICCA Frederic-Emmanuel <frederic-emmanuel.picca@synchrotron-soleil.fr> - 2015-09-06 18:40 +0200
          RE:trying to solve the pytango FTBFS with gcc5 PICCA Frederic-Emmanuel <frederic-emmanuel.picca@synchrotron-soleil.fr> - 2015-09-06 18:40 +0200
        RE:trying to solve the pytango FTBFS with gcc5 PICCA Frederic-Emmanuel <frederic-emmanuel.picca@synchrotron-soleil.fr> - 2015-09-06 18:40 +0200

csiph-web