Subject: CGAL users discussion list
List archive
- From: lsteytler <>
- To:
- Subject: RE: [cgal-discuss] Compiling CGAL on the BG/Q with an IBM XL C/C++ toolchain
- Date: Mon, 29 Aug 2016 07:14:20 -0700 (PDT)
- Authentication-results: mail3-smtp-sop.national.inria.fr; spf=None ; spf=Neutral ; spf=None
- Ironport-phdr: 9a23:U31nmxC7vtITW/02ls3IUyQJP3N1i/DPJgcQr6AfoPdwSPXyrsbcNUDSrc9gkEXOFd2CrakV0qyK7+u+BCRAuc/H6yFaNsQUFlcssoY/p0QYGsmLCEn2frbBThcRO4B8bmJj5GyxKkNPGczzNBX4q3y26iMOSF2kbVImbtr8FoOatcmrzef6o8SVOFQRwmbhKu0vZFXu9EOK55FQ2dMjYo8KiTLx6kNSfOpXwW46bXmypD3bovmKwZh47i5LsOgg/cMTGY/zfqA/UKAKRG9+azN9t4XWswLeR16P+mcESTdR1QdSBwTI4hz8RZq3qjH9seRl3yicIYv9SrVzR27l8r1vHwK9iDsbLyV8q0jgvddhibpS5hOnvR12hYDOV5qEMeJ3SaLbc9QtTmVIWoMLeyBAGYihdJBBA78qIsNzhoazrA5erSaBKzunFbndjw1B22Xc5ak5z8MYXxuT+1UkNtwhh0n1iM+wO44xf93p1fDB9h7CVONq8yrd4ZnvYy4Ei6uLR5tXQITUnFchMEbitRCSsaXcMymWk8gAqk2pzcs9U+b1smQlrS0r8waU6J8diLnXgIlb0QXr7xsjka0yOMXjRlZXO+e8DLkKjC+AOI1deJoZZmp2oAofkLsgkJqFWgwVhplylCPZcOGNJoiU/gr4BqHWPC18iH9rdbSkilCq60+nxPX7V8+oll1Nq21byJ7RrHRayknT9tSfD6BUyXCq1j+Lklr/5uBfKl0vjuyKd89xmOB2kMZVt03JFCv73k7xiZiKe0A8/uG05tPBa7DinZKGKYt5lkf8LrxrweK6CO8iNU1Vc3Wd4vm2z7b5/Ef0BehkhOxzz4fSt5zXYJ5FoKm1DkoO/tp9tkfkUWzjiooTmnUKaQlpc0m9i4XZAUr8HN7RBMivmF2TzSli99XbDILbW5vhFyLlrLTzW7Rbu2pg8RUW8dtOwr5pUZcoZanfHxTd+tCNJQAcGCW7je2yWNVA6a0sUnPVMOqrOf7Im2eM5f4IGqeWMahMvB/zBM8Yxtr0yHAQunEgIbDw1KA8aUuoIt57A0yIRmvSp/1bFn0jmTtwSbn0hnrHdgUWZW6bZq4m5XQXBZuDP6XiG4ap2oWL3iGXRMxoXU4eO1K8D3HjOZ7RRNBcbj+ieP16jTJUTKbkedE9kAOF7QvHxb14a8396w87s63S6IQv9uHkyV8/oG9JCd+A2TSNU31shTFPACQn2bh250170FaKl6ZixOdJEMRaoPJPXAB9PpHVy6l2Csv5RxnaLeuOHV2pS9HjDTAqRc8q2PcPZVx8EpOslEPtxS2vVrsOi7GaGJg56OqIxGT8Ntp5xi/u1a0ljl8hQ9AJOGG70P0svzPPDpLExh3K352hcr4RiXbA
Marc,
I was able to compile the example, and I was hoping to test it before replying but the cluster is in maintenance and I will be able to run the example once that has been completed.
I will report the issue to IBM.
Thanks very much!
I was able to compile the example, and I was hoping to test it before replying but the cluster is in maintenance and I will be able to run the example once that has been completed.
I will report the issue to IBM.
Thanks very much!
Louis Steytler
From: Marc Glisse [via cgal-discuss] [ml-node+[hidden email]]
Sent: 26 August 2016 10:00 AM
To: Steytler, Louis Louw
Subject: Re: Compiling CGAL on the BG/Q with an IBM XL C/C++ toolchain
From: Marc Glisse [via cgal-discuss] [ml-node+[hidden email]]
Sent: 26 August 2016 10:00 AM
To: Steytler, Louis Louw
Subject: Re: Compiling CGAL on the BG/Q with an IBM XL C/C++ toolchain
On Fri, 26 Aug 2016, lsteytler wrote:
> I am trying to get CGAL 4.8.1 working on ALCF Mira with the IBM XL compilers
> and so far I have been able to build CGAL, but I am having trouble compiling
> one of the examples. I am able to compile some of the examples, but the one
> in
> ${CGAL_DIR)/Spatial_searching/examples/Spatial_searching/nearest_neighbor_searching.cpp
> is producing errors:
[...]
> "/home/steytler/GOMA-6.0-Mira/CGAL/include/CGAL/Euclidean_distance.h", line
> 58.52: 1540-1109 (S) The use of undefined class
> "CGAL::Search_traits_2<CGAL::Simple_cartesian<double> >" is not valid.
Looks like a bug in the compiler to me. If you split the problematic
line into
Euclidean_distance():traits() {}
Euclidean_distance(const SearchTraits& traits_):traits(traits_) {}
it compiles. If you get a chance, it would be nice to report this issue
to IBM.
--
Marc Glisse
--
You are currently subscribed to cgal-discuss.
To unsubscribe or access the archives, go to
https://sympa.inria.fr/sympa/info/cgal-discuss
> I am trying to get CGAL 4.8.1 working on ALCF Mira with the IBM XL compilers
> and so far I have been able to build CGAL, but I am having trouble compiling
> one of the examples. I am able to compile some of the examples, but the one
> in
> ${CGAL_DIR)/Spatial_searching/examples/Spatial_searching/nearest_neighbor_searching.cpp
> is producing errors:
[...]
> "/home/steytler/GOMA-6.0-Mira/CGAL/include/CGAL/Euclidean_distance.h", line
> 58.52: 1540-1109 (S) The use of undefined class
> "CGAL::Search_traits_2<CGAL::Simple_cartesian<double> >" is not valid.
Looks like a bug in the compiler to me. If you split the problematic
line into
Euclidean_distance():traits() {}
Euclidean_distance(const SearchTraits& traits_):traits(traits_) {}
it compiles. If you get a chance, it would be nice to report this issue
to IBM.
--
Marc Glisse
--
You are currently subscribed to cgal-discuss.
To unsubscribe or access the archives, go to
https://sympa.inria.fr/sympa/info/cgal-discuss
If you reply to this email, your message will be added to the discussion below:
http://cgal-discuss.949826.n4.nabble.com/Compiling-CGAL-on-the-BG-Q-with-an-IBM-XL-C-C-toolchain-tp4659363p4662175.html
View this message in context: RE: Compiling CGAL on the BG/Q with an IBM XL C/C++ toolchain
Sent from the cgal-discuss mailing list archive at Nabble.com.
- Re: [cgal-discuss] Compiling CGAL on the BG/Q with an IBM XL C/C++ toolchain, lsteytler, 08/26/2016
- Re: [cgal-discuss] Compiling CGAL on the BG/Q with an IBM XL C/C++ toolchain, Marc Glisse, 08/26/2016
- RE: [cgal-discuss] Compiling CGAL on the BG/Q with an IBM XL C/C++ toolchain, lsteytler, 08/29/2016
- Re: [cgal-discuss] Compiling CGAL on the BG/Q with an IBM XL C/C++ toolchain, Marc Glisse, 08/26/2016
Archive powered by MHonArc 2.6.18.