Boost-users
Threads by month
- ----- 2025 -----
- July
- June
- May
- April
- March
- February
- January
- ----- 2024 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2023 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2022 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2021 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2020 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2019 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2018 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2017 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2016 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2015 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2014 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2013 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2012 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2011 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2010 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2009 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2008 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2007 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2006 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2005 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2004 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2003 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2002 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2001 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2000 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 1999 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 1998 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 1997 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- 28314 discussions
I'm trying to use enable_shared_from_this with my classes that have an
inheritance structure and a virtual function.
I'd like to get a shared pointer to the descendant class B. I get a
compile error when I try to dynamic cast the shared ptr of type A to a
shared_ptr of type B. See the attached sample.
--
sashan
http://www.cs.auckland.ac.nz/~sgov008/
#include <iostream>
#include <boost/enable_shared_from_this.hpp>
using namespace std;
using namespace boost;
class A :
public enable_shared_from_this<A>
{
public:
A(){ cout << "A" << endl; }
virtual void f() =0;
};
class B :
public A
{
public:
B() { cout << "B" << endl;}
virtual void f()
{
shared_ptr<A> pA(enable_shared_from_this<A>::shared_from_this());
shared_ptr<B> pB1(dynamic_pointer_cast < shared_ptr<B> >(pA));
}
};
void main()
{
B b;
b.f();
}
1
1
How do i get theese three things to work together nicely? I cannot find any
help for this (and i know it had to be asked before).
//#include <iostream>
#include <boost\spirit.hpp>
int main ()
{
boost::spirit::rule<> p = *(boost::spirit::real_p);
return 0;
}
I get linker errors if i uncomment the iostream include
STL Port is built to use its own streams. Works fine in other examples not
using boost.
I looked through the boost user config but didnt see anything relavant to
throw boost a bone that im using STL Port.
Any help would greatly be appreciated!
Ray Hilton
3
6
Hi,
I would like to use Boost on my Powerbook G4 running Jaguar (Mac Os X
10.2.8).
I have tried to make as much sense as possible from Boost documentation
concerning bjam and tried to install Boost yet I suspect it failed, as
I see no newly created target (library, object file, etc..).
If anyone uses Boost running on Mac Os X, I would be grateful to learn
of how they installed Boost and how they currently use Boost in the
sense of "Best practices". I'm fluent in c++ and I look forward to
being able to write my c++ code invoking Boost objects/functions.
Any help appreciated.
thanks,
Avram
More detailed info...
Using my Powerbook G4 running Mac Os X 10.2.8 with gcc 3.3 and I did
the following:
-downloaded boost-1.30.2.tar.gz
-downloaded boost-jam-3.1.7.tgz
-created a directory in ~/Library called Boost and moved the two
downloaded files there.
-expanded downloaded boost-jam-3.1.7.tgz and ran build.sh
-opened my ~/.cshrc file and set my path to include
~/Library/Boost/boost-jam-3.1.7/bin.macosxppc
-expanded boost-1.30.2.tar.gz and went to directory with jam files
-set up my environment variables relating to Python, i.e.
setenv PYTHON_ROOT /sw/bin/python
setenv PYTHON_LIB_PATH /sw/lib/python2.2/config
setenv PYTHON_INCLUDES /sw/include/python2.2
[aa:~/Library/Boost/boost-1.30.2] aelony% which python
/sw/bin/python
[aa:~/Library/Boost/boost-1.30.2] aelony% python -V
Python 2.2.2
-ran bjam
[aa:~] aelony% which bjam
/Users/aelony/Library/Boost/boost-jam-3.1.7/bin.macosxppc/bjam
[aa:~] aelony% cd /Users/aelony/Library/Boost/boost-1.30.2
[aa:~/Library/Boost/boost-1.30.2] aelony% ls
Jamfile* boost/ doc/ more/
tools/
Jamfile.v2* boost-build.jam* google_logo_40wht.gif* people/
Jamrules* boost.css* index.htm* project-root.jam*
README* c++boost.gif* libs/ status/
Here is what it output, with modest indications of failure....
[aa:~/Library/Boost/boost-1.30.2] aelony% bjam
...patience...
...found 3066 targets...
...updating 138 targets...
MkDir1 libs/python/build/bin-stage
MkDir1 libs/python/build/bin
MkDir1 libs/python/build/bin/libboost_python.dylib
MkDir1 libs/python/build/bin/libboost_python.dylib/gcc
MkDir1 libs/python/build/bin/libboost_python.dylib/gcc/debug
MkDir1
libs/python/build/bin/libboost_python.dylib/gcc/debug/runtime-link-
dynamic
MkDir1
libs/python/build/bin/libboost_python.dylib/gcc/debug/runtime-link-
dynamic/shared-linkable-true
gcc-C++-action
libs/python/build/bin/libboost_python.dylib/gcc/debug/runtime-link-
dynamic/shared-linkable-true/numeric.o
In file included from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_arithmetic.hpp:14,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_scalar.hpp:13,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_pod.hpp:15,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
has_trivial_assign.hpp:15,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
object_traits.hpp:18,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/
to_python_indirect.hpp:9,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/converter/
arg_to_python.hpp:11,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/call.hpp:14,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/
object_core.hpp:14,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/object.hpp:9,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/tuple.hpp:9,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/numeric.hpp:9,
from libs/python/src/numeric.cpp:7:
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: use
of `long double' type; its size may change in a future release
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: (Long
double usage is reported only once for each file.
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: To
disable this warning, use -Wno-long-double.)
gcc-C++-action
libs/python/build/bin/libboost_python.dylib/gcc/debug/runtime-link-
dynamic/shared-linkable-true/list.o
In file included from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_arithmetic.hpp:14,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_scalar.hpp:13,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_pod.hpp:15,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
has_trivial_assign.hpp:15,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
object_traits.hpp:18,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/
to_python_indirect.hpp:9,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/converter/
arg_to_python.hpp:11,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/call.hpp:14,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/
object_core.hpp:14,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/object.hpp:9,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/list.hpp:9,
from libs/python/src/list.cpp:6:
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: use
of `long double' type; its size may change in a future release
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: (Long
double usage is reported only once for each file.
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: To
disable this warning, use -Wno-long-double.)
gcc-C++-action
libs/python/build/bin/libboost_python.dylib/gcc/debug/runtime-link-
dynamic/shared-linkable-true/long.o
In file included from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_arithmetic.hpp:14,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_scalar.hpp:13,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_pod.hpp:15,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
has_trivial_assign.hpp:15,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
object_traits.hpp:18,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/
to_python_indirect.hpp:9,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/converter/
arg_to_python.hpp:11,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/call.hpp:14,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/
object_core.hpp:14,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/object.hpp:9,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/long.hpp:9,
from libs/python/src/long.cpp:6:
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: use
of `long double' type; its size may change in a future release
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: (Long
double usage is reported only once for each file.
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: To
disable this warning, use -Wno-long-double.)
gcc-C++-action
libs/python/build/bin/libboost_python.dylib/gcc/debug/runtime-link-
dynamic/shared-linkable-true/dict.o
In file included from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_arithmetic.hpp:14,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_scalar.hpp:13,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_pod.hpp:15,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
has_trivial_assign.hpp:15,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
object_traits.hpp:18,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/
to_python_indirect.hpp:9,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/converter/
arg_to_python.hpp:11,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/call.hpp:14,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/
object_core.hpp:14,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/object.hpp:9,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/dict.hpp:9,
from libs/python/src/dict.cpp:1:
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: use
of `long double' type; its size may change in a future release
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: (Long
double usage is reported only once for each file.
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: To
disable this warning, use -Wno-long-double.)
gcc-C++-action
libs/python/build/bin/libboost_python.dylib/gcc/debug/runtime-link-
dynamic/shared-linkable-true/tuple.o
In file included from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_arithmetic.hpp:14,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_scalar.hpp:13,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_pod.hpp:15,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
has_trivial_assign.hpp:15,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
object_traits.hpp:18,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/
to_python_indirect.hpp:9,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/converter/
arg_to_python.hpp:11,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/call.hpp:14,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/
object_core.hpp:14,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/object.hpp:9,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/tuple.hpp:9,
from libs/python/src/tuple.cpp:1:
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: use
of `long double' type; its size may change in a future release
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: (Long
double usage is reported only once for each file.
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: To
disable this warning, use -Wno-long-double.)
gcc-C++-action
libs/python/build/bin/libboost_python.dylib/gcc/debug/runtime-link-
dynamic/shared-linkable-true/str.o
In file included from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_arithmetic.hpp:14,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_scalar.hpp:13,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_pod.hpp:15,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
has_trivial_assign.hpp:15,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
object_traits.hpp:18,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/
to_python_indirect.hpp:9,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/converter/
arg_to_python.hpp:11,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/call.hpp:14,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/
object_core.hpp:14,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/object.hpp:9,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/str.hpp:9,
from libs/python/src/str.cpp:1:
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: use
of `long double' type; its size may change in a future release
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: (Long
double usage is reported only once for each file.
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: To
disable this warning, use -Wno-long-double.)
gcc-C++-action
libs/python/build/bin/libboost_python.dylib/gcc/debug/runtime-link-
dynamic/shared-linkable-true/aix_init_module.o
gcc-C++-action
libs/python/build/bin/libboost_python.dylib/gcc/debug/runtime-link-
dynamic/shared-linkable-true/from_python.o
In file included from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/converter/
rvalue_from_python_data.hpp:10,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/converter/
from_python.hpp:11,
from libs/python/src/converter/from_python.cpp:7:
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/detail/
referent_storage.hpp:32: warning: use
of `long double' type; its size may change in a future release
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/detail/
referent_storage.hpp:32: warning: (Long
double usage is reported only once for each file.
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/detail/
referent_storage.hpp:32: warning: To
disable this warning, use -Wno-long-double.)
gcc-C++-action
libs/python/build/bin/libboost_python.dylib/gcc/debug/runtime-link-
dynamic/shared-linkable-true/registry.o
In file included from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/converter/
rvalue_from_python_data.hpp:10,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/converter/
registry.hpp:12,
from libs/python/src/converter/registry.cpp:6:
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/detail/
referent_storage.hpp:32: warning: use
of `long double' type; its size may change in a future release
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/detail/
referent_storage.hpp:32: warning: (Long
double usage is reported only once for each file.
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/detail/
referent_storage.hpp:32: warning: To
disable this warning, use -Wno-long-double.)
gcc-C++-action
libs/python/build/bin/libboost_python.dylib/gcc/debug/runtime-link-
dynamic/shared-linkable-true/type_id.o
In file included from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_arithmetic.hpp:14,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_scalar.hpp:13,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_class.hpp:21,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/detail/
indirect_traits.hpp:11,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/detail/
decorated_type_id.hpp:10,
from libs/python/src/converter/type_id.cpp:8:
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: use
of `long double' type; its size may change in a future release
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: (Long
double usage is reported only once for each file.
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: To
disable this warning, use -Wno-long-double.)
gcc-C++-action
libs/python/build/bin/libboost_python.dylib/gcc/debug/runtime-link-
dynamic/shared-linkable-true/enum.o
In file included from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_arithmetic.hpp:14,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_scalar.hpp:13,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_pod.hpp:15,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
has_trivial_assign.hpp:15,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
object_traits.hpp:18,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/
to_python_indirect.hpp:9,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/converter/
arg_to_python.hpp:11,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/call.hpp:14,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/
object_core.hpp:14,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/object/
enum_base.hpp:9,
from libs/python/src/object/enum.cpp:7:
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: use
of `long double' type; its size may change in a future release
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: (Long
double usage is reported only once for each file.
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: To
disable this warning, use -Wno-long-double.)
gcc-C++-action
libs/python/build/bin/libboost_python.dylib/gcc/debug/runtime-link-
dynamic/shared-linkable-true/class.o
In file included from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_arithmetic.hpp:14,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_scalar.hpp:13,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_pod.hpp:15,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
has_trivial_assign.hpp:15,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
object_traits.hpp:18,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/
to_python_indirect.hpp:9,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/converter/
arg_to_python.hpp:11,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/call.hpp:14,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/
object_core.hpp:14,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/object/
class.hpp:13,
from libs/python/src/object/class.cpp:6:
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: use
of `long double' type; its size may change in a future release
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: (Long
double usage is reported only once for each file.
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: To
disable this warning, use -Wno-long-double.)
gcc-C++-action
libs/python/build/bin/libboost_python.dylib/gcc/debug/runtime-link-
dynamic/shared-linkable-true/function.o
In file included from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_arithmetic.hpp:14,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
arithmetic_traits.hpp:15,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/function/
function_base.hpp:25,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/function/detail/
prologue.hpp:22,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/function/
function_template.hpp:18,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/function/detail/
maybe_include.hpp:19,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/function/
function0.hpp:17,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/errors.hpp:14,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/handle.hpp:11,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/args_fwd.hpp:9,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/object/
function.hpp:10,
from libs/python/src/object/function.cpp:7:
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: use
of `long double' type; its size may change in a future release
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: (Long
double usage is reported only once for each file.
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: To
disable this warning, use -Wno-long-double.)
gcc-C++-action
libs/python/build/bin/libboost_python.dylib/gcc/debug/runtime-link-
dynamic/shared-linkable-true/inheritance.o
In file included from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_arithmetic.hpp:14,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_scalar.hpp:13,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_pod.hpp:15,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
has_trivial_assign.hpp:15,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
object_traits.hpp:18,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/object/
inheritance.hpp:12,
from libs/python/src/object/inheritance.cpp:6:
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: use
of `long double' type; its size may change in a future release
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: (Long
double usage is reported only once for each file.
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: To
disable this warning, use -Wno-long-double.)
gcc-C++-action
libs/python/build/bin/libboost_python.dylib/gcc/debug/runtime-link-
dynamic/shared-linkable-true/life_support.o
gcc-C++-action
libs/python/build/bin/libboost_python.dylib/gcc/debug/runtime-link-
dynamic/shared-linkable-true/pickle_support.o
In file included from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/converter/
rvalue_from_python_data.hpp:10,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/converter/
registry.hpp:12,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/
to_python_value.hpp:12,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/
default_call_policies.hpp:10,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/
make_function.hpp:9,
from libs/python/src/object/pickle_support.cpp:7:
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/detail/
referent_storage.hpp:32: warning: use
of `long double' type; its size may change in a future release
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/detail/
referent_storage.hpp:32: warning: (Long
double usage is reported only once for each file.
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/detail/
referent_storage.hpp:32: warning: To
disable this warning, use -Wno-long-double.)
gcc-C++-action
libs/python/build/bin/libboost_python.dylib/gcc/debug/runtime-link-
dynamic/shared-linkable-true/errors.o
In file included from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_arithmetic.hpp:14,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
arithmetic_traits.hpp:15,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/function/
function_base.hpp:25,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/function/detail/
prologue.hpp:22,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/function/
function_template.hpp:18,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/function/detail/
maybe_include.hpp:19,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/function/
function0.hpp:17,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/errors.hpp:14,
from libs/python/src/errors.cpp:11:
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: use
of `long double' type; its size may change in a future release
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: (Long
double usage is reported only once for each file.
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: To
disable this warning, use -Wno-long-double.)
In file included from libs/python/src/errors.cpp:12:
/Users/aelony/Library/Boost/boost-1.30.2/boost/cast.hpp:178:23:
warning: integer constant is so large that it is unsigned
In file included from libs/python/src/errors.cpp:12:
/Users/aelony/Library/Boost/boost-1.30.2/boost/cast.hpp:178: warning:
this
decimal constant is unsigned only in ISO C90
gcc-C++-action
libs/python/build/bin/libboost_python.dylib/gcc/debug/runtime-link-
dynamic/shared-linkable-true/module.o
In file included from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_arithmetic.hpp:14,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_scalar.hpp:13,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_pod.hpp:15,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
has_trivial_assign.hpp:15,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
object_traits.hpp:18,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/
to_python_indirect.hpp:9,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/converter/
arg_to_python.hpp:11,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/call.hpp:14,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/
object_core.hpp:14,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/scope.hpp:9,
from libs/python/src/module.cpp:9:
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: use
of `long double' type; its size may change in a future release
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: (Long
double usage is reported only once for each file.
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: To
disable this warning, use -Wno-long-double.)
gcc-C++-action
libs/python/build/bin/libboost_python.dylib/gcc/debug/runtime-link-
dynamic/shared-linkable-true/builtin_converters.o
In file included from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_arithmetic.hpp:14,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
arithmetic_traits.hpp:15,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/function/
function_base.hpp:25,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/function/detail/
prologue.hpp:22,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/function/
function_template.hpp:18,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/function/detail/
maybe_include.hpp:19,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/function/
function0.hpp:17,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/errors.hpp:14,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/handle.hpp:11,
from
libs/python/src/converter/builtin_converters.cpp:7:
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: use
of `long double' type; its size may change in a future release
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: (Long
double usage is reported only once for each file.
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: To
disable this warning, use -Wno-long-double.)
In file included from
libs/python/src/converter/builtin_converters.cpp:21:
/Users/aelony/Library/Boost/boost-1.30.2/boost/cast.hpp:178:23:
warning: integer constant is so large that it is unsigned
In file included from
libs/python/src/converter/builtin_converters.cpp:21:
/Users/aelony/Library/Boost/boost-1.30.2/boost/cast.hpp:178: warning:
this
decimal constant is unsigned only in ISO C90
gcc-C++-action
libs/python/build/bin/libboost_python.dylib/gcc/debug/runtime-link-
dynamic/shared-linkable-true/arg_to_python_base.o
In file included from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_arithmetic.hpp:14,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
arithmetic_traits.hpp:15,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/function/
function_base.hpp:25,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/function/detail/
prologue.hpp:22,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/function/
function_template.hpp:18,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/function/detail/
maybe_include.hpp:19,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/function/
function0.hpp:17,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/errors.hpp:14,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/handle.hpp:11,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/converter/
arg_to_python_base.hpp:9,
from
libs/python/src/converter/arg_to_python_base.cpp:7:
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: use
of `long double' type; its size may change in a future release
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: (Long
double usage is reported only once for each file.
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: To
disable this warning, use -Wno-long-double.)
gcc-C++-action
libs/python/build/bin/libboost_python.dylib/gcc/debug/runtime-link-
dynamic/shared-linkable-true/iterator.o
In file included from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_arithmetic.hpp:14,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
arithmetic_traits.hpp:15,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/function/
function_base.hpp:25,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/function/detail/
prologue.hpp:22,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/function/
function_template.hpp:18,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/function/detail/
maybe_include.hpp:29,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/function/
function2.hpp:17,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/object/
function_object.hpp:9,
from libs/python/src/object/iterator.cpp:8:
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: use
of `long double' type; its size may change in a future release
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: (Long
double usage is reported only once for each file.
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: To
disable this warning, use -Wno-long-double.)
gcc-C++-action
libs/python/build/bin/libboost_python.dylib/gcc/debug/runtime-link-
dynamic/shared-linkable-true/object_protocol.o
In file included from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_arithmetic.hpp:14,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_scalar.hpp:13,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_pod.hpp:15,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
has_trivial_assign.hpp:15,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
object_traits.hpp:18,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/
to_python_indirect.hpp:9,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/converter/
arg_to_python.hpp:11,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/call.hpp:14,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/
object_core.hpp:14,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/
object_protocol.hpp:12,
from libs/python/src/object_protocol.cpp:7:
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: use
of `long double' type; its size may change in a future release
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: (Long
double usage is reported only once for each file.
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: To
disable this warning, use -Wno-long-double.)
gcc-C++-action
libs/python/build/bin/libboost_python.dylib/gcc/debug/runtime-link-
dynamic/shared-linkable-true/object_operators.o
In file included from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_arithmetic.hpp:14,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_scalar.hpp:13,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_pod.hpp:15,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
has_trivial_assign.hpp:15,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
object_traits.hpp:18,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/
to_python_indirect.hpp:9,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/converter/
arg_to_python.hpp:11,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/call.hpp:14,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/
object_core.hpp:14,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/
object_operators.hpp:9,
from libs/python/src/object_operators.cpp:7:
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: use
of `long double' type; its size may change in a future release
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: (Long
double usage is reported only once for each file.
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: To
disable this warning, use -Wno-long-double.)
gcc-Link-action
libs/python/build/bin/libboost_python.dylib/gcc/debug/runtime-link-
dynamic/shared-linkable-true/libboost_python_debug.dylib
c++: unrecognized option `-shared'
ld: Undefined symbols:
_main
_PyCallable_Check
_PyErr_Clear
_PyErr_Format
_PyEval_CallFunction
_PyExc_ImportError
_PyImport_Import
_PyInt_FromLong
_PyObject_GetAttrString
_PyObject_IsInstance
_PyString_FromStringAndSize
_PyType_IsSubtype
_PyType_Type
_PyErr_Occurred
_PyInt_AsLong
_PyList_Append
_PyList_Insert
_PyList_New
_PyList_Reverse
_PyList_Sort
_PyList_Type
_PyObject_CallFunction
_PyLong_Type
_PyDict_Clear
_PyDict_Copy
_PyDict_GetItem
_PyDict_Items
_PyDict_Keys
_PyDict_New
_PyDict_Type
_PyDict_Update
_PyDict_Values
__Py_NoneStruct
_PyTuple_New
_PyTuple_Type
_PyObject_CallMethod
_PyString_FromString
_PyString_Type
_PyErr_SetObject
_PyExc_ReferenceError
_PyExc_TypeError
_PyString_FromFormat
_PyInt_Type
_PyLong_FromUnsignedLong
_PyObject_IsTrue
_PyObject_RichCompareBool
_PyObject_Size
_PyString_AsString
_PyType_Ready
_PyBaseObject_Type
_PyCFunction_New
_PyErr_SetString
_PyExc_RuntimeError
_PyMem_Free
_PyMem_Malloc
_PyModule_Type
_PyObject_ClearWeakRefs
_PyObject_SetAttrString
_PyProperty_Type
_PyStaticMethod_New
_PyType_GenericAlloc
_PyClass_Type
_PyDict_Size
_PyErr_BadArgument
_PyMethod_New
_PyObject_GetItem
_PyObject_SetAttr
_PyStaticMethod_Type
_PyString_InternFromString
_PyTuple_Size
__Py_NotImplementedStruct
_PyWeakref_NewRef
__PyObject_New
_PyComplex_Type
_PyErr_NoMemory
_PyExc_OverflowError
_Py_InitModule4
_PyComplex_ImagAsDouble
_PyComplex_RealAsDouble
_PyFloat_Type
_PyLong_AsLongLong
_PyLong_AsUnsignedLong
_PyLong_AsUnsignedLongLong
_PyString_Size
_PyExc_StopIteration
_PyErr_ExceptionMatches
_PyExc_AttributeError
_PyObject_DelItem
_PyObject_GetAttr
_PyObject_SetItem
_PySequence_DelSlice
_PySequence_GetSlice
_PySequence_SetSlice
_PySlice_New
__PyEval_SliceIndex
_PyNumber_Add
_PyNumber_And
_PyNumber_Divide
_PyNumber_InPlaceAdd
_PyNumber_InPlaceAnd
_PyNumber_InPlaceDivide
_PyNumber_InPlaceLshift
_PyNumber_InPlaceMultiply
_PyNumber_InPlaceOr
_PyNumber_InPlaceRemainder
_PyNumber_InPlaceRshift
_PyNumber_InPlaceSubtract
_PyNumber_InPlaceXor
_PyNumber_Lshift
_PyNumber_Multiply
_PyNumber_Or
_PyNumber_Remainder
_PyNumber_Rshift
_PyNumber_Subtract
_PyNumber_Xor
DYLD_LIBRARY_PATH=/sw/lib/python2.2/config
export DYLD_LIBRARY_PATH
c++ -g -fPIC -shared -o
"libs/python/build/bin/libboost_python.dylib/gcc/debug/runtime-link-
dynamic/shared-linkable-true/libboost_python_debug.dylib"
-L"/sw/lib/python2.2/config"
"libs/python/build/bin/libboost_python.dylib/gcc/debug/runtime-link-
dynamic/shared-linkable-true/numeric.o"
"libs/python/build/bin/libboost_python.dylib/gcc/debug/runtime-link-
dynamic/shared-linkable-true/list.o"
"libs/python/build/bin/libboost_python.dylib/gcc/debug/runtime-link-
dynamic/shared-linkable-true/long.o"
"libs/python/build/bin/libboost_python.dylib/gcc/debug/runtime-link-
dynamic/shared-linkable-true/dict.o"
"libs/python/build/bin/libboost_python.dylib/gcc/debug/runtime-link-
dynamic/shared-linkable-true/tuple.o"
"libs/python/build/bin/libboost_python.dylib/gcc/debug/runtime-link-
dynamic/shared-linkable-true/str.o"
"libs/python/build/bin/libboost_python.dylib/gcc/debug/runtime-link-
dynamic/shared-linkable-true/aix_init_module.o"
"libs/python/build/bin/libboost_python.dylib/gcc/debug/runtime-link-
dynamic/shared-linkable-true/from_python.o"
"libs/python/build/bin/libboost_python.dylib/gcc/debug/runtime-link-
dynamic/shared-linkable-true/registry.o"
"libs/python/build/bin/libboost_python.dylib/gcc/debug/runtime-link-
dynamic/shared-linkable-true/type_id.o"
"libs/python/build/bin/libboost_python.dylib/gcc/debug/runtime-link-
dynamic/shared-linkable-true/enum.o"
"libs/python/build/bin/libboost_python.dylib/gcc/debug/runtime-link-
dynamic/shared-linkable-true/class.o"
"libs/python/build/bin/libboost_python.dylib/gcc/debug/runtime-link-
dynamic/shared-linkable-true/function.o"
"libs/python/build/bin/libboost_python.dylib/gcc/debug/runtime-link-
dynamic/shared-linkable-true/inheritance.o"
"libs/python/build/bin/libboost_python.dylib/gcc/debug/runtime-link-
dynamic/shared-linkable-true/life_support.o"
"libs/python/build/bin/libboost_python.dylib/gcc/debug/runtime-link-
dynamic/shared-linkable-true/pickle_support.o"
"libs/python/build/bin/libboost_python.dylib/gcc/debug/runtime-link-
dynamic/shared-linkable-true/errors.o"
"libs/python/build/bin/libboost_python.dylib/gcc/debug/runtime-link-
dynamic/shared-linkable-true/module.o"
"libs/python/build/bin/libboost_python.dylib/gcc/debug/runtime-link-
dynamic/shared-linkable-true/builtin_converters.o"
"libs/python/build/bin/libboost_python.dylib/gcc/debug/runtime-link-
dynamic/shared-linkable-true/arg_to_python_base.o"
"libs/python/build/bin/libboost_python.dylib/gcc/debug/runtime-link-
dynamic/shared-linkable-true/iterator.o"
"libs/python/build/bin/libboost_python.dylib/gcc/debug/runtime-link-
dynamic/shared-linkable-true/object_protocol.o"
"libs/python/build/bin/libboost_python.dylib/gcc/debug/runtime-link-
dynamic/shared-linkable-true/object_operators.o"
...failed gcc-Link-action
libs/python/build/bin/libboost_python.dylib/gcc/debug/runtime-link-
dynamic/shared-linkable-true/libboost_python_debug.dylib...
...skipped <!libs!python!build!bin-stage>libboost_python_debug.dylib
for lack of
<libs!python!build/libboost_python.dylib/gcc/debug/runtime-link-
dynamic/shared-linkable-true>libboost_python_debug.dylib...
MkDir1 libs/python/build/bin/libboost_python.dylib/gcc/release
MkDir1
libs/python/build/bin/libboost_python.dylib/gcc/release/runtime-link-
dynamic
MkDir1
libs/python/build/bin/libboost_python.dylib/gcc/release/runtime-link-
dynamic/shared-linkable-true
gcc-C++-action
libs/python/build/bin/libboost_python.dylib/gcc/release/runtime-link-
dynamic/shared-linkable-true/numeric.o
In file included from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_arithmetic.hpp:14,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_scalar.hpp:13,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_pod.hpp:15,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
has_trivial_assign.hpp:15,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
object_traits.hpp:18,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/
to_python_indirect.hpp:9,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/converter/
arg_to_python.hpp:11,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/call.hpp:14,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/
object_core.hpp:14,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/object.hpp:9,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/tuple.hpp:9,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/numeric.hpp:9,
from libs/python/src/numeric.cpp:7:
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: use
of `long double' type; its size may change in a future release
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: (Long
double usage is reported only once for each file.
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: To
disable this warning, use -Wno-long-double.)
gcc-C++-action
libs/python/build/bin/libboost_python.dylib/gcc/release/runtime-link-
dynamic/shared-linkable-true/list.o
In file included from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_arithmetic.hpp:14,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_scalar.hpp:13,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_pod.hpp:15,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
has_trivial_assign.hpp:15,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
object_traits.hpp:18,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/
to_python_indirect.hpp:9,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/converter/
arg_to_python.hpp:11,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/call.hpp:14,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/
object_core.hpp:14,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/object.hpp:9,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/list.hpp:9,
from libs/python/src/list.cpp:6:
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: use
of `long double' type; its size may change in a future release
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: (Long
double usage is reported only once for each file.
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: To
disable this warning, use -Wno-long-double.)
gcc-C++-action
libs/python/build/bin/libboost_python.dylib/gcc/release/runtime-link-
dynamic/shared-linkable-true/long.o
In file included from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_arithmetic.hpp:14,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_scalar.hpp:13,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_pod.hpp:15,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
has_trivial_assign.hpp:15,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
object_traits.hpp:18,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/
to_python_indirect.hpp:9,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/converter/
arg_to_python.hpp:11,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/call.hpp:14,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/
object_core.hpp:14,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/object.hpp:9,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/long.hpp:9,
from libs/python/src/long.cpp:6:
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: use
of `long double' type; its size may change in a future release
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: (Long
double usage is reported only once for each file.
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: To
disable this warning, use -Wno-long-double.)
gcc-C++-action
libs/python/build/bin/libboost_python.dylib/gcc/release/runtime-link-
dynamic/shared-linkable-true/dict.o
In file included from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_arithmetic.hpp:14,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_scalar.hpp:13,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_pod.hpp:15,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
has_trivial_assign.hpp:15,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
object_traits.hpp:18,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/
to_python_indirect.hpp:9,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/converter/
arg_to_python.hpp:11,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/call.hpp:14,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/
object_core.hpp:14,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/object.hpp:9,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/dict.hpp:9,
from libs/python/src/dict.cpp:1:
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: use
of `long double' type; its size may change in a future release
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: (Long
double usage is reported only once for each file.
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: To
disable this warning, use -Wno-long-double.)
gcc-C++-action
libs/python/build/bin/libboost_python.dylib/gcc/release/runtime-link-
dynamic/shared-linkable-true/tuple.o
In file included from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_arithmetic.hpp:14,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_scalar.hpp:13,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_pod.hpp:15,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
has_trivial_assign.hpp:15,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
object_traits.hpp:18,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/
to_python_indirect.hpp:9,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/converter/
arg_to_python.hpp:11,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/call.hpp:14,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/
object_core.hpp:14,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/object.hpp:9,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/tuple.hpp:9,
from libs/python/src/tuple.cpp:1:
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: use
of `long double' type; its size may change in a future release
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: (Long
double usage is reported only once for each file.
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: To
disable this warning, use -Wno-long-double.)
gcc-C++-action
libs/python/build/bin/libboost_python.dylib/gcc/release/runtime-link-
dynamic/shared-linkable-true/str.o
In file included from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_arithmetic.hpp:14,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_scalar.hpp:13,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_pod.hpp:15,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
has_trivial_assign.hpp:15,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
object_traits.hpp:18,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/
to_python_indirect.hpp:9,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/converter/
arg_to_python.hpp:11,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/call.hpp:14,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/
object_core.hpp:14,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/object.hpp:9,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/str.hpp:9,
from libs/python/src/str.cpp:1:
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: use
of `long double' type; its size may change in a future release
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: (Long
double usage is reported only once for each file.
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: To
disable this warning, use -Wno-long-double.)
gcc-C++-action
libs/python/build/bin/libboost_python.dylib/gcc/release/runtime-link-
dynamic/shared-linkable-true/aix_init_module.o
gcc-C++-action
libs/python/build/bin/libboost_python.dylib/gcc/release/runtime-link-
dynamic/shared-linkable-true/from_python.o
In file included from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/converter/
rvalue_from_python_data.hpp:10,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/converter/
from_python.hpp:11,
from libs/python/src/converter/from_python.cpp:7:
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/detail/
referent_storage.hpp:32: warning: use
of `long double' type; its size may change in a future release
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/detail/
referent_storage.hpp:32: warning: (Long
double usage is reported only once for each file.
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/detail/
referent_storage.hpp:32: warning: To
disable this warning, use -Wno-long-double.)
gcc-C++-action
libs/python/build/bin/libboost_python.dylib/gcc/release/runtime-link-
dynamic/shared-linkable-true/registry.o
In file included from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/converter/
rvalue_from_python_data.hpp:10,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/converter/
registry.hpp:12,
from libs/python/src/converter/registry.cpp:6:
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/detail/
referent_storage.hpp:32: warning: use
of `long double' type; its size may change in a future release
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/detail/
referent_storage.hpp:32: warning: (Long
double usage is reported only once for each file.
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/detail/
referent_storage.hpp:32: warning: To
disable this warning, use -Wno-long-double.)
gcc-C++-action
libs/python/build/bin/libboost_python.dylib/gcc/release/runtime-link-
dynamic/shared-linkable-true/type_id.o
In file included from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_arithmetic.hpp:14,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_scalar.hpp:13,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_class.hpp:21,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/detail/
indirect_traits.hpp:11,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/detail/
decorated_type_id.hpp:10,
from libs/python/src/converter/type_id.cpp:8:
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: use
of `long double' type; its size may change in a future release
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: (Long
double usage is reported only once for each file.
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: To
disable this warning, use -Wno-long-double.)
gcc-C++-action
libs/python/build/bin/libboost_python.dylib/gcc/release/runtime-link-
dynamic/shared-linkable-true/enum.o
In file included from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_arithmetic.hpp:14,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_scalar.hpp:13,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_pod.hpp:15,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
has_trivial_assign.hpp:15,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
object_traits.hpp:18,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/
to_python_indirect.hpp:9,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/converter/
arg_to_python.hpp:11,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/call.hpp:14,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/
object_core.hpp:14,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/object/
enum_base.hpp:9,
from libs/python/src/object/enum.cpp:7:
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: use
of `long double' type; its size may change in a future release
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: (Long
double usage is reported only once for each file.
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: To
disable this warning, use -Wno-long-double.)
gcc-C++-action
libs/python/build/bin/libboost_python.dylib/gcc/release/runtime-link-
dynamic/shared-linkable-true/class.o
In file included from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_arithmetic.hpp:14,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_scalar.hpp:13,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_pod.hpp:15,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
has_trivial_assign.hpp:15,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
object_traits.hpp:18,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/
to_python_indirect.hpp:9,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/converter/
arg_to_python.hpp:11,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/call.hpp:14,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/
object_core.hpp:14,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/object/
class.hpp:13,
from libs/python/src/object/class.cpp:6:
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: use
of `long double' type; its size may change in a future release
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: (Long
double usage is reported only once for each file.
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: To
disable this warning, use -Wno-long-double.)
gcc-C++-action
libs/python/build/bin/libboost_python.dylib/gcc/release/runtime-link-
dynamic/shared-linkable-true/function.o
In file included from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_arithmetic.hpp:14,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
arithmetic_traits.hpp:15,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/function/
function_base.hpp:25,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/function/detail/
prologue.hpp:22,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/function/
function_template.hpp:18,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/function/detail/
maybe_include.hpp:19,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/function/
function0.hpp:17,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/errors.hpp:14,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/handle.hpp:11,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/args_fwd.hpp:9,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/object/
function.hpp:10,
from libs/python/src/object/function.cpp:7:
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: use
of `long double' type; its size may change in a future release
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: (Long
double usage is reported only once for each file.
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: To
disable this warning, use -Wno-long-double.)
gcc-C++-action
libs/python/build/bin/libboost_python.dylib/gcc/release/runtime-link-
dynamic/shared-linkable-true/inheritance.o
In file included from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_arithmetic.hpp:14,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_scalar.hpp:13,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_pod.hpp:15,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
has_trivial_assign.hpp:15,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
object_traits.hpp:18,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/object/
inheritance.hpp:12,
from libs/python/src/object/inheritance.cpp:6:
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: use
of `long double' type; its size may change in a future release
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: (Long
double usage is reported only once for each file.
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: To
disable this warning, use -Wno-long-double.)
libs/python/src/object/inheritance.cpp: In function `
__gnu_cxx::__normal_iterator<boost::<unnamed>::index_entry*,
std::vector<boost::<unnamed>::index_entry,
std::allocator<boost::<unnamed>::index_entry> > >
boost::<unnamed>::demand_type(boost::python::type_info)':
libs/python/src/object/inheritance.cpp:217: warning: unused variable
`vertex_t
v2'
gcc-C++-action
libs/python/build/bin/libboost_python.dylib/gcc/release/runtime-link-
dynamic/shared-linkable-true/life_support.o
gcc-C++-action
libs/python/build/bin/libboost_python.dylib/gcc/release/runtime-link-
dynamic/shared-linkable-true/pickle_support.o
In file included from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/converter/
rvalue_from_python_data.hpp:10,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/converter/
registry.hpp:12,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/
to_python_value.hpp:12,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/
default_call_policies.hpp:10,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/
make_function.hpp:9,
from libs/python/src/object/pickle_support.cpp:7:
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/detail/
referent_storage.hpp:32: warning: use
of `long double' type; its size may change in a future release
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/detail/
referent_storage.hpp:32: warning: (Long
double usage is reported only once for each file.
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/detail/
referent_storage.hpp:32: warning: To
disable this warning, use -Wno-long-double.)
gcc-C++-action
libs/python/build/bin/libboost_python.dylib/gcc/release/runtime-link-
dynamic/shared-linkable-true/errors.o
In file included from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_arithmetic.hpp:14,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
arithmetic_traits.hpp:15,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/function/
function_base.hpp:25,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/function/detail/
prologue.hpp:22,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/function/
function_template.hpp:18,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/function/detail/
maybe_include.hpp:19,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/function/
function0.hpp:17,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/errors.hpp:14,
from libs/python/src/errors.cpp:11:
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: use
of `long double' type; its size may change in a future release
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: (Long
double usage is reported only once for each file.
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: To
disable this warning, use -Wno-long-double.)
In file included from libs/python/src/errors.cpp:12:
/Users/aelony/Library/Boost/boost-1.30.2/boost/cast.hpp:178:23:
warning: integer constant is so large that it is unsigned
In file included from libs/python/src/errors.cpp:12:
/Users/aelony/Library/Boost/boost-1.30.2/boost/cast.hpp:178: warning:
this
decimal constant is unsigned only in ISO C90
gcc-C++-action
libs/python/build/bin/libboost_python.dylib/gcc/release/runtime-link-
dynamic/shared-linkable-true/module.o
In file included from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_arithmetic.hpp:14,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_scalar.hpp:13,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_pod.hpp:15,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
has_trivial_assign.hpp:15,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
object_traits.hpp:18,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/
to_python_indirect.hpp:9,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/converter/
arg_to_python.hpp:11,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/call.hpp:14,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/
object_core.hpp:14,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/scope.hpp:9,
from libs/python/src/module.cpp:9:
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: use
of `long double' type; its size may change in a future release
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: (Long
double usage is reported only once for each file.
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: To
disable this warning, use -Wno-long-double.)
gcc-C++-action
libs/python/build/bin/libboost_python.dylib/gcc/release/runtime-link-
dynamic/shared-linkable-true/builtin_converters.o
In file included from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_arithmetic.hpp:14,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
arithmetic_traits.hpp:15,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/function/
function_base.hpp:25,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/function/detail/
prologue.hpp:22,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/function/
function_template.hpp:18,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/function/detail/
maybe_include.hpp:19,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/function/
function0.hpp:17,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/errors.hpp:14,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/handle.hpp:11,
from
libs/python/src/converter/builtin_converters.cpp:7:
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: use
of `long double' type; its size may change in a future release
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: (Long
double usage is reported only once for each file.
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: To
disable this warning, use -Wno-long-double.)
In file included from
libs/python/src/converter/builtin_converters.cpp:21:
/Users/aelony/Library/Boost/boost-1.30.2/boost/cast.hpp:178:23:
warning: integer constant is so large that it is unsigned
In file included from
libs/python/src/converter/builtin_converters.cpp:21:
/Users/aelony/Library/Boost/boost-1.30.2/boost/cast.hpp:178: warning:
this
decimal constant is unsigned only in ISO C90
gcc-C++-action
libs/python/build/bin/libboost_python.dylib/gcc/release/runtime-link-
dynamic/shared-linkable-true/arg_to_python_base.o
In file included from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_arithmetic.hpp:14,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
arithmetic_traits.hpp:15,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/function/
function_base.hpp:25,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/function/detail/
prologue.hpp:22,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/function/
function_template.hpp:18,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/function/detail/
maybe_include.hpp:19,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/function/
function0.hpp:17,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/errors.hpp:14,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/handle.hpp:11,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/converter/
arg_to_python_base.hpp:9,
from
libs/python/src/converter/arg_to_python_base.cpp:7:
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: use
of `long double' type; its size may change in a future release
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: (Long
double usage is reported only once for each file.
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: To
disable this warning, use -Wno-long-double.)
gcc-C++-action
libs/python/build/bin/libboost_python.dylib/gcc/release/runtime-link-
dynamic/shared-linkable-true/iterator.o
In file included from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_arithmetic.hpp:14,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
arithmetic_traits.hpp:15,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/function/
function_base.hpp:25,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/function/detail/
prologue.hpp:22,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/function/
function_template.hpp:18,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/function/detail/
maybe_include.hpp:29,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/function/
function2.hpp:17,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/object/
function_object.hpp:9,
from libs/python/src/object/iterator.cpp:8:
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: use
of `long double' type; its size may change in a future release
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: (Long
double usage is reported only once for each file.
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: To
disable this warning, use -Wno-long-double.)
gcc-C++-action
libs/python/build/bin/libboost_python.dylib/gcc/release/runtime-link-
dynamic/shared-linkable-true/object_protocol.o
In file included from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_arithmetic.hpp:14,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_scalar.hpp:13,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_pod.hpp:15,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
has_trivial_assign.hpp:15,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
object_traits.hpp:18,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/
to_python_indirect.hpp:9,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/converter/
arg_to_python.hpp:11,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/call.hpp:14,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/
object_core.hpp:14,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/
object_protocol.hpp:12,
from libs/python/src/object_protocol.cpp:7:
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: use
of `long double' type; its size may change in a future release
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: (Long
double usage is reported only once for each file.
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: To
disable this warning, use -Wno-long-double.)
gcc-C++-action
libs/python/build/bin/libboost_python.dylib/gcc/release/runtime-link-
dynamic/shared-linkable-true/object_operators.o
In file included from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_arithmetic.hpp:14,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_scalar.hpp:13,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_pod.hpp:15,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
has_trivial_assign.hpp:15,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
object_traits.hpp:18,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/
to_python_indirect.hpp:9,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/converter/
arg_to_python.hpp:11,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/call.hpp:14,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/
object_core.hpp:14,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/
object_operators.hpp:9,
from libs/python/src/object_operators.cpp:7:
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: use
of `long double' type; its size may change in a future release
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: (Long
double usage is reported only once for each file.
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: To
disable this warning, use -Wno-long-double.)
gcc-Link-action
libs/python/build/bin/libboost_python.dylib/gcc/release/runtime-link-
dynamic/shared-linkable-true/libboost_python.dylib
c++: unrecognized option `-shared'
ld: Undefined symbols:
_main
_PyCallable_Check
_PyErr_Clear
_PyErr_Format
_PyEval_CallFunction
_PyExc_ImportError
_PyImport_Import
_PyInt_FromLong
_PyObject_GetAttrString
_PyObject_IsInstance
_PyString_FromStringAndSize
_PyType_IsSubtype
_PyType_Type
_PyErr_Occurred
_PyInt_AsLong
_PyList_Append
_PyList_Insert
_PyList_New
_PyList_Reverse
_PyList_Sort
_PyList_Type
_PyObject_CallFunction
_PyLong_Type
_PyDict_Clear
_PyDict_Copy
_PyDict_GetItem
_PyDict_Items
_PyDict_Keys
_PyDict_New
_PyDict_Type
_PyDict_Update
_PyDict_Values
__Py_NoneStruct
_PyTuple_New
_PyTuple_Type
_PyObject_CallMethod
_PyString_FromString
_PyString_Type
_PyErr_SetObject
_PyExc_ReferenceError
_PyExc_TypeError
_PyString_FromFormat
_PyInt_Type
_PyLong_FromUnsignedLong
_PyObject_IsTrue
_PyObject_RichCompareBool
_PyObject_Size
_PyString_AsString
_PyType_Ready
_PyBaseObject_Type
_PyCFunction_New
_PyErr_SetString
_PyExc_RuntimeError
_PyMem_Free
_PyMem_Malloc
_PyModule_Type
_PyObject_ClearWeakRefs
_PyObject_SetAttrString
_PyProperty_Type
_PyStaticMethod_New
_PyType_GenericAlloc
_PyClass_Type
_PyDict_Size
_PyErr_BadArgument
_PyMethod_New
_PyObject_GetItem
_PyObject_SetAttr
_PyStaticMethod_Type
_PyString_InternFromString
_PyTuple_Size
__Py_NotImplementedStruct
_PyWeakref_NewRef
__PyObject_New
_PyComplex_Type
_PyErr_NoMemory
_PyExc_OverflowError
_Py_InitModule4
_PyComplex_ImagAsDouble
_PyComplex_RealAsDouble
_PyFloat_Type
_PyLong_AsLongLong
_PyLong_AsUnsignedLong
_PyLong_AsUnsignedLongLong
_PyString_Size
_PyExc_StopIteration
_PyErr_ExceptionMatches
_PyExc_AttributeError
_PyObject_DelItem
_PyObject_GetAttr
_PyObject_SetItem
_PySequence_DelSlice
_PySequence_GetSlice
_PySequence_SetSlice
_PySlice_New
__PyEval_SliceIndex
_PyNumber_Add
_PyNumber_And
_PyNumber_Divide
_PyNumber_InPlaceAdd
_PyNumber_InPlaceAnd
_PyNumber_InPlaceDivide
_PyNumber_InPlaceLshift
_PyNumber_InPlaceMultiply
_PyNumber_InPlaceOr
_PyNumber_InPlaceRemainder
_PyNumber_InPlaceRshift
_PyNumber_InPlaceSubtract
_PyNumber_InPlaceXor
_PyNumber_Lshift
_PyNumber_Multiply
_PyNumber_Or
_PyNumber_Remainder
_PyNumber_Rshift
_PyNumber_Subtract
_PyNumber_Xor
DYLD_LIBRARY_PATH=/sw/lib/python2.2/config
export DYLD_LIBRARY_PATH
c++ -s -fPIC -shared -o
"libs/python/build/bin/libboost_python.dylib/gcc/release/runtime-link-
dynamic/shared-linkable-true/libboost_python.dylib"
-L"/sw/lib/python2.2/config"
"libs/python/build/bin/libboost_python.dylib/gcc/release/runtime-link-
dynamic/shared-linkable-true/numeric.o"
"libs/python/build/bin/libboost_python.dylib/gcc/release/runtime-link-
dynamic/shared-linkable-true/list.o"
"libs/python/build/bin/libboost_python.dylib/gcc/release/runtime-link-
dynamic/shared-linkable-true/long.o"
"libs/python/build/bin/libboost_python.dylib/gcc/release/runtime-link-
dynamic/shared-linkable-true/dict.o"
"libs/python/build/bin/libboost_python.dylib/gcc/release/runtime-link-
dynamic/shared-linkable-true/tuple.o"
"libs/python/build/bin/libboost_python.dylib/gcc/release/runtime-link-
dynamic/shared-linkable-true/str.o"
"libs/python/build/bin/libboost_python.dylib/gcc/release/runtime-link-
dynamic/shared-linkable-true/aix_init_module.o"
"libs/python/build/bin/libboost_python.dylib/gcc/release/runtime-link-
dynamic/shared-linkable-true/from_python.o"
"libs/python/build/bin/libboost_python.dylib/gcc/release/runtime-link-
dynamic/shared-linkable-true/registry.o"
"libs/python/build/bin/libboost_python.dylib/gcc/release/runtime-link-
dynamic/shared-linkable-true/type_id.o"
"libs/python/build/bin/libboost_python.dylib/gcc/release/runtime-link-
dynamic/shared-linkable-true/enum.o"
"libs/python/build/bin/libboost_python.dylib/gcc/release/runtime-link-
dynamic/shared-linkable-true/class.o"
"libs/python/build/bin/libboost_python.dylib/gcc/release/runtime-link-
dynamic/shared-linkable-true/function.o"
"libs/python/build/bin/libboost_python.dylib/gcc/release/runtime-link-
dynamic/shared-linkable-true/inheritance.o"
"libs/python/build/bin/libboost_python.dylib/gcc/release/runtime-link-
dynamic/shared-linkable-true/life_support.o"
"libs/python/build/bin/libboost_python.dylib/gcc/release/runtime-link-
dynamic/shared-linkable-true/pickle_support.o"
"libs/python/build/bin/libboost_python.dylib/gcc/release/runtime-link-
dynamic/shared-linkable-true/errors.o"
"libs/python/build/bin/libboost_python.dylib/gcc/release/runtime-link-
dynamic/shared-linkable-true/module.o"
"libs/python/build/bin/libboost_python.dylib/gcc/release/runtime-link-
dynamic/shared-linkable-true/builtin_converters.o"
"libs/python/build/bin/libboost_python.dylib/gcc/release/runtime-link-
dynamic/shared-linkable-true/arg_to_python_base.o"
"libs/python/build/bin/libboost_python.dylib/gcc/release/runtime-link-
dynamic/shared-linkable-true/iterator.o"
"libs/python/build/bin/libboost_python.dylib/gcc/release/runtime-link-
dynamic/shared-linkable-true/object_protocol.o"
"libs/python/build/bin/libboost_python.dylib/gcc/release/runtime-link-
dynamic/shared-linkable-true/object_operators.o"
...failed gcc-Link-action
libs/python/build/bin/libboost_python.dylib/gcc/release/runtime-link-
dynamic/shared-linkable-true/libboost_python.dylib...
...skipped <!libs!python!build!bin-stage>libboost_python.dylib for lack
of
<libs!python!build/libboost_python.dylib/gcc/release/runtime-link-
dynamic/shared-linkable-true>libboost_python.dylib...
MkDir1 libs/python/build/bin/libboost_python.a
MkDir1 libs/python/build/bin/libboost_python.a/gcc
MkDir1 libs/python/build/bin/libboost_python.a/gcc/debug
MkDir1
libs/python/build/bin/libboost_python.a/gcc/debug/runtime-link-dynamic
gcc-C++-action
libs/python/build/bin/libboost_python.a/gcc/debug/runtime-link-dynamic/
numeric.o
In file included from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_arithmetic.hpp:14,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_scalar.hpp:13,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_pod.hpp:15,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
has_trivial_assign.hpp:15,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
object_traits.hpp:18,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/
to_python_indirect.hpp:9,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/converter/
arg_to_python.hpp:11,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/call.hpp:14,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/
object_core.hpp:14,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/object.hpp:9,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/tuple.hpp:9,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/numeric.hpp:9,
from libs/python/src/numeric.cpp:7:
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: use
of `long double' type; its size may change in a future release
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: (Long
double usage is reported only once for each file.
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: To
disable this warning, use -Wno-long-double.)
gcc-C++-action
libs/python/build/bin/libboost_python.a/gcc/debug/runtime-link-dynamic/
list.o
In file included from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_arithmetic.hpp:14,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_scalar.hpp:13,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_pod.hpp:15,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
has_trivial_assign.hpp:15,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
object_traits.hpp:18,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/
to_python_indirect.hpp:9,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/converter/
arg_to_python.hpp:11,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/call.hpp:14,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/
object_core.hpp:14,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/object.hpp:9,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/list.hpp:9,
from libs/python/src/list.cpp:6:
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: use
of `long double' type; its size may change in a future release
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: (Long
double usage is reported only once for each file.
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: To
disable this warning, use -Wno-long-double.)
gcc-C++-action
libs/python/build/bin/libboost_python.a/gcc/debug/runtime-link-dynamic/
long.o
In file included from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_arithmetic.hpp:14,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_scalar.hpp:13,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_pod.hpp:15,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
has_trivial_assign.hpp:15,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
object_traits.hpp:18,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/
to_python_indirect.hpp:9,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/converter/
arg_to_python.hpp:11,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/call.hpp:14,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/
object_core.hpp:14,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/object.hpp:9,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/long.hpp:9,
from libs/python/src/long.cpp:6:
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: use
of `long double' type; its size may change in a future release
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: (Long
double usage is reported only once for each file.
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: To
disable this warning, use -Wno-long-double.)
gcc-C++-action
libs/python/build/bin/libboost_python.a/gcc/debug/runtime-link-dynamic/
dict.o
In file included from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_arithmetic.hpp:14,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_scalar.hpp:13,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_pod.hpp:15,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
has_trivial_assign.hpp:15,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
object_traits.hpp:18,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/
to_python_indirect.hpp:9,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/converter/
arg_to_python.hpp:11,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/call.hpp:14,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/
object_core.hpp:14,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/object.hpp:9,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/dict.hpp:9,
from libs/python/src/dict.cpp:1:
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: use
of `long double' type; its size may change in a future release
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: (Long
double usage is reported only once for each file.
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: To
disable this warning, use -Wno-long-double.)
gcc-C++-action
libs/python/build/bin/libboost_python.a/gcc/debug/runtime-link-dynamic/
tuple.o
In file included from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_arithmetic.hpp:14,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_scalar.hpp:13,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_pod.hpp:15,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
has_trivial_assign.hpp:15,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
object_traits.hpp:18,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/
to_python_indirect.hpp:9,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/converter/
arg_to_python.hpp:11,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/call.hpp:14,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/
object_core.hpp:14,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/object.hpp:9,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/tuple.hpp:9,
from libs/python/src/tuple.cpp:1:
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: use
of `long double' type; its size may change in a future release
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: (Long
double usage is reported only once for each file.
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: To
disable this warning, use -Wno-long-double.)
gcc-C++-action
libs/python/build/bin/libboost_python.a/gcc/debug/runtime-link-dynamic/
str.o
In file included from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_arithmetic.hpp:14,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_scalar.hpp:13,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_pod.hpp:15,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
has_trivial_assign.hpp:15,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
object_traits.hpp:18,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/
to_python_indirect.hpp:9,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/converter/
arg_to_python.hpp:11,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/call.hpp:14,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/
object_core.hpp:14,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/object.hpp:9,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/str.hpp:9,
from libs/python/src/str.cpp:1:
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: use
of `long double' type; its size may change in a future release
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: (Long
double usage is reported only once for each file.
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: To
disable this warning, use -Wno-long-double.)
gcc-C++-action
libs/python/build/bin/libboost_python.a/gcc/debug/runtime-link-dynamic/
aix_init_module.o
gcc-C++-action
libs/python/build/bin/libboost_python.a/gcc/debug/runtime-link-dynamic/
from_python.o
In file included from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/converter/
rvalue_from_python_data.hpp:10,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/converter/
from_python.hpp:11,
from libs/python/src/converter/from_python.cpp:7:
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/detail/
referent_storage.hpp:32: warning: use
of `long double' type; its size may change in a future release
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/detail/
referent_storage.hpp:32: warning: (Long
double usage is reported only once for each file.
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/detail/
referent_storage.hpp:32: warning: To
disable this warning, use -Wno-long-double.)
gcc-C++-action
libs/python/build/bin/libboost_python.a/gcc/debug/runtime-link-dynamic/
registry.o
In file included from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/converter/
rvalue_from_python_data.hpp:10,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/converter/
registry.hpp:12,
from libs/python/src/converter/registry.cpp:6:
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/detail/
referent_storage.hpp:32: warning: use
of `long double' type; its size may change in a future release
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/detail/
referent_storage.hpp:32: warning: (Long
double usage is reported only once for each file.
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/detail/
referent_storage.hpp:32: warning: To
disable this warning, use -Wno-long-double.)
gcc-C++-action
libs/python/build/bin/libboost_python.a/gcc/debug/runtime-link-dynamic/
type_id.o
In file included from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_arithmetic.hpp:14,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_scalar.hpp:13,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_class.hpp:21,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/detail/
indirect_traits.hpp:11,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/detail/
decorated_type_id.hpp:10,
from libs/python/src/converter/type_id.cpp:8:
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: use
of `long double' type; its size may change in a future release
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: (Long
double usage is reported only once for each file.
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: To
disable this warning, use -Wno-long-double.)
gcc-C++-action
libs/python/build/bin/libboost_python.a/gcc/debug/runtime-link-dynamic/
enum.o
In file included from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_arithmetic.hpp:14,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_scalar.hpp:13,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_pod.hpp:15,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
has_trivial_assign.hpp:15,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
object_traits.hpp:18,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/
to_python_indirect.hpp:9,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/converter/
arg_to_python.hpp:11,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/call.hpp:14,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/
object_core.hpp:14,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/object/
enum_base.hpp:9,
from libs/python/src/object/enum.cpp:7:
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: use
of `long double' type; its size may change in a future release
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: (Long
double usage is reported only once for each file.
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: To
disable this warning, use -Wno-long-double.)
gcc-C++-action
libs/python/build/bin/libboost_python.a/gcc/debug/runtime-link-dynamic/
class.o
In file included from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_arithmetic.hpp:14,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_scalar.hpp:13,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_pod.hpp:15,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
has_trivial_assign.hpp:15,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
object_traits.hpp:18,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/
to_python_indirect.hpp:9,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/converter/
arg_to_python.hpp:11,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/call.hpp:14,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/
object_core.hpp:14,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/object/
class.hpp:13,
from libs/python/src/object/class.cpp:6:
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: use
of `long double' type; its size may change in a future release
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: (Long
double usage is reported only once for each file.
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: To
disable this warning, use -Wno-long-double.)
gcc-C++-action
libs/python/build/bin/libboost_python.a/gcc/debug/runtime-link-dynamic/
function.o
In file included from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_arithmetic.hpp:14,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
arithmetic_traits.hpp:15,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/function/
function_base.hpp:25,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/function/detail/
prologue.hpp:22,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/function/
function_template.hpp:18,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/function/detail/
maybe_include.hpp:19,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/function/
function0.hpp:17,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/errors.hpp:14,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/handle.hpp:11,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/args_fwd.hpp:9,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/object/
function.hpp:10,
from libs/python/src/object/function.cpp:7:
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: use
of `long double' type; its size may change in a future release
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: (Long
double usage is reported only once for each file.
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: To
disable this warning, use -Wno-long-double.)
gcc-C++-action
libs/python/build/bin/libboost_python.a/gcc/debug/runtime-link-dynamic/
inheritance.o
In file included from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_arithmetic.hpp:14,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_scalar.hpp:13,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_pod.hpp:15,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
has_trivial_assign.hpp:15,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
object_traits.hpp:18,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/object/
inheritance.hpp:12,
from libs/python/src/object/inheritance.cpp:6:
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: use
of `long double' type; its size may change in a future release
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: (Long
double usage is reported only once for each file.
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: To
disable this warning, use -Wno-long-double.)
gcc-C++-action
libs/python/build/bin/libboost_python.a/gcc/debug/runtime-link-dynamic/
life_support.o
gcc-C++-action
libs/python/build/bin/libboost_python.a/gcc/debug/runtime-link-dynamic/
pickle_support.o
In file included from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/converter/
rvalue_from_python_data.hpp:10,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/converter/
registry.hpp:12,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/
to_python_value.hpp:12,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/
default_call_policies.hpp:10,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/
make_function.hpp:9,
from libs/python/src/object/pickle_support.cpp:7:
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/detail/
referent_storage.hpp:32: warning: use
of `long double' type; its size may change in a future release
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/detail/
referent_storage.hpp:32: warning: (Long
double usage is reported only once for each file.
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/detail/
referent_storage.hpp:32: warning: To
disable this warning, use -Wno-long-double.)
gcc-C++-action
libs/python/build/bin/libboost_python.a/gcc/debug/runtime-link-dynamic/
errors.o
In file included from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_arithmetic.hpp:14,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
arithmetic_traits.hpp:15,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/function/
function_base.hpp:25,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/function/detail/
prologue.hpp:22,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/function/
function_template.hpp:18,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/function/detail/
maybe_include.hpp:19,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/function/
function0.hpp:17,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/errors.hpp:14,
from libs/python/src/errors.cpp:11:
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: use
of `long double' type; its size may change in a future release
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: (Long
double usage is reported only once for each file.
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: To
disable this warning, use -Wno-long-double.)
In file included from libs/python/src/errors.cpp:12:
/Users/aelony/Library/Boost/boost-1.30.2/boost/cast.hpp:178:23:
warning: integer constant is so large that it is unsigned
In file included from libs/python/src/errors.cpp:12:
/Users/aelony/Library/Boost/boost-1.30.2/boost/cast.hpp:178: warning:
this
decimal constant is unsigned only in ISO C90
gcc-C++-action
libs/python/build/bin/libboost_python.a/gcc/debug/runtime-link-dynamic/
module.o
In file included from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_arithmetic.hpp:14,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_scalar.hpp:13,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_pod.hpp:15,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
has_trivial_assign.hpp:15,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
object_traits.hpp:18,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/
to_python_indirect.hpp:9,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/converter/
arg_to_python.hpp:11,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/call.hpp:14,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/
object_core.hpp:14,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/scope.hpp:9,
from libs/python/src/module.cpp:9:
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: use
of `long double' type; its size may change in a future release
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: (Long
double usage is reported only once for each file.
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: To
disable this warning, use -Wno-long-double.)
gcc-C++-action
libs/python/build/bin/libboost_python.a/gcc/debug/runtime-link-dynamic/
builtin_converters.o
In file included from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_arithmetic.hpp:14,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
arithmetic_traits.hpp:15,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/function/
function_base.hpp:25,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/function/detail/
prologue.hpp:22,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/function/
function_template.hpp:18,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/function/detail/
maybe_include.hpp:19,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/function/
function0.hpp:17,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/errors.hpp:14,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/handle.hpp:11,
from
libs/python/src/converter/builtin_converters.cpp:7:
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: use
of `long double' type; its size may change in a future release
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: (Long
double usage is reported only once for each file.
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: To
disable this warning, use -Wno-long-double.)
In file included from
libs/python/src/converter/builtin_converters.cpp:21:
/Users/aelony/Library/Boost/boost-1.30.2/boost/cast.hpp:178:23:
warning: integer constant is so large that it is unsigned
In file included from
libs/python/src/converter/builtin_converters.cpp:21:
/Users/aelony/Library/Boost/boost-1.30.2/boost/cast.hpp:178: warning:
this
decimal constant is unsigned only in ISO C90
gcc-C++-action
libs/python/build/bin/libboost_python.a/gcc/debug/runtime-link-dynamic/
arg_to_python_base.o
In file included from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_arithmetic.hpp:14,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
arithmetic_traits.hpp:15,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/function/
function_base.hpp:25,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/function/detail/
prologue.hpp:22,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/function/
function_template.hpp:18,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/function/detail/
maybe_include.hpp:19,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/function/
function0.hpp:17,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/errors.hpp:14,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/handle.hpp:11,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/converter/
arg_to_python_base.hpp:9,
from
libs/python/src/converter/arg_to_python_base.cpp:7:
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: use
of `long double' type; its size may change in a future release
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: (Long
double usage is reported only once for each file.
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: To
disable this warning, use -Wno-long-double.)
gcc-C++-action
libs/python/build/bin/libboost_python.a/gcc/debug/runtime-link-dynamic/
iterator.o
In file included from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_arithmetic.hpp:14,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
arithmetic_traits.hpp:15,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/function/
function_base.hpp:25,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/function/detail/
prologue.hpp:22,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/function/
function_template.hpp:18,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/function/detail/
maybe_include.hpp:29,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/function/
function2.hpp:17,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/object/
function_object.hpp:9,
from libs/python/src/object/iterator.cpp:8:
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: use
of `long double' type; its size may change in a future release
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: (Long
double usage is reported only once for each file.
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: To
disable this warning, use -Wno-long-double.)
gcc-C++-action
libs/python/build/bin/libboost_python.a/gcc/debug/runtime-link-dynamic/
object_protocol.o
In file included from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_arithmetic.hpp:14,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_scalar.hpp:13,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_pod.hpp:15,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
has_trivial_assign.hpp:15,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
object_traits.hpp:18,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/
to_python_indirect.hpp:9,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/converter/
arg_to_python.hpp:11,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/call.hpp:14,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/
object_core.hpp:14,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/
object_protocol.hpp:12,
from libs/python/src/object_protocol.cpp:7:
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: use
of `long double' type; its size may change in a future release
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: (Long
double usage is reported only once for each file.
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: To
disable this warning, use -Wno-long-double.)
gcc-C++-action
libs/python/build/bin/libboost_python.a/gcc/debug/runtime-link-dynamic/
object_operators.o
In file included from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_arithmetic.hpp:14,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_scalar.hpp:13,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_pod.hpp:15,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
has_trivial_assign.hpp:15,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
object_traits.hpp:18,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/
to_python_indirect.hpp:9,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/converter/
arg_to_python.hpp:11,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/call.hpp:14,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/
object_core.hpp:14,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/
object_operators.hpp:9,
from libs/python/src/object_operators.cpp:7:
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: use
of `long double' type; its size may change in a future release
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: (Long
double usage is reported only once for each file.
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: To
disable this warning, use -Wno-long-double.)
gcc-Archive-action
libs/python/build/bin/libboost_python.a/gcc/debug/runtime-link-dynamic/
libboost_python_debug.a
ar: creating archive
libs/python/build/bin/libboost_python.a/gcc/debug/runtime-link-dynamic/
libboost_python_debug.a
Ranlib
libs/python/build/bin/libboost_python.a/gcc/debug/runtime-link-dynamic/
libboost_python_debug.a
FileClone libs/python/build/bin-stage/libboost_python_debug.a
MkDir1 libs/python/build/bin/libboost_python.a/gcc/release
MkDir1
libs/python/build/bin/libboost_python.a/gcc/release/runtime-link-dynamic
gcc-C++-action
libs/python/build/bin/libboost_python.a/gcc/release/runtime-link-
dynamic/numeric.o
In file included from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_arithmetic.hpp:14,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_scalar.hpp:13,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_pod.hpp:15,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
has_trivial_assign.hpp:15,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
object_traits.hpp:18,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/
to_python_indirect.hpp:9,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/converter/
arg_to_python.hpp:11,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/call.hpp:14,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/
object_core.hpp:14,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/object.hpp:9,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/tuple.hpp:9,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/numeric.hpp:9,
from libs/python/src/numeric.cpp:7:
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: use
of `long double' type; its size may change in a future release
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: (Long
double usage is reported only once for each file.
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: To
disable this warning, use -Wno-long-double.)
gcc-C++-action
libs/python/build/bin/libboost_python.a/gcc/release/runtime-link-
dynamic/list.o
In file included from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_arithmetic.hpp:14,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_scalar.hpp:13,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_pod.hpp:15,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
has_trivial_assign.hpp:15,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
object_traits.hpp:18,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/
to_python_indirect.hpp:9,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/converter/
arg_to_python.hpp:11,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/call.hpp:14,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/
object_core.hpp:14,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/object.hpp:9,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/list.hpp:9,
from libs/python/src/list.cpp:6:
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: use
of `long double' type; its size may change in a future release
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: (Long
double usage is reported only once for each file.
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: To
disable this warning, use -Wno-long-double.)
gcc-C++-action
libs/python/build/bin/libboost_python.a/gcc/release/runtime-link-
dynamic/long.o
In file included from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_arithmetic.hpp:14,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_scalar.hpp:13,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_pod.hpp:15,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
has_trivial_assign.hpp:15,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
object_traits.hpp:18,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/
to_python_indirect.hpp:9,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/converter/
arg_to_python.hpp:11,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/call.hpp:14,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/
object_core.hpp:14,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/object.hpp:9,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/long.hpp:9,
from libs/python/src/long.cpp:6:
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: use
of `long double' type; its size may change in a future release
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: (Long
double usage is reported only once for each file.
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: To
disable this warning, use -Wno-long-double.)
gcc-C++-action
libs/python/build/bin/libboost_python.a/gcc/release/runtime-link-
dynamic/dict.o
In file included from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_arithmetic.hpp:14,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_scalar.hpp:13,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_pod.hpp:15,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
has_trivial_assign.hpp:15,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
object_traits.hpp:18,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/
to_python_indirect.hpp:9,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/converter/
arg_to_python.hpp:11,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/call.hpp:14,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/
object_core.hpp:14,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/object.hpp:9,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/dict.hpp:9,
from libs/python/src/dict.cpp:1:
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: use
of `long double' type; its size may change in a future release
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: (Long
double usage is reported only once for each file.
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: To
disable this warning, use -Wno-long-double.)
gcc-C++-action
libs/python/build/bin/libboost_python.a/gcc/release/runtime-link-
dynamic/tuple.o
In file included from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_arithmetic.hpp:14,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_scalar.hpp:13,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_pod.hpp:15,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
has_trivial_assign.hpp:15,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
object_traits.hpp:18,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/
to_python_indirect.hpp:9,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/converter/
arg_to_python.hpp:11,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/call.hpp:14,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/
object_core.hpp:14,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/object.hpp:9,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/tuple.hpp:9,
from libs/python/src/tuple.cpp:1:
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: use
of `long double' type; its size may change in a future release
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: (Long
double usage is reported only once for each file.
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: To
disable this warning, use -Wno-long-double.)
gcc-C++-action
libs/python/build/bin/libboost_python.a/gcc/release/runtime-link-
dynamic/str.o
In file included from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_arithmetic.hpp:14,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_scalar.hpp:13,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_pod.hpp:15,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
has_trivial_assign.hpp:15,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
object_traits.hpp:18,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/
to_python_indirect.hpp:9,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/converter/
arg_to_python.hpp:11,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/call.hpp:14,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/
object_core.hpp:14,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/object.hpp:9,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/str.hpp:9,
from libs/python/src/str.cpp:1:
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: use
of `long double' type; its size may change in a future release
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: (Long
double usage is reported only once for each file.
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: To
disable this warning, use -Wno-long-double.)
gcc-C++-action
libs/python/build/bin/libboost_python.a/gcc/release/runtime-link-
dynamic/aix_init_module.o
gcc-C++-action
libs/python/build/bin/libboost_python.a/gcc/release/runtime-link-
dynamic/from_python.o
In file included from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/converter/
rvalue_from_python_data.hpp:10,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/converter/
from_python.hpp:11,
from libs/python/src/converter/from_python.cpp:7:
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/detail/
referent_storage.hpp:32: warning: use
of `long double' type; its size may change in a future release
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/detail/
referent_storage.hpp:32: warning: (Long
double usage is reported only once for each file.
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/detail/
referent_storage.hpp:32: warning: To
disable this warning, use -Wno-long-double.)
gcc-C++-action
libs/python/build/bin/libboost_python.a/gcc/release/runtime-link-
dynamic/registry.o
In file included from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/converter/
rvalue_from_python_data.hpp:10,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/converter/
registry.hpp:12,
from libs/python/src/converter/registry.cpp:6:
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/detail/
referent_storage.hpp:32: warning: use
of `long double' type; its size may change in a future release
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/detail/
referent_storage.hpp:32: warning: (Long
double usage is reported only once for each file.
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/detail/
referent_storage.hpp:32: warning: To
disable this warning, use -Wno-long-double.)
gcc-C++-action
libs/python/build/bin/libboost_python.a/gcc/release/runtime-link-
dynamic/type_id.o
In file included from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_arithmetic.hpp:14,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_scalar.hpp:13,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_class.hpp:21,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/detail/
indirect_traits.hpp:11,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/detail/
decorated_type_id.hpp:10,
from libs/python/src/converter/type_id.cpp:8:
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: use
of `long double' type; its size may change in a future release
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: (Long
double usage is reported only once for each file.
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: To
disable this warning, use -Wno-long-double.)
...on 100th target...
gcc-C++-action
libs/python/build/bin/libboost_python.a/gcc/release/runtime-link-
dynamic/enum.o
In file included from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_arithmetic.hpp:14,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_scalar.hpp:13,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_pod.hpp:15,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
has_trivial_assign.hpp:15,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
object_traits.hpp:18,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/
to_python_indirect.hpp:9,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/converter/
arg_to_python.hpp:11,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/call.hpp:14,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/
object_core.hpp:14,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/object/
enum_base.hpp:9,
from libs/python/src/object/enum.cpp:7:
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: use
of `long double' type; its size may change in a future release
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: (Long
double usage is reported only once for each file.
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: To
disable this warning, use -Wno-long-double.)
gcc-C++-action
libs/python/build/bin/libboost_python.a/gcc/release/runtime-link-
dynamic/class.o
In file included from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_arithmetic.hpp:14,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_scalar.hpp:13,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_pod.hpp:15,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
has_trivial_assign.hpp:15,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
object_traits.hpp:18,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/
to_python_indirect.hpp:9,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/converter/
arg_to_python.hpp:11,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/call.hpp:14,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/
object_core.hpp:14,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/object/
class.hpp:13,
from libs/python/src/object/class.cpp:6:
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: use
of `long double' type; its size may change in a future release
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: (Long
double usage is reported only once for each file.
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: To
disable this warning, use -Wno-long-double.)
gcc-C++-action
libs/python/build/bin/libboost_python.a/gcc/release/runtime-link-
dynamic/function.o
In file included from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_arithmetic.hpp:14,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
arithmetic_traits.hpp:15,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/function/
function_base.hpp:25,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/function/detail/
prologue.hpp:22,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/function/
function_template.hpp:18,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/function/detail/
maybe_include.hpp:19,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/function/
function0.hpp:17,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/errors.hpp:14,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/handle.hpp:11,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/args_fwd.hpp:9,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/object/
function.hpp:10,
from libs/python/src/object/function.cpp:7:
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: use
of `long double' type; its size may change in a future release
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: (Long
double usage is reported only once for each file.
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: To
disable this warning, use -Wno-long-double.)
gcc-C++-action
libs/python/build/bin/libboost_python.a/gcc/release/runtime-link-
dynamic/inheritance.o
In file included from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_arithmetic.hpp:14,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_scalar.hpp:13,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_pod.hpp:15,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
has_trivial_assign.hpp:15,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
object_traits.hpp:18,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/object/
inheritance.hpp:12,
from libs/python/src/object/inheritance.cpp:6:
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: use
of `long double' type; its size may change in a future release
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: (Long
double usage is reported only once for each file.
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: To
disable this warning, use -Wno-long-double.)
libs/python/src/object/inheritance.cpp: In function `
__gnu_cxx::__normal_iterator<boost::<unnamed>::index_entry*,
std::vector<boost::<unnamed>::index_entry,
std::allocator<boost::<unnamed>::index_entry> > >
boost::<unnamed>::demand_type(boost::python::type_info)':
libs/python/src/object/inheritance.cpp:217: warning: unused variable
`vertex_t
v2'
gcc-C++-action
libs/python/build/bin/libboost_python.a/gcc/release/runtime-link-
dynamic/life_support.o
gcc-C++-action
libs/python/build/bin/libboost_python.a/gcc/release/runtime-link-
dynamic/pickle_support.o
In file included from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/converter/
rvalue_from_python_data.hpp:10,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/converter/
registry.hpp:12,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/
to_python_value.hpp:12,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/
default_call_policies.hpp:10,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/
make_function.hpp:9,
from libs/python/src/object/pickle_support.cpp:7:
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/detail/
referent_storage.hpp:32: warning: use
of `long double' type; its size may change in a future release
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/detail/
referent_storage.hpp:32: warning: (Long
double usage is reported only once for each file.
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/detail/
referent_storage.hpp:32: warning: To
disable this warning, use -Wno-long-double.)
gcc-C++-action
libs/python/build/bin/libboost_python.a/gcc/release/runtime-link-
dynamic/errors.o
In file included from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_arithmetic.hpp:14,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
arithmetic_traits.hpp:15,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/function/
function_base.hpp:25,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/function/detail/
prologue.hpp:22,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/function/
function_template.hpp:18,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/function/detail/
maybe_include.hpp:19,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/function/
function0.hpp:17,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/errors.hpp:14,
from libs/python/src/errors.cpp:11:
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: use
of `long double' type; its size may change in a future release
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: (Long
double usage is reported only once for each file.
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: To
disable this warning, use -Wno-long-double.)
In file included from libs/python/src/errors.cpp:12:
/Users/aelony/Library/Boost/boost-1.30.2/boost/cast.hpp:178:23:
warning: integer constant is so large that it is unsigned
In file included from libs/python/src/errors.cpp:12:
/Users/aelony/Library/Boost/boost-1.30.2/boost/cast.hpp:178: warning:
this
decimal constant is unsigned only in ISO C90
gcc-C++-action
libs/python/build/bin/libboost_python.a/gcc/release/runtime-link-
dynamic/module.o
In file included from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_arithmetic.hpp:14,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_scalar.hpp:13,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_pod.hpp:15,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
has_trivial_assign.hpp:15,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
object_traits.hpp:18,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/
to_python_indirect.hpp:9,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/converter/
arg_to_python.hpp:11,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/call.hpp:14,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/
object_core.hpp:14,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/scope.hpp:9,
from libs/python/src/module.cpp:9:
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: use
of `long double' type; its size may change in a future release
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: (Long
double usage is reported only once for each file.
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: To
disable this warning, use -Wno-long-double.)
gcc-C++-action
libs/python/build/bin/libboost_python.a/gcc/release/runtime-link-
dynamic/builtin_converters.o
In file included from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_arithmetic.hpp:14,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
arithmetic_traits.hpp:15,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/function/
function_base.hpp:25,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/function/detail/
prologue.hpp:22,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/function/
function_template.hpp:18,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/function/detail/
maybe_include.hpp:19,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/function/
function0.hpp:17,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/errors.hpp:14,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/handle.hpp:11,
from
libs/python/src/converter/builtin_converters.cpp:7:
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: use
of `long double' type; its size may change in a future release
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: (Long
double usage is reported only once for each file.
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: To
disable this warning, use -Wno-long-double.)
In file included from
libs/python/src/converter/builtin_converters.cpp:21:
/Users/aelony/Library/Boost/boost-1.30.2/boost/cast.hpp:178:23:
warning: integer constant is so large that it is unsigned
In file included from
libs/python/src/converter/builtin_converters.cpp:21:
/Users/aelony/Library/Boost/boost-1.30.2/boost/cast.hpp:178: warning:
this
decimal constant is unsigned only in ISO C90
gcc-C++-action
libs/python/build/bin/libboost_python.a/gcc/release/runtime-link-
dynamic/arg_to_python_base.o
In file included from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_arithmetic.hpp:14,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
arithmetic_traits.hpp:15,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/function/
function_base.hpp:25,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/function/detail/
prologue.hpp:22,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/function/
function_template.hpp:18,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/function/detail/
maybe_include.hpp:19,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/function/
function0.hpp:17,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/errors.hpp:14,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/handle.hpp:11,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/converter/
arg_to_python_base.hpp:9,
from
libs/python/src/converter/arg_to_python_base.cpp:7:
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: use
of `long double' type; its size may change in a future release
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: (Long
double usage is reported only once for each file.
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: To
disable this warning, use -Wno-long-double.)
gcc-C++-action
libs/python/build/bin/libboost_python.a/gcc/release/runtime-link-
dynamic/iterator.o
In file included from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_arithmetic.hpp:14,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
arithmetic_traits.hpp:15,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/function/
function_base.hpp:25,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/function/detail/
prologue.hpp:22,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/function/
function_template.hpp:18,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/function/detail/
maybe_include.hpp:29,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/function/
function2.hpp:17,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/object/
function_object.hpp:9,
from libs/python/src/object/iterator.cpp:8:
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: use
of `long double' type; its size may change in a future release
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: (Long
double usage is reported only once for each file.
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: To
disable this warning, use -Wno-long-double.)
gcc-C++-action
libs/python/build/bin/libboost_python.a/gcc/release/runtime-link-
dynamic/object_protocol.o
In file included from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_arithmetic.hpp:14,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_scalar.hpp:13,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_pod.hpp:15,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
has_trivial_assign.hpp:15,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
object_traits.hpp:18,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/
to_python_indirect.hpp:9,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/converter/
arg_to_python.hpp:11,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/call.hpp:14,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/
object_core.hpp:14,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/
object_protocol.hpp:12,
from libs/python/src/object_protocol.cpp:7:
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: use
of `long double' type; its size may change in a future release
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: (Long
double usage is reported only once for each file.
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: To
disable this warning, use -Wno-long-double.)
gcc-C++-action
libs/python/build/bin/libboost_python.a/gcc/release/runtime-link-
dynamic/object_operators.o
In file included from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_arithmetic.hpp:14,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_scalar.hpp:13,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_pod.hpp:15,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
has_trivial_assign.hpp:15,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
object_traits.hpp:18,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/
to_python_indirect.hpp:9,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/converter/
arg_to_python.hpp:11,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/call.hpp:14,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/
object_core.hpp:14,
from
/Users/aelony/Library/Boost/boost-1.30.2/boost/python/
object_operators.hpp:9,
from libs/python/src/object_operators.cpp:7:
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: use
of `long double' type; its size may change in a future release
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: (Long
double usage is reported only once for each file.
/Users/aelony/Library/Boost/boost-1.30.2/boost/type_traits/
is_float.hpp:22: warning: To
disable this warning, use -Wno-long-double.)
gcc-Archive-action
libs/python/build/bin/libboost_python.a/gcc/release/runtime-link-
dynamic/libboost_python.a
ar: creating archive
libs/python/build/bin/libboost_python.a/gcc/release/runtime-link-
dynamic/libboost_python.a
Ranlib
libs/python/build/bin/libboost_python.a/gcc/release/runtime-link-
dynamic/libboost_python.a
ranlib: file:
libs/python/build/bin/libboost_python.a/gcc/release/runtime-link-
dynamic/libboost_python.a(aix_init_module.o) has no symbols
FileClone libs/python/build/bin-stage/libboost_python.a
gcc-Link-action
libs/regex/build/bin/libboost_regex.dylib/gcc/debug/runtime-link-
dynamic/shared-linkable-true/libboost_regex_debug.dylib
c++: unrecognized option `-shared'
ld: Undefined symbols:
_main
export DYLD_LIBRARY_PATH
c++ -g -fPIC -shared -o
"libs/regex/build/bin/libboost_regex.dylib/gcc/debug/runtime-link-
dynamic/shared-linkable-true/libboost_regex_debug.dylib"
"libs/regex/build/bin/libboost_regex.dylib/gcc/debug/runtime-link-
dynamic/shared-linkable-true/c_regex_traits.o"
"libs/regex/build/bin/libboost_regex.dylib/gcc/debug/runtime-link-
dynamic/shared-linkable-true/c_regex_traits_common.o"
"libs/regex/build/bin/libboost_regex.dylib/gcc/debug/runtime-link-
dynamic/shared-linkable-true/cpp_regex_traits.o"
"libs/regex/build/bin/libboost_regex.dylib/gcc/debug/runtime-link-
dynamic/shared-linkable-true/cregex.o"
"libs/regex/build/bin/libboost_regex.dylib/gcc/debug/runtime-link-
dynamic/shared-linkable-true/fileiter.o"
"libs/regex/build/bin/libboost_regex.dylib/gcc/debug/runtime-link-
dynamic/shared-linkable-true/posix_api.o"
"libs/regex/build/bin/libboost_regex.dylib/gcc/debug/runtime-link-
dynamic/shared-linkable-true/regex.o"
"libs/regex/build/bin/libboost_regex.dylib/gcc/debug/runtime-link-
dynamic/shared-linkable-true/regex_debug.o"
"libs/regex/build/bin/libboost_regex.dylib/gcc/debug/runtime-link-
dynamic/shared-linkable-true/regex_synch.o"
"libs/regex/build/bin/libboost_regex.dylib/gcc/debug/runtime-link-
dynamic/shared-linkable-true/w32_regex_traits.o"
"libs/regex/build/bin/libboost_regex.dylib/gcc/debug/runtime-link-
dynamic/shared-linkable-true/wide_posix_api.o"
"libs/regex/build/bin/libboost_regex.dylib/gcc/debug/runtime-link-
dynamic/shared-linkable-true/instances.o"
"libs/regex/build/bin/libboost_regex.dylib/gcc/debug/runtime-link-
dynamic/shared-linkable-true/winstances.o"
...failed gcc-Link-action
libs/regex/build/bin/libboost_regex.dylib/gcc/debug/runtime-link-
dynamic/shared-linkable-true/libboost_regex_debug.dylib...
...skipped <!libs!regex!build!bin-stage>libboost_regex_debug.dylib for
lack of
<libs!regex!build/libboost_regex.dylib/gcc/debug/runtime-link-dynamic/
shared-linkable-true>libboost_regex_debug.dylib...
gcc-Link-action
libs/regex/build/bin/libboost_regex.dylib/gcc/release/runtime-link-
dynamic/shared-linkable-true/libboost_regex.dylib
c++: unrecognized option `-shared'
ld: Undefined symbols:
_main
export DYLD_LIBRARY_PATH
c++ -s -fPIC -shared -o
"libs/regex/build/bin/libboost_regex.dylib/gcc/release/runtime-link-
dynamic/shared-linkable-true/libboost_regex.dylib"
"libs/regex/build/bin/libboost_regex.dylib/gcc/release/runtime-link-
dynamic/shared-linkable-true/c_regex_traits.o"
"libs/regex/build/bin/libboost_regex.dylib/gcc/release/runtime-link-
dynamic/shared-linkable-true/c_regex_traits_common.o"
"libs/regex/build/bin/libboost_regex.dylib/gcc/release/runtime-link-
dynamic/shared-linkable-true/cpp_regex_traits.o"
"libs/regex/build/bin/libboost_regex.dylib/gcc/release/runtime-link-
dynamic/shared-linkable-true/cregex.o"
"libs/regex/build/bin/libboost_regex.dylib/gcc/release/runtime-link-
dynamic/shared-linkable-true/fileiter.o"
"libs/regex/build/bin/libboost_regex.dylib/gcc/release/runtime-link-
dynamic/shared-linkable-true/posix_api.o"
"libs/regex/build/bin/libboost_regex.dylib/gcc/release/runtime-link-
dynamic/shared-linkable-true/regex.o"
"libs/regex/build/bin/libboost_regex.dylib/gcc/release/runtime-link-
dynamic/shared-linkable-true/regex_debug.o"
"libs/regex/build/bin/libboost_regex.dylib/gcc/release/runtime-link-
dynamic/shared-linkable-true/regex_synch.o"
"libs/regex/build/bin/libboost_regex.dylib/gcc/release/runtime-link-
dynamic/shared-linkable-true/w32_regex_traits.o"
"libs/regex/build/bin/libboost_regex.dylib/gcc/release/runtime-link-
dynamic/shared-linkable-true/wide_posix_api.o"
"libs/regex/build/bin/libboost_regex.dylib/gcc/release/runtime-link-
dynamic/shared-linkable-true/instances.o"
"libs/regex/build/bin/libboost_regex.dylib/gcc/release/runtime-link-
dynamic/shared-linkable-true/winstances.o"
...failed gcc-Link-action
libs/regex/build/bin/libboost_regex.dylib/gcc/release/runtime-link-
dynamic/shared-linkable-true/libboost_regex.dylib...
...skipped <!libs!regex!build!bin-stage>libboost_regex.dylib for lack
of
<libs!regex!build/libboost_regex.dylib/gcc/release/runtime-link-
dynamic/shared-linkable-true>libboost_regex.dylib...
gcc-Link-action
libs/thread/build/bin/libboost_thread.dylib/gcc/debug/runtime-link-
dynamic/shared-linkable-true/libboost_threadd.dylib
c++: unrecognized option `-shared'
ld: Undefined symbols:
_main
export DYLD_LIBRARY_PATH
c++ -g -fPIC -shared -o
"libs/thread/build/bin/libboost_thread.dylib/gcc/debug/runtime-link-
dynamic/shared-linkable-true/libboost_threadd.dylib"
"libs/thread/build/bin/libboost_thread.dylib/gcc/debug/runtime-link-
dynamic/shared-linkable-true/condition.o"
"libs/thread/build/bin/libboost_thread.dylib/gcc/debug/runtime-link-
dynamic/shared-linkable-true/mutex.o"
"libs/thread/build/bin/libboost_thread.dylib/gcc/debug/runtime-link-
dynamic/shared-linkable-true/recursive_mutex.o"
"libs/thread/build/bin/libboost_thread.dylib/gcc/debug/runtime-link-
dynamic/shared-linkable-true/thread.o"
"libs/thread/build/bin/libboost_thread.dylib/gcc/debug/runtime-link-
dynamic/shared-linkable-true/tss.o"
"libs/thread/build/bin/libboost_thread.dylib/gcc/debug/runtime-link-
dynamic/shared-linkable-true/xtime.o"
"libs/thread/build/bin/libboost_thread.dylib/gcc/debug/runtime-link-
dynamic/shared-linkable-true/once.o"
"libs/thread/build/bin/libboost_thread.dylib/gcc/debug/runtime-link-
dynamic/shared-linkable-true/exceptions.o"
"libs/thread/build/bin/libboost_thread.dylib/gcc/debug/runtime-link-
dynamic/shared-linkable-true/threadmon.o"
...failed gcc-Link-action
libs/thread/build/bin/libboost_thread.dylib/gcc/debug/runtime-link-
dynamic/shared-linkable-true/libboost_threadd.dylib...
...skipped <!libs!thread!build!bin-stage>libboost_threadd.dylib for
lack of
<libs!thread!build/libboost_thread.dylib/gcc/debug/runtime-link-
dynamic/shared-linkable-true>libboost_threadd.dylib...
gcc-Link-action
libs/thread/build/bin/libboost_thread.dylib/gcc/release/runtime-link-
dynamic/shared-linkable-true/libboost_thread.dylib
c++: unrecognized option `-shared'
ld: Undefined symbols:
_main
export DYLD_LIBRARY_PATH
c++ -s -fPIC -shared -o
"libs/thread/build/bin/libboost_thread.dylib/gcc/release/runtime-link-
dynamic/shared-linkable-true/libboost_thread.dylib"
"libs/thread/build/bin/libboost_thread.dylib/gcc/release/runtime-link-
dynamic/shared-linkable-true/condition.o"
"libs/thread/build/bin/libboost_thread.dylib/gcc/release/runtime-link-
dynamic/shared-linkable-true/mutex.o"
"libs/thread/build/bin/libboost_thread.dylib/gcc/release/runtime-link-
dynamic/shared-linkable-true/recursive_mutex.o"
"libs/thread/build/bin/libboost_thread.dylib/gcc/release/runtime-link-
dynamic/shared-linkable-true/thread.o"
"libs/thread/build/bin/libboost_thread.dylib/gcc/release/runtime-link-
dynamic/shared-linkable-true/tss.o"
"libs/thread/build/bin/libboost_thread.dylib/gcc/release/runtime-link-
dynamic/shared-linkable-true/xtime.o"
"libs/thread/build/bin/libboost_thread.dylib/gcc/release/runtime-link-
dynamic/shared-linkable-true/once.o"
"libs/thread/build/bin/libboost_thread.dylib/gcc/release/runtime-link-
dynamic/shared-linkable-true/exceptions.o"
"libs/thread/build/bin/libboost_thread.dylib/gcc/release/runtime-link-
dynamic/shared-linkable-true/threadmon.o"
...failed gcc-Link-action
libs/thread/build/bin/libboost_thread.dylib/gcc/release/runtime-link-
dynamic/shared-linkable-true/libboost_thread.dylib...
...skipped <!libs!thread!build!bin-stage>libboost_thread.dylib for lack
of
<libs!thread!build/libboost_thread.dylib/gcc/release/runtime-link-
dynamic/shared-linkable-true>libboost_thread.dylib...
gcc-Archive-action
libs/python/build/bin/libboost_python.a/gcc/debug/runtime-link-dynamic/
libboost_python.a
ar: creating archive
libs/python/build/bin/libboost_python.a/gcc/debug/runtime-link-dynamic/
libboost_python.a
Ranlib
libs/python/build/bin/libboost_python.a/gcc/debug/runtime-link-dynamic/
libboost_python.a
gcc-Link-action
libs/date_time/build/bin/libboost_date_time.dylib/gcc/debug/runtime-
link-dynamic/shared-linkable-true/libboost_date_time.dylib
c++: unrecognized option `-shared'
ld: Undefined symbols:
_main
export DYLD_LIBRARY_PATH
c++ -g -fPIC -shared -o
"libs/date_time/build/bin/libboost_date_time.dylib/gcc/debug/runtime-
link-dynamic/shared-linkable-true/libboost_date_time.dylib"
"libs/date_time/build/bin/libboost_date_time.dylib/gcc/debug/runtime-
link-dynamic/shared-linkable-true/greg_month.o"
"libs/date_time/build/bin/libboost_date_time.dylib/gcc/debug/runtime-
link-dynamic/shared-linkable-true/greg_weekday.o"
...failed gcc-Link-action
libs/date_time/build/bin/libboost_date_time.dylib/gcc/debug/runtime-
link-dynamic/shared-linkable-true/libboost_date_time.dylib...
gcc-Link-action
libs/date_time/build/bin/libboost_date_time.dylib/gcc/release/runtime-
link-dynamic/shared-linkable-true/libboost_date_time.dylib
c++: unrecognized option `-shared'
ld: Undefined symbols:
_main
export DYLD_LIBRARY_PATH
c++ -s -fPIC -shared -o
"libs/date_time/build/bin/libboost_date_time.dylib/gcc/release/runtime-
link-dynamic/shared-linkable-true/libboost_date_time.dylib"
"libs/date_time/build/bin/libboost_date_time.dylib/gcc/release/runtime-
link-dynamic/shared-linkable-true/greg_month.o"
"libs/date_time/build/bin/libboost_date_time.dylib/gcc/release/runtime-
link-dynamic/shared-linkable-true/greg_weekday.o"
...failed gcc-Link-action
libs/date_time/build/bin/libboost_date_time.dylib/gcc/release/runtime-
link-dynamic/shared-linkable-true/libboost_date_time.dylib...
gcc-Link-action
libs/python/build/bin/libboost_python.dylib/gcc/debug/runtime-link-
dynamic/shared-linkable-true/libboost_python.dylib
c++: unrecognized option `-shared'
ld: Undefined symbols:
_main
_PyCallable_Check
_PyErr_Clear
_PyErr_Format
_PyEval_CallFunction
_PyExc_ImportError
_PyImport_Import
_PyInt_FromLong
_PyObject_GetAttrString
_PyObject_IsInstance
_PyString_FromStringAndSize
_PyType_IsSubtype
_PyType_Type
_PyErr_Occurred
_PyInt_AsLong
_PyList_Append
_PyList_Insert
_PyList_New
_PyList_Reverse
_PyList_Sort
_PyList_Type
_PyObject_CallFunction
_PyLong_Type
_PyDict_Clear
_PyDict_Copy
_PyDict_GetItem
_PyDict_Items
_PyDict_Keys
_PyDict_New
_PyDict_Type
_PyDict_Update
_PyDict_Values
__Py_NoneStruct
_PyTuple_New
_PyTuple_Type
_PyObject_CallMethod
_PyString_FromString
_PyString_Type
_PyErr_SetObject
_PyExc_ReferenceError
_PyExc_TypeError
_PyString_FromFormat
_PyInt_Type
_PyLong_FromUnsignedLong
_PyObject_IsTrue
_PyObject_RichCompareBool
_PyObject_Size
_PyString_AsString
_PyType_Ready
_PyBaseObject_Type
_PyCFunction_New
_PyErr_SetString
_PyExc_RuntimeError
_PyMem_Free
_PyMem_Malloc
_PyModule_Type
_PyObject_ClearWeakRefs
_PyObject_SetAttrString
_PyProperty_Type
_PyStaticMethod_New
_PyType_GenericAlloc
_PyClass_Type
_PyDict_Size
_PyErr_BadArgument
_PyMethod_New
_PyObject_GetItem
_PyObject_SetAttr
_PyStaticMethod_Type
_PyString_InternFromString
_PyTuple_Size
__Py_NotImplementedStruct
_PyWeakref_NewRef
__PyObject_New
_PyComplex_Type
_PyErr_NoMemory
_PyExc_OverflowError
_Py_InitModule4
_PyComplex_ImagAsDouble
_PyComplex_RealAsDouble
_PyFloat_Type
_PyLong_AsLongLong
_PyLong_AsUnsignedLong
_PyLong_AsUnsignedLongLong
_PyString_Size
_PyExc_StopIteration
_PyErr_ExceptionMatches
_PyExc_AttributeError
_PyObject_DelItem
_PyObject_GetAttr
_PyObject_SetItem
_PySequence_DelSlice
_PySequence_GetSlice
_PySequence_SetSlice
_PySlice_New
__PyEval_SliceIndex
_PyNumber_Add
_PyNumber_And
_PyNumber_Divide
_PyNumber_InPlaceAdd
_PyNumber_InPlaceAnd
_PyNumber_InPlaceDivide
_PyNumber_InPlaceLshift
_PyNumber_InPlaceMultiply
_PyNumber_InPlaceOr
_PyNumber_InPlaceRemainder
_PyNumber_InPlaceRshift
_PyNumber_InPlaceSubtract
_PyNumber_InPlaceXor
_PyNumber_Lshift
_PyNumber_Multiply
_PyNumber_Or
_PyNumber_Remainder
_PyNumber_Rshift
_PyNumber_Subtract
_PyNumber_Xor
DYLD_LIBRARY_PATH=/sw/lib/python2.2/config
export DYLD_LIBRARY_PATH
c++ -g -fPIC -shared -o
"libs/python/build/bin/libboost_python.dylib/gcc/debug/runtime-link-
dynamic/shared-linkable-true/libboost_python.dylib"
-L"/sw/lib/python2.2/config"
"libs/python/build/bin/libboost_python.dylib/gcc/debug/runtime-link-
dynamic/shared-linkable-true/numeric.o"
"libs/python/build/bin/libboost_python.dylib/gcc/debug/runtime-link-
dynamic/shared-linkable-true/list.o"
"libs/python/build/bin/libboost_python.dylib/gcc/debug/runtime-link-
dynamic/shared-linkable-true/long.o"
"libs/python/build/bin/libboost_python.dylib/gcc/debug/runtime-link-
dynamic/shared-linkable-true/dict.o"
"libs/python/build/bin/libboost_python.dylib/gcc/debug/runtime-link-
dynamic/shared-linkable-true/tuple.o"
"libs/python/build/bin/libboost_python.dylib/gcc/debug/runtime-link-
dynamic/shared-linkable-true/str.o"
"libs/python/build/bin/libboost_python.dylib/gcc/debug/runtime-link-
dynamic/shared-linkable-true/aix_init_module.o"
"libs/python/build/bin/libboost_python.dylib/gcc/debug/runtime-link-
dynamic/shared-linkable-true/from_python.o"
"libs/python/build/bin/libboost_python.dylib/gcc/debug/runtime-link-
dynamic/shared-linkable-true/registry.o"
"libs/python/build/bin/libboost_python.dylib/gcc/debug/runtime-link-
dynamic/shared-linkable-true/type_id.o"
"libs/python/build/bin/libboost_python.dylib/gcc/debug/runtime-link-
dynamic/shared-linkable-true/enum.o"
"libs/python/build/bin/libboost_python.dylib/gcc/debug/runtime-link-
dynamic/shared-linkable-true/class.o"
"libs/python/build/bin/libboost_python.dylib/gcc/debug/runtime-link-
dynamic/shared-linkable-true/function.o"
"libs/python/build/bin/libboost_python.dylib/gcc/debug/runtime-link-
dynamic/shared-linkable-true/inheritance.o"
"libs/python/build/bin/libboost_python.dylib/gcc/debug/runtime-link-
dynamic/shared-linkable-true/life_support.o"
"libs/python/build/bin/libboost_python.dylib/gcc/debug/runtime-link-
dynamic/shared-linkable-true/pickle_support.o"
"libs/python/build/bin/libboost_python.dylib/gcc/debug/runtime-link-
dynamic/shared-linkable-true/errors.o"
"libs/python/build/bin/libboost_python.dylib/gcc/debug/runtime-link-
dynamic/shared-linkable-true/module.o"
"libs/python/build/bin/libboost_python.dylib/gcc/debug/runtime-link-
dynamic/shared-linkable-true/builtin_converters.o"
"libs/python/build/bin/libboost_python.dylib/gcc/debug/runtime-link-
dynamic/shared-linkable-true/arg_to_python_base.o"
"libs/python/build/bin/libboost_python.dylib/gcc/debug/runtime-link-
dynamic/shared-linkable-true/iterator.o"
"libs/python/build/bin/libboost_python.dylib/gcc/debug/runtime-link-
dynamic/shared-linkable-true/object_protocol.o"
"libs/python/build/bin/libboost_python.dylib/gcc/debug/runtime-link-
dynamic/shared-linkable-true/object_operators.o"
...failed gcc-Link-action
libs/python/build/bin/libboost_python.dylib/gcc/debug/runtime-link-
dynamic/shared-linkable-true/libboost_python.dylib...
gcc-Link-action
libs/regex/build/bin/libboost_regex.dylib/gcc/debug/runtime-link-
dynamic/shared-linkable-true/libboost_regex.dylib
c++: unrecognized option `-shared'
ld: Undefined symbols:
_main
export DYLD_LIBRARY_PATH
c++ -g -fPIC -shared -o
"libs/regex/build/bin/libboost_regex.dylib/gcc/debug/runtime-link-
dynamic/shared-linkable-true/libboost_regex.dylib"
"libs/regex/build/bin/libboost_regex.dylib/gcc/debug/runtime-link-
dynamic/shared-linkable-true/c_regex_traits.o"
"libs/regex/build/bin/libboost_regex.dylib/gcc/debug/runtime-link-
dynamic/shared-linkable-true/c_regex_traits_common.o"
"libs/regex/build/bin/libboost_regex.dylib/gcc/debug/runtime-link-
dynamic/shared-linkable-true/cpp_regex_traits.o"
"libs/regex/build/bin/libboost_regex.dylib/gcc/debug/runtime-link-
dynamic/shared-linkable-true/cregex.o"
"libs/regex/build/bin/libboost_regex.dylib/gcc/debug/runtime-link-
dynamic/shared-linkable-true/fileiter.o"
"libs/regex/build/bin/libboost_regex.dylib/gcc/debug/runtime-link-
dynamic/shared-linkable-true/posix_api.o"
"libs/regex/build/bin/libboost_regex.dylib/gcc/debug/runtime-link-
dynamic/shared-linkable-true/regex.o"
"libs/regex/build/bin/libboost_regex.dylib/gcc/debug/runtime-link-
dynamic/shared-linkable-true/regex_debug.o"
"libs/regex/build/bin/libboost_regex.dylib/gcc/debug/runtime-link-
dynamic/shared-linkable-true/regex_synch.o"
"libs/regex/build/bin/libboost_regex.dylib/gcc/debug/runtime-link-
dynamic/shared-linkable-true/w32_regex_traits.o"
"libs/regex/build/bin/libboost_regex.dylib/gcc/debug/runtime-link-
dynamic/shared-linkable-true/wide_posix_api.o"
"libs/regex/build/bin/libboost_regex.dylib/gcc/debug/runtime-link-
dynamic/shared-linkable-true/instances.o"
"libs/regex/build/bin/libboost_regex.dylib/gcc/debug/runtime-link-
dynamic/shared-linkable-true/winstances.o"
...failed gcc-Link-action
libs/regex/build/bin/libboost_regex.dylib/gcc/debug/runtime-link-
dynamic/shared-linkable-true/libboost_regex.dylib...
gcc-Link-action
libs/signals/build/bin/libboost_signals.dylib/gcc/debug/runtime-link-
dynamic/shared-linkable-true/libboost_signals.dylib
c++: unrecognized option `-shared'
ld: Undefined symbols:
_main
export DYLD_LIBRARY_PATH
c++ -g -fPIC -shared -o
"libs/signals/build/bin/libboost_signals.dylib/gcc/debug/runtime-link-
dynamic/shared-linkable-true/libboost_signals.dylib"
"libs/signals/build/bin/libboost_signals.dylib/gcc/debug/runtime-link-
dynamic/shared-linkable-true/trackable.o"
"libs/signals/build/bin/libboost_signals.dylib/gcc/debug/runtime-link-
dynamic/shared-linkable-true/connection.o"
"libs/signals/build/bin/libboost_signals.dylib/gcc/debug/runtime-link-
dynamic/shared-linkable-true/signal_base.o"
"libs/signals/build/bin/libboost_signals.dylib/gcc/debug/runtime-link-
dynamic/shared-linkable-true/slot.o"
...failed gcc-Link-action
libs/signals/build/bin/libboost_signals.dylib/gcc/debug/runtime-link-
dynamic/shared-linkable-true/libboost_signals.dylib...
gcc-Link-action
libs/signals/build/bin/libboost_signals.dylib/gcc/release/runtime-link-
dynamic/shared-linkable-true/libboost_signals.dylib
c++: unrecognized option `-shared'
ld: Undefined symbols:
_main
export DYLD_LIBRARY_PATH
c++ -s -fPIC -shared -o
"libs/signals/build/bin/libboost_signals.dylib/gcc/release/runtime-
link-dynamic/shared-linkable-true/libboost_signals.dylib"
"libs/signals/build/bin/libboost_signals.dylib/gcc/release/runtime-
link-dynamic/shared-linkable-true/trackable.o"
"libs/signals/build/bin/libboost_signals.dylib/gcc/release/runtime-
link-dynamic/shared-linkable-true/connection.o"
"libs/signals/build/bin/libboost_signals.dylib/gcc/release/runtime-
link-dynamic/shared-linkable-true/signal_base.o"
"libs/signals/build/bin/libboost_signals.dylib/gcc/release/runtime-
link-dynamic/shared-linkable-true/slot.o"
...failed gcc-Link-action
libs/signals/build/bin/libboost_signals.dylib/gcc/release/runtime-link-
dynamic/shared-linkable-true/libboost_signals.dylib...
gcc-Link-action
libs/test/build/bin/libboost_prg_exec_monitor.dylib/gcc/debug/runtime-
link-static/shared-linkable-true/libboost_prg_exec_monitor.dylib
c++: unrecognized option `-shared'
ld: can't locate file for: -lcrt0.o
export DYLD_LIBRARY_PATH
c++ -static -g -fPIC -shared -o
"libs/test/build/bin/libboost_prg_exec_monitor.dylib/gcc/debug/runtime-
link-static/shared-linkable-true/libboost_prg_exec_monitor.dylib"
"libs/test/build/bin/libboost_prg_exec_monitor.dylib/gcc/debug/runtime-
link-static/shared-linkable-true/execution_monitor.o"
"libs/test/build/bin/libboost_prg_exec_monitor.dylib/gcc/debug/runtime-
link-static/shared-linkable-true/cpp_main.o"
...failed gcc-Link-action
libs/test/build/bin/libboost_prg_exec_monitor.dylib/gcc/debug/runtime-
link-static/shared-linkable-true/libboost_prg_exec_monitor.dylib...
gcc-Link-action
libs/test/build/bin/libboost_prg_exec_monitor.dylib/gcc/debug/runtime-
link-dynamic/shared-linkable-true/libboost_prg_exec_monitor.dylib
c++: unrecognized option `-shared'
ld: Undefined symbols:
cpp_main(int, char**)
export DYLD_LIBRARY_PATH
c++ -g -fPIC -shared -o
"libs/test/build/bin/libboost_prg_exec_monitor.dylib/gcc/debug/runtime-
link-dynamic/shared-linkable-true/libboost_prg_exec_monitor.dylib"
"libs/test/build/bin/libboost_prg_exec_monitor.dylib/gcc/debug/runtime-
link-dynamic/shared-linkable-true/execution_monitor.o"
"libs/test/build/bin/libboost_prg_exec_monitor.dylib/gcc/debug/runtime-
link-dynamic/shared-linkable-true/cpp_main.o"
...failed gcc-Link-action
libs/test/build/bin/libboost_prg_exec_monitor.dylib/gcc/debug/runtime-
link-dynamic/shared-linkable-true/libboost_prg_exec_monitor.dylib...
gcc-Link-action
libs/test/build/bin/libboost_test_exec_monitor.dylib/gcc/debug/runtime-
link-static/shared-linkable-true/libboost_test_exec_monitor.dylib
c++: unrecognized option `-shared'
ld: can't locate file for: -lcrt0.o
export DYLD_LIBRARY_PATH
c++ -static -g -fPIC -shared -o
"libs/test/build/bin/libboost_test_exec_monitor.dylib/gcc/debug/
runtime-link-static/shared-linkable-true/
libboost_test_exec_monitor.dylib"
"libs/test/build/bin/libboost_test_exec_monitor.dylib/gcc/debug/
runtime-link-static/shared-linkable-true/execution_monitor.o"
"libs/test/build/bin/libboost_test_exec_monitor.dylib/gcc/debug/
runtime-link-static/shared-linkable-true/test_tools.o"
"libs/test/build/bin/libboost_test_exec_monitor.dylib/gcc/debug/
runtime-link-static/shared-linkable-true/unit_test_parameters.o"
"libs/test/build/bin/libboost_test_exec_monitor.dylib/gcc/debug/
runtime-link-static/shared-linkable-true/unit_test_log.o"
"libs/test/build/bin/libboost_test_exec_monitor.dylib/gcc/debug/
runtime-link-static/shared-linkable-true/unit_test_monitor.o"
"libs/test/build/bin/libboost_test_exec_monitor.dylib/gcc/debug/
runtime-link-static/shared-linkable-true/unit_test_result.o"
"libs/test/build/bin/libboost_test_exec_monitor.dylib/gcc/debug/
runtime-link-static/shared-linkable-true/unit_test_suite.o"
"libs/test/build/bin/libboost_test_exec_monitor.dylib/gcc/debug/
runtime-link-static/shared-linkable-true/test_main.o"
...failed gcc-Link-action
libs/test/build/bin/libboost_test_exec_monitor.dylib/gcc/debug/runtime-
link-static/shared-linkable-true/libboost_test_exec_monitor.dylib...
gcc-Link-action
libs/test/build/bin/libboost_test_exec_monitor.dylib/gcc/debug/runtime-
link-dynamic/shared-linkable-true/libboost_test_exec_monitor.dylib
c++: unrecognized option `-shared'
ld: Undefined symbols:
test_main(int, char**)
export DYLD_LIBRARY_PATH
c++ -g -fPIC -shared -o
"libs/test/build/bin/libboost_test_exec_monitor.dylib/gcc/debug/
runtime-link-dynamic/shared-linkable-true/
libboost_test_exec_monitor.dylib"
"libs/test/build/bin/libboost_test_exec_monitor.dylib/gcc/debug/
runtime-link-dynamic/shared-linkable-true/execution_monitor.o"
"libs/test/build/bin/libboost_test_exec_monitor.dylib/gcc/debug/
runtime-link-dynamic/shared-linkable-true/test_tools.o"
"libs/test/build/bin/libboost_test_exec_monitor.dylib/gcc/debug/
runtime-link-dynamic/shared-linkable-true/unit_test_parameters.o"
"libs/test/build/bin/libboost_test_exec_monitor.dylib/gcc/debug/
runtime-link-dynamic/shared-linkable-true/unit_test_log.o"
"libs/test/build/bin/libboost_test_exec_monitor.dylib/gcc/debug/
runtime-link-dynamic/shared-linkable-true/unit_test_monitor.o"
"libs/test/build/bin/libboost_test_exec_monitor.dylib/gcc/debug/
runtime-link-dynamic/shared-linkable-true/unit_test_result.o"
"libs/test/build/bin/libboost_test_exec_monitor.dylib/gcc/debug/
runtime-link-dynamic/shared-linkable-true/unit_test_suite.o"
"libs/test/build/bin/libboost_test_exec_monitor.dylib/gcc/debug/
runtime-link-dynamic/shared-linkable-true/test_main.o"
...failed gcc-Link-action
libs/test/build/bin/libboost_test_exec_monitor.dylib/gcc/debug/runtime-
link-dynamic/shared-linkable-true/libboost_test_exec_monitor.dylib...
gcc-Link-action
libs/test/build/bin/libboost_unit_test_framework.dylib/gcc/debug/
runtime-link-static/shared-linkable-true/
libboost_unit_test_framework.dylib
c++: unrecognized option `-shared'
ld: can't locate file for: -lcrt0.o
export DYLD_LIBRARY_PATH
c++ -static -g -fPIC -shared -o
"libs/test/build/bin/libboost_unit_test_framework.dylib/gcc/debug/
runtime-link-static/shared-linkable-true/
libboost_unit_test_framework.dylib"
"libs/test/build/bin/libboost_unit_test_framework.dylib/gcc/debug/
runtime-link-static/shared-linkable-true/execution_monitor.o"
"libs/test/build/bin/libboost_unit_test_framework.dylib/gcc/debug/
runtime-link-static/shared-linkable-true/test_tools.o"
"libs/test/build/bin/libboost_unit_test_framework.dylib/gcc/debug/
runtime-link-static/shared-linkable-true/unit_test_parameters.o"
"libs/test/build/bin/libboost_unit_test_framework.dylib/gcc/debug/
runtime-link-static/shared-linkable-true/unit_test_log.o"
"libs/test/build/bin/libboost_unit_test_framework.dylib/gcc/debug/
runtime-link-static/shared-linkable-true/unit_test_monitor.o"
"libs/test/build/bin/libboost_unit_test_framework.dylib/gcc/debug/
runtime-link-static/shared-linkable-true/unit_test_result.o"
"libs/test/build/bin/libboost_unit_test_framework.dylib/gcc/debug/
runtime-link-static/shared-linkable-true/unit_test_suite.o"
"libs/test/build/bin/libboost_unit_test_framework.dylib/gcc/debug/
runtime-link-static/shared-linkable-true/unit_test_main.o"
...failed gcc-Link-action
libs/test/build/bin/libboost_unit_test_framework.dylib/gcc/debug/
runtime-link-static/shared-linkable-true/
libboost_unit_test_framework.dylib...
gcc-Link-action
libs/test/build/bin/libboost_unit_test_framework.dylib/gcc/debug/
runtime-link-dynamic/shared-linkable-true/
libboost_unit_test_framework.dylib
c++: unrecognized option `-shared'
ld: Undefined symbols:
init_unit_test_suite(int, char**)
export DYLD_LIBRARY_PATH
c++ -g -fPIC -shared -o
"libs/test/build/bin/libboost_unit_test_framework.dylib/gcc/debug/
runtime-link-dynamic/shared-linkable-true/
libboost_unit_test_framework.dylib"
"libs/test/build/bin/libboost_unit_test_framework.dylib/gcc/debug/
runtime-link-dynamic/shared-linkable-true/execution_monitor.o"
"libs/test/build/bin/libboost_unit_test_framework.dylib/gcc/debug/
runtime-link-dynamic/shared-linkable-true/test_tools.o"
"libs/test/build/bin/libboost_unit_test_framework.dylib/gcc/debug/
runtime-link-dynamic/shared-linkable-true/unit_test_parameters.o"
"libs/test/build/bin/libboost_unit_test_framework.dylib/gcc/debug/
runtime-link-dynamic/shared-linkable-true/unit_test_log.o"
"libs/test/build/bin/libboost_unit_test_framework.dylib/gcc/debug/
runtime-link-dynamic/shared-linkable-true/unit_test_monitor.o"
"libs/test/build/bin/libboost_unit_test_framework.dylib/gcc/debug/
runtime-link-dynamic/shared-linkable-true/unit_test_result.o"
"libs/test/build/bin/libboost_unit_test_framework.dylib/gcc/debug/
runtime-link-dynamic/shared-linkable-true/unit_test_suite.o"
"libs/test/build/bin/libboost_unit_test_framework.dylib/gcc/debug/
runtime-link-dynamic/shared-linkable-true/unit_test_main.o"
...failed gcc-Link-action
libs/test/build/bin/libboost_unit_test_framework.dylib/gcc/debug/
runtime-link-dynamic/shared-linkable-true/
libboost_unit_test_framework.dylib...
gcc-Link-action
libs/thread/build/bin/libboost_thread.dylib/gcc/debug/runtime-link-
dynamic/shared-linkable-true/libboost_thread.dylib
c++: unrecognized option `-shared'
ld: Undefined symbols:
_main
export DYLD_LIBRARY_PATH
c++ -g -fPIC -shared -o
"libs/thread/build/bin/libboost_thread.dylib/gcc/debug/runtime-link-
dynamic/shared-linkable-true/libboost_thread.dylib"
"libs/thread/build/bin/libboost_thread.dylib/gcc/debug/runtime-link-
dynamic/shared-linkable-true/condition.o"
"libs/thread/build/bin/libboost_thread.dylib/gcc/debug/runtime-link-
dynamic/shared-linkable-true/mutex.o"
"libs/thread/build/bin/libboost_thread.dylib/gcc/debug/runtime-link-
dynamic/shared-linkable-true/recursive_mutex.o"
"libs/thread/build/bin/libboost_thread.dylib/gcc/debug/runtime-link-
dynamic/shared-linkable-true/thread.o"
"libs/thread/build/bin/libboost_thread.dylib/gcc/debug/runtime-link-
dynamic/shared-linkable-true/tss.o"
"libs/thread/build/bin/libboost_thread.dylib/gcc/debug/runtime-link-
dynamic/shared-linkable-true/xtime.o"
"libs/thread/build/bin/libboost_thread.dylib/gcc/debug/runtime-link-
dynamic/shared-linkable-true/once.o"
"libs/thread/build/bin/libboost_thread.dylib/gcc/debug/runtime-link-
dynamic/shared-linkable-true/exceptions.o"
"libs/thread/build/bin/libboost_thread.dylib/gcc/debug/runtime-link-
dynamic/shared-linkable-true/threadmon.o"
...failed gcc-Link-action
libs/thread/build/bin/libboost_thread.dylib/gcc/debug/runtime-link-
dynamic/shared-linkable-true/libboost_thread.dylib...
...failed updating 19 targets...
...skipped 6 targets...
...updated 113 targets...
[aa:~/Library/Boost/boost-1.30.2] aelony%
2
1
It strikes me as odd that waiting on a condition variable is not const. It
seems to me that, although one does expect the condition variable to change
state, one is not actually requesting the change, but instead is merely
detecting a change made by another thread.
I can understand that, internally, the condition variable is probably
keeping lists of waiting threads, which would need to be modified in order
to satisfy the wait() call. From the point of view of the calling code,
however, I think that this is irrelevant.
Is there some other sense in which calling wait() can be considered to
modify the condition variable?
Weston Markham
3
2
I've tried to compile one of the examples from the filter_iterator
documentation:
main()
{
int numbers[] = { 0, -1, 4, -3, 5, 8, -2 };
const int N = sizeof(numbers)/sizeof(int);
std::copy(boost::make_filter_iterator(numbers, numbers + N,
std::bind2nd(std::greater<int>(),
-2)),
boost::make_filter_iterator(numbers + N, numbers + N,
std::bind2nd(std::greater<int>(),
-2)),
std::ostream_iterator<int>(std::cout, " "));
std::cout << std::endl;
}
using a version of g++ 3.3.2 that has concept-checks enabled. In this case
the compiler rejects both of the iterators returned by
make_filter_iterator in the above code because they do not fulfill the
InputIterator concept required by std::copy. This is because InputIterator
requires the DefaultConstructable concept, and the predicate:
std::bind2nd(std::greater<int>(),-2) , isn't default constructable.
My question is this: is this type of iterator (non-default-constructable)
safe to use in general even if it fails a conceptual requirement? Of
course the above code runs as expected with a normal g++ build and I could
always wrap the predicate in another object if I really wanted to use
concept-checks... but I'm interested in whether the above code is
considered normal and safe as it stands.
Thanks for any insight.
-Chris
2
1

21 Oct '03
David Abrahams <dave(a)boost-consulting.com> wrote:
<snip>
> > Thanks for the tips but how do i go about "..preprocessing
> > your code and looking for suspicious #includes."?
> > I never debugged the preprocess level before.
>
> Invoke your compiler with -E instead of -c (or /E instead of /c) and
> look at the #include lines for the names of old-style headers.
There are no #include directives in preprocessor output. There may be
#line directives or similar lines stating filenames though.
1
0
First of all, apologies if this information can be found somewhere else. I
couldn't find it anywhere on the internet.
Now to the real problem. I'm simply trying to utilize the boost libraries
(filesystem in particular) in my program. I'm just trying to even run the
example programs. I'm using Visual C++ 6.0 sp5.
I figured out how to compile it by including the directory where boost is. So
the example program compiles perfectly fine. Then the shit hits the fan, every
reference to any boost object gets an unresolved external error. I have no clue
why this is happening, and the most frustrating part is I cannot find
information anywhere on the internet on how to make it work. I find lots of
references telling me how great it is, but I cannot use it!
Dave
My compile output from visual c++ 6.0:
--------------------------------------------------------------------------------
Compiling...
path_test.cpp
Linking...
LINK : warning LNK4075: ignoring /INCREMENTAL due to /DEBUGTYPE specification
path_test.obj : error LNK2001: unresolved external symbol "public: __thiscall
boost::filesystem::path::path(class std::basic_string<char,struct
std::char_traits<char>,class std::allocator<char> > const &)"
(??0path@filesystem@boost@@QAE@ABV?$basic_s
tring@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@Z)
path_test.obj : error LNK2001: unresolved external symbol "public: __thiscall
boost::filesystem::path::path(char const *,enum boost::filesystem::path_format)"
(??0path@filesystem@boost@@QAE@PBDW4path_format@12@@Z)
path_test.obj : error LNK2001: unresolved external symbol "public: bool
__thiscall boost::filesystem::path::is_complete(void)const "
(?is_complete@path@filesystem@boost@@QBE_NXZ)
path_test.obj : error LNK2001: unresolved external symbol "public: bool
__thiscall boost::filesystem::path::has_branch_path(void)const "
(?has_branch_path@path@filesystem@boost@@QBE_NXZ)
path_test.obj : error LNK2001: unresolved external symbol "public: bool
__thiscall boost::filesystem::path::has_relative_path(void)const "
(?has_relative_path@path@filesystem@boost@@QBE_NXZ)
path_test.obj : error LNK2001: unresolved external symbol "public: bool
__thiscall boost::filesystem::path::has_root_directory(void)const "
(?has_root_directory@path@filesystem@boost@@QBE_NXZ)
path_test.obj : error LNK2001: unresolved external symbol "public: bool
__thiscall boost::filesystem::path::has_root_name(void)const "
(?has_root_name@path@filesystem@boost@@QBE_NXZ)
path_test.obj : error LNK2001: unresolved external symbol "public: bool
__thiscall boost::filesystem::path::has_root_path(void)const "
(?has_root_path@path@filesystem@boost@@QBE_NXZ)
path_test.obj : error LNK2001: unresolved external symbol "public: class
boost::filesystem::path __thiscall boost::filesystem::path::root_path(void)const
" (?root_path@path@filesystem@boost@@QBE?AV123@XZ)
path_test.obj : error LNK2001: unresolved external symbol "public: class
std::basic_string<char,struct std::char_traits<char>,class std::allocator<char>
> __thiscall boost::filesystem::path::root_directory(void)const "
(?root_directory@path@filesyst
em@boost@@QBE?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@XZ)
path_test.obj : error LNK2001: unresolved external symbol "public: class
std::basic_string<char,struct std::char_traits<char>,class std::allocator<char>
> __thiscall boost::filesystem::path::root_name(void)const "
(?root_name@path@filesystem@boost@@
QBE?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@XZ)
path_test.obj : error LNK2001: unresolved external symbol "public: class
boost::filesystem::path __thiscall
boost::filesystem::path::relative_path(void)const "
(?relative_path@path@filesystem@boost@@QBE?AV123@XZ)
path_test.obj : error LNK2001: unresolved external symbol "public: struct
boost::iterator_adaptor<struct boost::filesystem::detail::path_itr_imp,struct
boost::default_iterator_policies,class std::basic_string<char,struct
std::char_traits<char>,class
std::allocator<char> >,class std::basic_string<char,struct
std::char_traits<char>,class std::allocator<char> > const &,class
std::basic_string<char,struct std::char_traits<char>,class std::allocator<char>
> const *,struct std::bidirectional_iterato
r_tag,int> __thiscall boost::filesystem::path::begin(void)const "
(?begin@path@filesystem@boost@@QBE?AU?$iterator_adaptor@Upath_itr_imp@detail@filesystem@boost@@Udefault_iterator_policies@4@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@st
d@@ABV67@PBV67@Ubidirectional_iterator_tag@7@H@3@XZ)
path_test.obj : error LNK2001: unresolved external symbol "bool __cdecl
boost::filesystem::boost_directory_name(class std::basic_string<char,struct
std::char_traits<char>,class std::allocator<char> > const &)"
(?boost_directory_name@filesystem@boost
@@YA_NABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@Z)
path_test.obj : error LNK2001: unresolved external symbol "bool __cdecl
boost::filesystem::boost_file_name(class std::basic_string<char,struct
std::char_traits<char>,class std::allocator<char> > const &)"
(?boost_file_name@filesystem@boost@@YA_NABV?
$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@Z)
path_test.obj : error LNK2001: unresolved external symbol "bool __cdecl
boost::filesystem::posix_name(class std::basic_string<char,struct
std::char_traits<char>,class std::allocator<char> > const &)"
(?posix_name@filesystem@boost@@YA_NABV?$basic_str
ing@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@Z)
path_test.obj : error LNK2001: unresolved external symbol "public: class
boost::filesystem::path __thiscall
boost::filesystem::path::branch_path(void)const "
(?branch_path@path@filesystem@boost@@QBE?AV123@XZ)
path_test.obj : error LNK2001: unresolved external symbol "public: class
std::basic_string<char,struct std::char_traits<char>,class std::allocator<char>
> __thiscall boost::filesystem::path::leaf(void)const "
(?leaf@path@filesystem@boost@@QBE?AV?$ba
sic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@XZ)
path_test.obj : error LNK2001: unresolved external symbol "class
boost::filesystem::path const & __cdecl
boost::filesystem::check_posix_leaf(class boost::filesystem::path const &)"
(?check_posix_leaf@filesystem@boost@@YAABVpath@12@ABV312@@Z)
path_test.obj : error LNK2001: unresolved external symbol "bool __cdecl
boost::filesystem::exists(class boost::filesystem::path const &)"
(?exists@filesystem@boost@@YA_NABVpath@12@@Z)
path_test.obj : error LNK2001: unresolved external symbol "public: __thiscall
boost::filesystem::path::path(char const *)" (??0path@filesystem@boost@@QAE@PBD@Z)
path_test.obj : error LNK2001: unresolved external symbol "public: class
boost::filesystem::path & __thiscall boost::filesystem::path::operator/=(class
boost::filesystem::path const &)" (??_0path@filesystem@boost@@QAEAAV012@ABV012@@Z)
path_test.obj : error LNK2001: unresolved external symbol "public: void
__thiscall boost::filesystem::detail::path_itr_imp::operator++(void)"
(??Epath_itr_imp@detail@filesystem@boost@@QAEXXZ)
path_test.obj : error LNK2001: unresolved external symbol "public: void
__thiscall boost::filesystem::detail::path_itr_imp::operator--(void)"
(??Fpath_itr_imp@detail@filesystem@boost@@QAEXXZ)
Debug/path_test.exe : fatal error LNK1120: 24 unresolved externals
Error executing link.exe.
path_test.exe - 25 error(s), 1 warning(s)
_ ._ _ , _ ._
(_ ' ( ` )_ .__)
( ( ( ) `) ) _)
(__ (_ (_ . _) _) ,__)
`~~`\ ' . /`~~`
,::: ; ; :::,
':::::::::::::::'
_____________/_ __ \____________
David Kowis
Computer Programmer
-------------------------------------------------
This mail sent through IMP: http://horde.org/imp/
2
5
Hi,
Many applications are required to parse a string/file and extract numeric
values. You can use sscanf or alternatively use regexp with numeric casting
templates. I suprised that boost doesn't seem to contain conversion templates
like:
template < typename t_target > t_target decimal_cast( const std::string&
arg ){ ... };
template < typename t_target > t_target octal_cast( const std::string&
arg ){ ... };
template < typename t_target > t_target hex_cast( const std::string&
arg ){ ... };
When you use these type of casts with regexp, you can construct simple
robust parsers for reading numeric data from files, etc ..., in just a few
lines of code.
The lexical_cast and numeric_cast don't seem to cover these conversions.
This is much better approach than using parsing framework like spirit/antlr.
Shouldn't boost have this capability.
Regards
1
0

20 Oct '03
Hello, all-
For some reason bjam doesn't build the 'boost.thread' static libraries for
me (the shared libraries _do_ build properly, though). There are no errors,
no warnings- they just don't get built.
I'm working with boost-1.30.2 on Red Hat 9 using bjam 3.1.7 (the prebuilt
binary from sourceforge). I've tried executing ./configure and swapping out
'user.hpp', but this has no effect.
I'm mystified. Am I missing something obvious?
Regards,
Chris Brewer
2
1

[BUG]: Boost MP thread crasher: thread_cleanup key not being initialized
by Bobby Thomale 20 Oct '03
by Bobby Thomale 20 Oct '03
20 Oct '03
I believe I have found a crashing bug in the boost thread classes on MacOS
X, in the MP threads implementation.
I looked at the source and I think I have figured out what is wrong and how
to fix it.
The thread_cleanup function, which on the MP threads implementation is
called each time a boost thread exits, assumes that the "cleanup key" has
been initialized. If it hasn't been initialized (ie you aren't using any
thread specific storage), it still calls MPGetTaskStorageValue with the
uninitialized key index.
Here are the first few lines of thread_cleanup:
void thread_cleanup()
{
cleanup_handlers* handlers = reinterpret_cast<cleanup_handlers*>(
MPGetTaskStorageValue(key));
if(handlers != NULL)
{
...
If you have not used any thread-specific storage, key is an uninitialized
variable when this gets called. Not good.
It looks like for the most part, rather than puking, MPGetTaskStorageValue
is returning NULL when given an uninitialized key value, at least on 10.2.x.
(I am doing some testing on the upcoming 10.3 release of MacOS X and noted
that thread_cleanup crashes 100% of the time on this platform - I suspect
MPGetTaskStorageValue is no longer returning NULL.) Since "key" is an
uninitialized variable, I would think this would have unpredictable results
and would crash occasionally even on 10.2.x, whenever "key" happened to
start off as a value that was already in use maybe.
It seems to me that we should simply make sure that the key is inited when
calling thread_cleanup like so:
boost::call_once(&init_cleanup_key, once);
This makes sure that the key is inited, even if get_handlers is never
called. (Adding that line of code to the beginning of thread_cleanup
cleared up my crashing problems on 10.3 immediately.)
Is that proper use of the call_once mechanism?
Anyway, my first thought was to look at the implementations of threads on
the other platforms, since they don't have this call_once call in their
cleanup function before accessing the key either.
It looks to me like, at least in the Windows code, the cleanup function is
registered for the thread only during the get_handlers function, after the
key is inited. If get_handlers is never called, the cleanup function never
gets registered.
In the Mac implementation, however, cleanup_thread is called directly by the
thread proxy object at the end of thread execution, and it gets called even
if get_handlers has never been called and the key has never been
initialized.
Here is a patch for my proposed fix. (I am sure there are other ways of
fixing this too.)
Comments, anyone?
*** tss.orig.cpp Mon Oct 20 13:19:44 2003
--- tss.cpp Mon Oct 20 13:19:30 2003
***************
*** 126,131 ****
--- 126,133 ----
void thread_cleanup()
{
+ boost::call_once(&init_cleanup_key, once);
+
cleanup_handlers* handlers = reinterpret_cast<cleanup_handlers*>(
MPGetTaskStorageValue(key));
if(handlers != NULL)
-- Bobby
---------------------------------------------------------------------
Bobby Thomale
Senior Software Developer
Inoveon Corporation
http://www.inoveon.com/
---------------------------------------------------------------------
1
0
Hello,
I build a visitor for an undirected graph which finds the cut-vertices
of a given undireted graph or subgraph. I haven't found an
implementation of the algorithm in the bgl.
Maybe it would have been possible to use the predecessor_recorder for
that. But then all the information which can be found directly while
doing the df-search we have to find after having performed that search
first.
The interface of the undirected_dfs function doesn't take visitors via
reference, so it wasn't possible to use that function. I had to call the
detail::undir_dfv_impl function instead because that function takes a
visitor reference and I had to recreate a function with the behaviour of
the undirected_dfs.
What reasons lead to the decision to disable passing a visitor by
reference directly to undirected_dfs?
What reasons lead to the decision to pass a const graph to a visitor
function? Some useful things are disabled by that (but maybe also some
bad things).
Cheers,
Stephan
2
1
This is a minor point but one worth correcting for the sake of
correctness and ease of following the examples.
In the boost-1.30.2 distribution, the file
libs/graph/example/kevin-bacon.cpp
makes a reference to a "./kevin-bacon.dat" file, but the file in both
the distribution and the documentation is actually kevin_bacon.dat.
The only difference being '_' vs. '-'.
This is easily fixed by an end-user, but it would be nice to have the
examples work out of the box.
-tfo
3
3
Is anyone aware of any bugs in the graph library 'transitive_closure'
algorithm? I believe I have a concrete example that exhibits an obvious bug
(in particular, missing vertices that are reachable from certain source
vertices), but (1) wasn't sure if there was a work-around or some well-known
avoidance tactic and (2) whether anyone was actively supporting the graph
library components.
Thanks!
Jean-Paul Watson E-mail:
jwatson(a)sandia.gov
Discrete Math Dept (9215), MS 1110 Phone: (505) 845-8887
P.O. Box 5800, Sandia National Labs FAX: (505) 845-7442
Albuquerque, NM 87185-1110 USA (Old) URL:
http://www.cs.colostate.edu/~watsonj <http://www.cs.colostate.edu/~watsonj>
3
2
Hi,
I am a novice to all this. I am looking for a C++ library that would let
me interface with BLAS/LAPACK.
The immediate problem I have is the diagonalization of a large dense
symmetric (possibly hermitian) matrix. (Speed will be a consideration
eventually.) I would like to use the eigenproblem solvers in LAPACK.
I understand that uBLAS does not have a full interface to LAPACK yet,
but it looks like it is possible to use lapack at some level. (Does
anyone have an example program excerpt?)
I would be grateful for any advice about whether uBLAS is suitable for
this. I am also considering other libraries such as MTL and Blitz++.
I will be using Intel C++ compiler and/or GNU g++ on a Linux PC.
Regards
Derek
2
2

17 Oct '03
In trying to compile and run the Kevin Bacon example for graph in the
1.30.2 distribution of Boost, I was able to compile, but when I ran the
executable, I got:
kevin-bacon: /usr/local/boost-1.30.2/boost/token_iterator.hpp:75: void
boost::detail::tokenizer_policy<Type,
TokenizerFunc>::increment(Iterator&) [with Iterator =
boost::iterator_adaptor<boost::detail::token_iterator_base<__gnu_cxx::__normal_iterator<const char*, std::basic_string<char, std::char_traits<char>, std::allocator<char> > > >, boost::detail::tokenizer_policy<std::basic_string<char, std::char_traits<char>, std::allocator<char> >, boost::char_delimiters_separator<char, std::char_traits<char> > >, std::basic_string<char, std::char_traits<char>, std::allocator<char> >, const std::basic_string<char, std::char_traits<char>, std::allocator<char> >&, const std::basic_string<char, std::char_traits<char>, std::allocator<char> >*, std::forward_iterator_tag, ptrdiff_t>, Type = std::basic_string<char, std::char_traits<char>, std::allocator<char> >, TokenizerFunc = boost::char_delimiters_separator<char, std::char_traits<char> >]: Assertion `b.base().valid_' failed.
Aborted
Investigating led me to comment out the asserts on lines 69 and 75 of
boost/token_iterator.hpp just to test. When I rebuilt without the
asserts, I was able to run my executable with no problem with seemingly
correct output.
What purpose do the asserts serve, and why would they be failing?
-tfo
2
2
The shared_ptr constructor from raw pointer is marked explicit (quick explanation: http://www.glenmccl.com/tip_023.htm) This is because once you put a pointer into a shared_pointer, it's lifetime is now managed by the shared_ptr. The authors feel it is very important that this is completely intentional, and rightly so. It can have nasty side effects if you don't.
//untested code
void foo(boost::shared_ptr<int> p)
{
(*p)++;
}
int main()
{
int* p = new int(5);
foo(p);
std::cerr << "p is now " << *p << std::endl; //oops, p has been deleted!!!
return 0;
}
> -----Original Message-----
> From: Marcel Loose [mailto:loose@astron.nl]
> Sent: Friday, October 17, 2003 4:39 AM
> To: boost-users(a)lists.boost.org
> Subject: [Boost-users] [Q] shared_ptr c'tor
>
>
> Hi,
>
> I have a question related to the boost::shared_ptr constructor.
> I want to be able to store boost::shared_ptr<Base> objects in
> a std::vector. However, I don't want to bother my users with
> the fact (implementation detail) that I'm using shared_ptrs
> instead of raw pointers.
>
> The simplified sample code below more or less clarifies what
> I want. The code in line 27 is the code I would like to be
> able to use. Below that line, several attempts to get the
> code to compile can be found. I understand that line 32 won't
> compile, because it is equivalent to line 27. However, line
> 37 left me puzzled. I would expect that the conversion of B*
> to shared_ptr<B> would be trivial. Not so.
>
> Is it really true that the only way to use shared_ptr in the
> way I want is as in lines 46, 47? Or am I overlooking
> something? And is line 41 equivalent to line 46?
> Thanks in advance.
>
> Regards,
>
> Marcel Loose.
>
> P.S.: I noticed that all code will compile if I omit the
> "explicit" keyword in the constructor of shared_ptr, but I
> don't consider that the proper way to solve the problem.
>
>
> 1:#include <boost/shared_ptr.hpp>
> 2:#include <vector>
> 3:
> 4:using namespace std;
> 5:using namespace boost;
> 6:
> 7:class Base
> 8:{
> 9:public:
> 10: Base() { /* ... */ }
> 11: virtual ~Base() {}
> 12:};
> 13:
> 14:class Derived : public Base
> 15:{
> 16:public:
> 17: Derived() { /* ... */ }
> 18: virtual ~Derived() {}
> 19:};
> 20:
> 21:
> 22:int main()
> 23:{
> 24: vector<shared_ptr<Base> > v;
> 25:
> 26: { // failes to compile:
> 27: v.push_back(new Derived()); // cannot
> convert Derived*&
> 28: } // to
> shared_ptr<Base>. Why?
> 29:
> 30: { // failes to compile:
> 31: Derived* d(new Derived()); // cannot
> convert Derived*&
> 32: v.push_back(d); // to
> shared_ptr<Base>. Why?
> 33: }
> 34:
> 35: { // failes to compile:
> 36: Base* b(new Derived()); // cannot convert Base*&
> 37: v.push_back(b); // to
> shared_ptr<Base>. Huh?
> 38: } // Seems a
> trivial conversion.
> 39:
> 40: { // OK, this
> compiles, but is
> 41: shared_ptr<Derived> d(new Derived()); // it correct?
> I.e. is conversion
> 42: v.push_back(d); //
> shared_ptr<Derived> to
> 43: } //
> shared_ptr<Base> trivial?
> 44:
> 45: { // OK, this
> compiles, and is
> 46: shared_ptr<Base> b(new Derived()); // probably
> what I meant.
> 47: v.push_back(b); // However, I
> dislike the
> 48: } // verbosity.
> 49:
> 50: return 0;
> 51:}
>
> Just to be complete, please find the compiler diagnostics below.
>
> tBoost.cc: In function `int main()':
> tBoost.cc:27: no matching function for call to `
> std::vector<boost::shared_ptr<Base>,
> std::allocator<boost::shared_ptr<Base>
> > >::push_back(Derived*&)'
> /usr/local/gcc-3.2.1/include/c++/3.2.1/bits/stl_vector.h:490:
> candidates are:
> void std::vector<_Tp, _Alloc>::push_back(const _Tp&) [with _Tp =
> boost::shared_ptr<Base>, _Alloc =
> std::allocator<boost::shared_ptr<Base> >]
> tBoost.cc:32: no matching function for call to `
> std::vector<boost::shared_ptr<Base>,
> std::allocator<boost::shared_ptr<Base>
> > >::push_back(Derived*&)'
> /usr/local/gcc-3.2.1/include/c++/3.2.1/bits/stl_vector.h:490:
> candidates are:
> void std::vector<_Tp, _Alloc>::push_back(const _Tp&) [with _Tp =
> boost::shared_ptr<Base>, _Alloc =
> std::allocator<boost::shared_ptr<Base> >]
> tBoost.cc:37: no matching function for call to `
> std::vector<boost::shared_ptr<Base>,
> std::allocator<boost::shared_ptr<Base>
> > >::push_back(Base*&)'
> /usr/local/gcc-3.2.1/include/c++/3.2.1/bits/stl_vector.h:490:
> candidates are:
> void std::vector<_Tp, _Alloc>::push_back(const _Tp&) [with _Tp =
> boost::shared_ptr<Base>, _Alloc =
> std::allocator<boost::shared_ptr<Base> >]
>
> _______________________________________________
> Boost-users mailing list
> Boost-users(a)lists.boost.org
> http://lists.boost.org/mailman/listinfo.cgi/boost-users
>
-----------------------------------------------------------------------
DISCLAIMER: Information contained in this message and/or
attachment(s) may contain confidential information of Zetec, Inc.
If you have received this transmission in error, please notify
the sender by return email.
-----------------------------------------------------------------------
1
0
Hi,
I have a question related to the boost::shared_ptr constructor.
I want to be able to store boost::shared_ptr<Base> objects in a std::vector. However, I don't want to bother my users with the fact (implementation detail) that I'm using shared_ptrs instead of raw pointers.
The simplified sample code below more or less clarifies what I want. The code in line 27 is the code I would like to be able to use. Below that line, several attempts to get the code to compile can be found. I understand that line 32 won't compile, because it is equivalent to line 27. However, line 37 left me puzzled. I would expect that the conversion of B* to shared_ptr<B> would be trivial. Not so.
Is it really true that the only way to use shared_ptr in the way I want is as in lines 46, 47? Or am I overlooking something? And is line 41 equivalent to line 46?
Thanks in advance.
Regards,
Marcel Loose.
P.S.: I noticed that all code will compile if I omit the "explicit" keyword in the constructor of shared_ptr, but I don't consider that the proper way to solve the problem.
1:#include <boost/shared_ptr.hpp>
2:#include <vector>
3:
4:using namespace std;
5:using namespace boost;
6:
7:class Base
8:{
9:public:
10: Base() { /* ... */ }
11: virtual ~Base() {}
12:};
13:
14:class Derived : public Base
15:{
16:public:
17: Derived() { /* ... */ }
18: virtual ~Derived() {}
19:};
20:
21:
22:int main()
23:{
24: vector<shared_ptr<Base> > v;
25:
26: { // failes to compile:
27: v.push_back(new Derived()); // cannot convert Derived*&
28: } // to shared_ptr<Base>. Why?
29:
30: { // failes to compile:
31: Derived* d(new Derived()); // cannot convert Derived*&
32: v.push_back(d); // to shared_ptr<Base>. Why?
33: }
34:
35: { // failes to compile:
36: Base* b(new Derived()); // cannot convert Base*&
37: v.push_back(b); // to shared_ptr<Base>. Huh?
38: } // Seems a trivial conversion.
39:
40: { // OK, this compiles, but is
41: shared_ptr<Derived> d(new Derived()); // it correct? I.e. is conversion
42: v.push_back(d); // shared_ptr<Derived> to
43: } // shared_ptr<Base> trivial?
44:
45: { // OK, this compiles, and is
46: shared_ptr<Base> b(new Derived()); // probably what I meant.
47: v.push_back(b); // However, I dislike the
48: } // verbosity.
49:
50: return 0;
51:}
Just to be complete, please find the compiler diagnostics below.
tBoost.cc: In function `int main()':
tBoost.cc:27: no matching function for call to `
std::vector<boost::shared_ptr<Base>, std::allocator<boost::shared_ptr<Base>
> >::push_back(Derived*&)'
/usr/local/gcc-3.2.1/include/c++/3.2.1/bits/stl_vector.h:490: candidates are:
void std::vector<_Tp, _Alloc>::push_back(const _Tp&) [with _Tp =
boost::shared_ptr<Base>, _Alloc = std::allocator<boost::shared_ptr<Base> >]
tBoost.cc:32: no matching function for call to `
std::vector<boost::shared_ptr<Base>, std::allocator<boost::shared_ptr<Base>
> >::push_back(Derived*&)'
/usr/local/gcc-3.2.1/include/c++/3.2.1/bits/stl_vector.h:490: candidates are:
void std::vector<_Tp, _Alloc>::push_back(const _Tp&) [with _Tp =
boost::shared_ptr<Base>, _Alloc = std::allocator<boost::shared_ptr<Base> >]
tBoost.cc:37: no matching function for call to `
std::vector<boost::shared_ptr<Base>, std::allocator<boost::shared_ptr<Base>
> >::push_back(Base*&)'
/usr/local/gcc-3.2.1/include/c++/3.2.1/bits/stl_vector.h:490: candidates are:
void std::vector<_Tp, _Alloc>::push_back(const _Tp&) [with _Tp =
boost::shared_ptr<Base>, _Alloc = std::allocator<boost::shared_ptr<Base> >]
1
0
Hi
Can I store boost::mutex'es in a map using the following constuct
typedef boost::shared_ptr<boost::mutex> MutexPtr;
typedef map< std::string, MutexPtr> MutexMap;
MutextMap mmap;
mmap["foo"] = MutexPtr( new boost::mutex );
I'm not sure that this is safe to do - the boost::mutex is
boost::noncopyable which might indicate that there could be a
potentional problem.
Thanks in advance
1
0
>
>
>Date: Tue, 14 Oct 2003 16:02:25 +0300
>From: "Peter Dimov" <pdimov(a)mmltd.net>
>To: "Boost Users mailing list" <boost-users(a)lists.boost.org>
>Subject: Re: [Boost-users] shared_from_this
>
>Dragan Milenkovic wrote:
>
>
>>Hello, people,
>>
>>I've been using enable_shared_from_this a LOT, mostly for implementing
>>the Observer pattern (an object holds a list of weak pointers to it's
>>observers).
>>
>>
[snip]
>>Also, any comments on the designs I used? Better observers?
>>
>>
>
>It is hard to say; you'll need to go into more detail about the observers.
>If they are only notified on destruction of the observed entity, the typical
>shared_ptr approach is to reverse/eliminate the dependency and make the
>observers store weak pointers to the "observee".
>
>For other notification scenarios, there is the usual tradeoff between
>polling and messaging. I prefer polling most of the time since this
>eliminates the need to store an observer list and makes it possible to
>"observe" classes that weren't specifically designed for this, but there may
>be a performance cost.
>
>
Well this (new) question is about observers in general, concurrent
programming and C++.
I believe to be making my way up the learning curve, but this seems to
be a bit of problem.
The proper destruction... Here is what I've been thinking.
First the destruction of the subject (observee). As proposed in "Design
Patterns",
the subject could notify the observers about being destroyed, so the
observers can handle
that situation. But in my (more or less limited) experience, most often
the observer is the
one that controls the life-time of the subject (possibly by the means of
shared_ptr).
So this really presents no problem...
But how to synchronize the destruction of the observer with a nofication
originating from
another thread? The observer's destructor would most likely perform
Subject::unregister...
But a call to Observer::update might have already been dispatched...
The possible solutions I can think of are:
1. Make Subject::unregister have a postcodition stating that the
observer will receive
notifications no more (as of the moment the function returns). The words
that come
into my mind while thinking of possible implementations are: mutex,
condition,
dead-lock, inconsistency... What should the observer be allowed to do
from inside
the update function? Inspect only? I guess that could work...
2. Subject holds weak_ptr<Observer> and removes dead observers. I like
it because
of simplicity, but it (possibly) requires that Observer inherits
enable_shared_from_this.
In my design, the subject usualy passes a pointer to itself in the
Observer::update method...
Better yet - a shared_ptr, as it is more clean to compare shared
pointer, especially inside
the container. And how does it get shared_ptr to itself?
shared_from_this() again.
Is it really necessary? Although it does make the code easier to maintain.
I might be wrong, but I get the impression that there is not much
information on
multithreading and destruction in C++. Destruction the way it is, makes
C++ my language
of preference. The lectures usually starts with a queue or a buffer with
one mutex and one (or two)
conditional variables, but it doesn't get any better. How is the queue
destroyed? What about
consumer which is waiting on a conditional variable?
What is the common way of dealing with all this? Java-like interrupt?
That's basically what I've
been doing.
Many thanks,
Dragan Milenkovic
2
2
I was looking for a way to solve a linear system using ublas and came
upon this thread
http://article.gmane.org/gmane.comp.lib.boost.user/1632
So does this mean I have to decompose my matrix? Can I do it using ublas?
3
2

15 Oct '03
Hi Thomas,
Thanks for the bug report. Since the BGL book uses '-', and I can't change
that, I've instead change the documentation and source file to also use
'-' instead of '_'.
Cheers,
Jeremy
On Tue, 14 Oct 2003, Thomas F. O'Connell wrote:
tfo> This is a minor point but one worth correcting for the sake of
tfo> correctness and ease of following the examples.
tfo>
tfo> In the boost-1.30.2 distribution, the file
tfo>
tfo> libs/graph/example/kevin-bacon.cpp
tfo>
tfo> makes a reference to a "./kevin-bacon.dat" file, but the file in both
tfo> the distribution and the documentation is actually kevin_bacon.dat.
tfo>
tfo> The only difference being '_' vs. '-'.
tfo>
tfo> This is easily fixed by an end-user, but it would be nice to have the
tfo> examples work out of the box.
tfo>
tfo> -tfo
----------------------------------------------------------------------
Jeremy Siek http://php.indiana.edu/~jsiek/
Ph.D. Student, Indiana Univ. B'ton email: jsiek(a)osl.iu.edu
C++ Booster (http://www.boost.org) office phone: (812) 855-3608
----------------------------------------------------------------------
1
0
At line 109 of share_ptr (version 1.30.2) is the init list
shared_ptr(): px(0), pn()
which uses the default constructor for pn, which has type shared_count.
However, there appears to be no such default constructor in
shared_count. Am I missing something?
Andrew
P.S.: Forgive me if the answer appears somewhere easily searchable. I
was unable to find an archive for bug reports or for this list. Pointers
to such resources will be welcome.
1
0
Hi, I need a way to find out if the threads that I created are done or not.
I'm creating a somekind of thread_group that must clean the threads that
have ended from the vector that keeps the threads within.
void function ()
{}
void main ()
{
boost::thread thrd1(&function);
//I'd need a function here to tell me that the thread has ended...
if(thread1.IsDone())
{
...
}
}
How can I do such a thing, any ideas?
Thanks,
Simon
_________________________________________________________________
MSN Search, le moteur de recherche qui pense comme vous !
http://fr.ca.search.msn.com/
2
1
I wrote:
> John Maddock <john(a)johnmaddock.co.uk> wrote:
> > > I see that Regex++ always treats ^ and $ as start and end of line
> > > rather than start and end of buffer. Perl does this only if the
> > > /m switch is used. Is there a simple way to switch between these
> > > two interpretations when compiling a regex?
> >
> > No but you can use \A and \z for that purpose.
>
> I know that, but I want to be able to interpret user-supplied regexes
> either way. Maybe I can pre-process them to substitute ^ and $, but
> that seems awkward.
Alternately I could have the traits object return different
interpretations for them, but that would require either:
- switching between two specialisations of reg_expression at run-time
(resulting in code bloat)
or
- changing reg_expression's constructors to allow the client to pass
a traits object into it rather than always using the default
constructor (unusual usage of a traits class)
1
0
John Maddock <john(a)johnmaddock.co.uk> wrote:
> > I see that Regex++ always treats ^ and $ as start and end of line
> > rather than start and end of buffer. Perl does this only if the /m
> > switch is used. Is there a simple way to switch between these two
> > interpretations when compiling a regex?
>
> No but you can use \A and \z for that purpose.
I know that, but I want to be able to interpret user-supplied regexes
either way. Maybe I can pre-process them to substitute ^ and $, but
that seems awkward.
1
0