Boost-users
Threads by month
- ----- 2024 -----
- 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
October 2003
- 79 participants
- 79 discussions
I have a class that implements a buffer pool that allocates block of
memory, and the users "free" the memory when it is no longer needed back
to the buffer pool. Future allocations simply return the front of the
free list.
Simple enough, and the class returns shared_array<T> objects to
automatically free the memory back into the proper buffer pool.
The problem is, this mechanism is used so that during real-time operation
(this is a real-time system), there is absolutely no memory allocations
required. However, inside shared_array, it uses detail::shared_count and
inside shared_count it performs a new to create a sp_counted_base object.
So for every smart pointer object that supplies a deleter, it must perform
a new.
My proposal would be to include another constructor to both shared_array
(and probably it's corresponding smart pointer brothers) and to
shared_count that looks like:
shared_array(T *p, sp_counted_base *d) : px(p), pn(d) { }
shared_count(sp_counted_base *d) : pi_(d) { }
(I haven't implemented this yet, so the above may not be quite right)
The purpose of this is to supply an sp_counted_base object to the shared_*
object that does the delete functionality. This eliminates the new in the
case where a sp_counted_base object can be supplied. In the case of the
managed buffer pool mentioned above, the sp_counted_base object could be
allocated with the corresponding buffer, and then re-used for subsequent
"allocations" from the free list. This should result in no dynamic
allocations to create a shared_* object with a corresponding deleter.
I hope this makes sense. It should only require two new constuctors.
John
2
1
I am using bind heavily in my application. I noticed a problem that
may/may not be a boost issue but wanted to check if anyone had any quick
insights.
I am using 2 and 3 paramater functions with bind over a range with the
for_each operator. What I have noticed is everything is fine when the
system is build in debug mode. I then rebuild in release modes with all
optimizations turned on. The boost code crashes with access violations.
I disabled the optimization of Whole Program Optimization and everything
is fine. I believe I have noticed this with other template functions
where the whole program optimization causes problems. Has anyone seen
this before and do you know what causes it?
Just checking if this is a known boost problem or a VC 7.1 issues.
Mark Loew, MCSD, MCSE
Application Development Consultant
Sagestone Consulting
www.sagestone.com <http://www.sagestone.com/>
Grand Rapids, MI
616-954-9556 x149
Microsoft Gold Certified Partner
mloew(a)sagestone.com
2
1
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've
attached 2 files. One compiles but errors at runtime, the other doesn;t
compile.
The first method uses makes both class A and B inherit from
enable_shared_from_this. The 2nd method makes only the base class A
inherit from enable_shared_from_this and tries to dynamic cast to
shared_ptr<B>.
--
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() { shared_ptr<A> pA(shared_from_this());}
};
class B :
public A,
public enable_shared_from_this<B>
{
public:
B() { cout << "B" << endl;}
virtual void f()
{
shared_ptr<B> pB(enable_shared_from_this<B>::shared_from_this());
}
};
void main()
{
shared_ptr<A> a(new A);
a->f();
shared_ptr<B> b(new B);
b->f();
}
#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() { shared_ptr<A> pA(shared_from_this());}
};
class B :
public A
{
public:
B() { cout << "B" << endl;}
virtual void f()
{
shared_ptr<A> pA(shared_from_this());
shared_ptr<B> pB(dynamic_pointer_cast< shared_ptr<B> >(pA));
}
};
void main()
{
shared_ptr<A> a(new A);
a->f();
shared_ptr<B> b(new B);
b->f();
}
2
2
It appears that there is a new variant library (boost::variant), but that it
has been delayed.
Also, there is the old boost.any library.
And CUJ has a simple, ref-counted one here
http://www.cuj.com/documents/s=8034/cuj0010cacciola/cacciola.htm.
Also, CUJ has an article about boost::dynamic_any.
Which should I use?
I want to use one of the boost libraries, but I would like something small -
meaning it won't addmuch to the size of my executable. Most boost libraries
I can't use because they are too big (due to dependencies I assume).
Thanks,
Tom.
2
3
Hi!
I have looked around in the documentation and FAQs about my question,
but I don't seem to have found a satisfying answer.
My problem is that the boost libraries (especially function) seem to
successfully boost the code size of my C++ Builder program, too. The
source written by me is around twenty-some thousands of lines, plus the
VCL and stdc++ headres, the end result may be somewhere around half a
million lines in summary. But after having added some boost headers
(mainly function and bind) to where it's appropriate, the amount of
compiled lines on a full rebuild jumped to the ten million (!) range.
This is way too much. I'm not using any so that much advanced stuff that
it would be justified - and the compilation time is inacceptable for
such a small app.
So, does anyone have some clues regarding why boost may cause so much
bloat, and how I could reduce that?
thx
mortee
5
8
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