Problems installing h5py on Mac OS X 10.8

Hello,

I finally managed to install HDF5 following this tutorial:
http://cdx.jpl.nasa.gov/documents/technical-design/accessing-hdf-data-from-python-on-mac-os-x/

But now I'm stuck with h5py ...
Here I tried to follow following tutorial:
http://h5py.alfven.org/docs-2.1/intro/build.html

This is the answer i recieve:
python setup.py build

running build
running build_py
running build_ext
building 'h5py.defs' extension
gcc-4.2 -fno-strict-aliasing -fno-common -dynamic -arch i386 -arch x86_64 -g -O2 -DNDEBUG -g -O3 -DH5_USE_16_API -I/Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include -I/Volumes/DatenHD/axelperschmann/Downloads/Python/h5py-2.0.1/lzf -I/Library/Frameworks/Python.framework/Versions/2.7/lib/libhdf5.a/include -I/Library/Frameworks/Python.framework/Versions/2.7/include/python2.7 -c h5py/defs.c -o build/temp.macosx-10.6-intel-2.7/h5py/defs.o
cc1: error: /Library/Frameworks/Python.framework/Versions/2.7/lib/libhdf5.a/include: Not a directory
cc1: error: /Library/Frameworks/Python.framework/Versions/2.7/lib/libhdf5.a/include: Not a directory
lipo: can't figure out the architecture type of: /var/folders/bs/4rlp9mrd7bs1s_462ptr41p80000gn/T//ccL1e4xx.out
error: command 'gcc-4.2' failed with exit status 1

Can anyone help me?
In one forumpost I read, I might try following command:
python setup.py build --hdf5=<path to hdf5>

but where exactly is hdf5 located? within /Library/Frameworks/Python.framework/Versions/2.7/lib are several files with hdf5 in their names.

thanks,
Axel

What path should I use to install HDF5?

···

--
View this message in context: http://hdf-forum.184993.n3.nabble.com/Problems-installing-h5py-on-Mac-OS-X-10-8-tp4025498p4025502.html
Sent from the hdf-forum mailing list archive at Nabble.com.

It looks like the path to the installed HDF5 library is messed up and I think you need shared HDF5 in order to work with H5Py

I installed H5Py on my Mac 10.6.8 by building HDF5

./configure --with-szip=/path_to_szip_install_dir --enable-shared --prefix=/path_to_where_install_hdf5
make
make check
make install

Then I used

python setup.py build --hdf5=<path_to_where_install_hdf5>

Worked like magic :slight_smile:

Hope this helps.

Elena

···

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Elena Pourmal The HDF Group http://hdfgroup.org
1800 So. Oak St., Suite 203, Champaign IL 61820
217.531.6112
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

On Oct 19, 2012, at 9:53 AM, Axel Perschmann wrote:

Hello,

I finally managed to install HDF5 following this tutorial:
http://cdx.jpl.nasa.gov/documents/technical-design/accessing-hdf-data-from-python-on-mac-os-x/

But now I'm stuck with h5py ...
Here I tried to follow following tutorial:
http://h5py.alfven.org/docs-2.1/intro/build.html

This is the answer i recieve:
python setup.py build

running build
running build_py
running build_ext
building 'h5py.defs' extension
gcc-4.2 -fno-strict-aliasing -fno-common -dynamic -arch i386 -arch x86_64 -g -O2 -DNDEBUG -g -O3 -DH5_USE_16_API -I/Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include -I/Volumes/DatenHD/axelperschmann/Downloads/Python/h5py-2.0.1/lzf -I/Library/Frameworks/Python.framework/Versions/2.7/lib/libhdf5.a/include -I/Library/Frameworks/Python.framework/Versions/2.7/include/python2.7 -c h5py/defs.c -o build/temp.macosx-10.6-intel-2.7/h5py/defs.o
cc1: error: /Library/Frameworks/Python.framework/Versions/2.7/lib/libhdf5.a/include: Not a directory
cc1: error: /Library/Frameworks/Python.framework/Versions/2.7/lib/libhdf5.a/include: Not a directory
lipo: can't figure out the architecture type of: /var/folders/bs/4rlp9mrd7bs1s_462ptr41p80000gn/T//ccL1e4xx.out
error: command 'gcc-4.2' failed with exit status 1

Can anyone help me?
In one forumpost I read, I might try following command:
python setup.py build --hdf5=<path to hdf5>

but where exactly is hdf5 located? within /Library/Frameworks/Python.framework/Versions/2.7/lib are several files with hdf5 in their names.

thanks,
Axel
_______________________________________________
Hdf-forum is for HDF software users discussion.
Hdf-forum@hdfgroup.org
http://mail.hdfgroup.org/mailman/listinfo/hdf-forum_hdfgroup.org

Now I did as you said:

1.)
As path i randomly used this, since I didn't know what else to use: /Library/Frameworks/Python.framework/HDF5
<raw>
./configure --with-szip=/path_to_szip_install_dir --enable-shared --prefix=/Library/Frameworks/Python.framework/HDF5
make
make check
make install
</raw>

It went through without any error.

2.)
<raw>
python setup.py build --hdf5=/Library/Frameworks/Python.framework/HDF5
</raw>
followed by this result:
<raw>
Axel-Perschmanns-MacBook-Pro:h5py-2.1.0 axelperschmann$ python setup.py build --hdf5=/Library/Frameworks/Python.framework/HDF5
running build
running build_py
running build_ext
building 'h5py.defs' extension
gcc-4.2 -fno-strict-aliasing -fno-common -dynamic -arch i386 -arch x86_64 -g -O2 -DNDEBUG -g -O3 -DH5_USE_16_API -I/Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include -I/Volumes/DatenHD/axelperschmann/Downloads/Python/h5py-2.1.0/lzf -I/Library/Frameworks/Python.framework/HDF5/include -I/Library/Frameworks/Python.framework/Versions/2.7/include/python2.7 -c h5py/defs.c -o build/temp.macosx-10.6-intel-2.7/h5py/defs.o
In file included from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/ndarraytypes.h:1722,
                 from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/ndarrayobject.h:17,
                 from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/arrayobject.h:15,
                 from h5py/api_compat.h:20,
                 from h5py/defs.c:228:
/Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/npy_deprecated_api.h:11:2: warning: #warning "Using deprecated NumPy API, disable it by #defining NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION"
h5py/defs.c: In function ‘__pyx_f_4h5py_4defs_H5Lunpack_elink_val’:
h5py/defs.c:7072: warning: passing argument 4 of ‘H5Lunpack_elink_val’ from incompatible pointer type
h5py/defs.c:7072: warning: passing argument 5 of ‘H5Lunpack_elink_val’ from incompatible pointer type
h5py/defs.c: In function ‘__pyx_f_4h5py_4defs_H5Pset_fapl_multi’:
h5py/defs.c:10512: warning: passing argument 4 of ‘H5Pset_fapl_multi’ from incompatible pointer type
h5py/defs.c: In function ‘__pyx_f_4h5py_4defs_H5Pget_cache’:
h5py/defs.c:10672: warning: passing argument 3 of ‘H5Pget_cache’ from incompatible pointer type
h5py/defs.c: In function ‘__pyx_f_4h5py_4defs_H5Sselect_elements’:
h5py/defs.c:16902: warning: passing argument 4 of ‘H5Sselect_elements’ from incompatible pointer type
In file included from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/ndarraytypes.h:1722,
                 from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/ndarrayobject.h:17,
                 from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/arrayobject.h:15,
                 from h5py/api_compat.h:20,
                 from h5py/defs.c:228:
/Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/npy_deprecated_api.h:11:2: warning: #warning "Using deprecated NumPy API, disable it by #defining NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION"
h5py/defs.c: In function ‘__pyx_f_4h5py_4defs_H5Lunpack_elink_val’:
h5py/defs.c:7072: warning: passing argument 4 of ‘H5Lunpack_elink_val’ from incompatible pointer type
h5py/defs.c:7072: warning: passing argument 5 of ‘H5Lunpack_elink_val’ from incompatible pointer type
h5py/defs.c: In function ‘__pyx_f_4h5py_4defs_H5Pset_fapl_multi’:
h5py/defs.c:10512: warning: passing argument 4 of ‘H5Pset_fapl_multi’ from incompatible pointer type
h5py/defs.c: In function ‘__pyx_f_4h5py_4defs_H5Pget_cache’:
h5py/defs.c:10672: warning: passing argument 3 of ‘H5Pget_cache’ from incompatible pointer type
h5py/defs.c: In function ‘__pyx_f_4h5py_4defs_H5Sselect_elements’:
h5py/defs.c:16902: warning: passing argument 4 of ‘H5Sselect_elements’ from incompatible pointer type
gcc-4.2 -bundle -undefined dynamic_lookup -arch i386 -arch x86_64 -g build/temp.macosx-10.6-intel-2.7/h5py/defs.o -L/Library/Frameworks/Python.framework/HDF5/lib -L/Library/Frameworks/Python.framework/HDF5/lib -lhdf5 -lhdf5_hl -o build/lib.macosx-10.6-intel-2.7/h5py/defs.so
ld: warning: ignoring file /Library/Frameworks/Python.framework/HDF5/lib/libhdf5.dylib, file was built for unsupported file format ( 0xcf 0xfa 0xed 0xfe 0x 7 0x 0 0x 0 0x 1 0x 3 0x 0 0x 0 0x 0 0x 6 0x 0 0x 0 0x 0 ) which is not the architecture being linked (i386): /Library/Frameworks/Python.framework/HDF5/lib/libhdf5.dylib
ld: warning: ignoring file /Library/Frameworks/Python.framework/HDF5/lib/libhdf5_hl.dylib, file was built for unsupported file format ( 0xcf 0xfa 0xed 0xfe 0x 7 0x 0 0x 0 0x 1 0x 3 0x 0 0x 0 0x 0 0x 6 0x 0 0x 0 0x 0 ) which is not the architecture being linked (i386): /Library/Frameworks/Python.framework/HDF5/lib/libhdf5_hl.dylib
building 'h5py._errors' extension
gcc-4.2 -fno-strict-aliasing -fno-common -dynamic -arch i386 -arch x86_64 -g -O2 -DNDEBUG -g -O3 -DH5_USE_16_API -I/Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include -I/Volumes/DatenHD/axelperschmann/Downloads/Python/h5py-2.1.0/lzf -I/Library/Frameworks/Python.framework/HDF5/include -I/Library/Frameworks/Python.framework/Versions/2.7/include/python2.7 -c h5py/_errors.c -o build/temp.macosx-10.6-intel-2.7/h5py/_errors.o
In file included from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/ndarraytypes.h:1722,
                 from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/ndarrayobject.h:17,
                 from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/arrayobject.h:15,
                 from h5py/api_compat.h:20,
                 from h5py/_errors.c:228:
/Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/npy_deprecated_api.h:11:2: warning: #warning "Using deprecated NumPy API, disable it by #defining NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION"
h5py/_errors.c: In function ‘__pyx_f_4h5py_7_errors_set_exception’:
h5py/_errors.c:726: warning: assignment discards qualifiers from pointer target type
h5py/_errors.c: In function ‘__pyx_pf_4h5py_7_errors_1unsilence_errors’:
h5py/_errors.c:974: warning: passing argument 1 of ‘H5Eset_auto1’ from incompatible pointer type
In file included from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/ndarraytypes.h:1722,
                 from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/ndarrayobject.h:17,
                 from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/arrayobject.h:15,
                 from h5py/api_compat.h:20,
                 from h5py/_errors.c:228:
/Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/npy_deprecated_api.h:11:2: warning: #warning "Using deprecated NumPy API, disable it by #defining NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION"
h5py/_errors.c: In function ‘__pyx_f_4h5py_7_errors_set_exception’:
h5py/_errors.c:726: warning: assignment discards qualifiers from pointer target type
h5py/_errors.c: In function ‘__pyx_pf_4h5py_7_errors_1unsilence_errors’:
h5py/_errors.c:974: warning: passing argument 1 of ‘H5Eset_auto1’ from incompatible pointer type
gcc-4.2 -bundle -undefined dynamic_lookup -arch i386 -arch x86_64 -g build/temp.macosx-10.6-intel-2.7/h5py/_errors.o -L/Library/Frameworks/Python.framework/HDF5/lib -L/Library/Frameworks/Python.framework/HDF5/lib -lhdf5 -lhdf5_hl -o build/lib.macosx-10.6-intel-2.7/h5py/_errors.so
ld: warning: ignoring file /Library/Frameworks/Python.framework/HDF5/lib/libhdf5_hl.dylib, file was built for unsupported file format ( 0xcf 0xfa 0xed 0xfe 0x 7 0x 0 0x 0 0x 1 0x 3 0x 0 0x 0 0x 0 0x 6 0x 0 0x 0 0x 0 ) which is not the architecture being linked (i386): /Library/Frameworks/Python.framework/HDF5/lib/libhdf5_hl.dylib
ld: warning: ignoring file /Library/Frameworks/Python.framework/HDF5/lib/libhdf5.dylib, file was built for unsupported file format ( 0xcf 0xfa 0xed 0xfe 0x 7 0x 0 0x 0 0x 1 0x 3 0x 0 0x 0 0x 0 0x 6 0x 0 0x 0 0x 0 ) which is not the architecture being linked (i386): /Library/Frameworks/Python.framework/HDF5/lib/libhdf5.dylib
building 'h5py._objects' extension
gcc-4.2 -fno-strict-aliasing -fno-common -dynamic -arch i386 -arch x86_64 -g -O2 -DNDEBUG -g -O3 -DH5_USE_16_API -I/Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include -I/Volumes/DatenHD/axelperschmann/Downloads/Python/h5py-2.1.0/lzf -I/Library/Frameworks/Python.framework/HDF5/include -I/Library/Frameworks/Python.framework/Versions/2.7/include/python2.7 -c h5py/_objects.c -o build/temp.macosx-10.6-intel-2.7/h5py/_objects.o
In file included from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/ndarraytypes.h:1722,
                 from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/ndarrayobject.h:17,
                 from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/arrayobject.h:15,
                 from h5py/api_compat.h:20,
                 from h5py/_objects.c:228:
/Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/npy_deprecated_api.h:11:2: warning: #warning "Using deprecated NumPy API, disable it by #defining NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION"
In file included from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/ndarraytypes.h:1722,
                 from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/ndarrayobject.h:17,
                 from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/arrayobject.h:15,
                 from h5py/api_compat.h:20,
                 from h5py/_objects.c:228:
/Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/npy_deprecated_api.h:11:2: warning: #warning "Using deprecated NumPy API, disable it by #defining NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION"
gcc-4.2 -bundle -undefined dynamic_lookup -arch i386 -arch x86_64 -g build/temp.macosx-10.6-intel-2.7/h5py/_objects.o -L/Library/Frameworks/Python.framework/HDF5/lib -L/Library/Frameworks/Python.framework/HDF5/lib -lhdf5 -lhdf5_hl -o build/lib.macosx-10.6-intel-2.7/h5py/_objects.so
ld: warning: ignoring file /Library/Frameworks/Python.framework/HDF5/lib/libhdf5.dylib, file was built for unsupported file format ( 0xcf 0xfa 0xed 0xfe 0x 7 0x 0 0x 0 0x 1 0x 3 0x 0 0x 0 0x 0 0x 6 0x 0 0x 0 0x 0 ) which is not the architecture being linked (i386): /Library/Frameworks/Python.framework/HDF5/lib/libhdf5.dylib
ld: warning: ignoring file /Library/Frameworks/Python.framework/HDF5/lib/libhdf5_hl.dylib, file was built for unsupported file format ( 0xcf 0xfa 0xed 0xfe 0x 7 0x 0 0x 0 0x 1 0x 3 0x 0 0x 0 0x 0 0x 6 0x 0 0x 0 0x 0 ) which is not the architecture being linked (i386): /Library/Frameworks/Python.framework/HDF5/lib/libhdf5_hl.dylib
building 'h5py._proxy' extension
gcc-4.2 -fno-strict-aliasing -fno-common -dynamic -arch i386 -arch x86_64 -g -O2 -DNDEBUG -g -O3 -DH5_USE_16_API -I/Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include -I/Volumes/DatenHD/axelperschmann/Downloads/Python/h5py-2.1.0/lzf -I/Library/Frameworks/Python.framework/HDF5/include -I/Library/Frameworks/Python.framework/Versions/2.7/include/python2.7 -c h5py/_proxy.c -o build/temp.macosx-10.6-intel-2.7/h5py/_proxy.o
In file included from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/ndarraytypes.h:1722,
                 from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/ndarrayobject.h:17,
                 from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/arrayobject.h:15,
                 from h5py/api_compat.h:20,
                 from h5py/_proxy.c:228:
/Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/npy_deprecated_api.h:11:2: warning: #warning "Using deprecated NumPy API, disable it by #defining NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION"
h5py/_proxy.c: In function ‘__pyx_f_4h5py_6_proxy_h5py_copy’:
h5py/_proxy.c:2212: warning: passing argument 4 of ‘__pyx_f_4h5py_4defs_H5Diterate’ from incompatible pointer type
h5py/_proxy.c:2233: warning: passing argument 4 of ‘__pyx_f_4h5py_4defs_H5Diterate’ from incompatible pointer type
In file included from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/ndarraytypes.h:1722,
                 from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/ndarrayobject.h:17,
                 from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/arrayobject.h:15,
                 from h5py/api_compat.h:20,
                 from h5py/_proxy.c:228:
/Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/npy_deprecated_api.h:11:2: warning: #warning "Using deprecated NumPy API, disable it by #defining NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION"
h5py/_proxy.c: In function ‘__pyx_f_4h5py_6_proxy_h5py_copy’:
h5py/_proxy.c:2212: warning: passing argument 4 of ‘__pyx_f_4h5py_4defs_H5Diterate’ from incompatible pointer type
h5py/_proxy.c:2233: warning: passing argument 4 of ‘__pyx_f_4h5py_4defs_H5Diterate’ from incompatible pointer type
gcc-4.2 -bundle -undefined dynamic_lookup -arch i386 -arch x86_64 -g build/temp.macosx-10.6-intel-2.7/h5py/_proxy.o -L/Library/Frameworks/Python.framework/HDF5/lib -L/Library/Frameworks/Python.framework/HDF5/lib -lhdf5 -lhdf5_hl -o build/lib.macosx-10.6-intel-2.7/h5py/_proxy.so
ld: warning: ld: warning: ignoring file /Library/Frameworks/Python.framework/HDF5/lib/libhdf5.dylib, file was built for unsupported file format ( 0xcf 0xfa 0xed 0xfe 0x 7 0x 0 0x 0 0x 1 0x 3 0x 0 0x 0 0x 0 0x 6 0x 0 0x 0 0x 0 ) which is not the architecture being linked (i386): /Library/Frameworks/Python.framework/HDF5/lib/libhdf5.dylibignoring file /Library/Frameworks/Python.framework/HDF5/lib/libhdf5_hl.dylib, file was built for unsupported file format ( 0xcf 0xfa 0xed 0xfe 0x 7 0x 0 0x 0 0x 1 0x 3 0x 0 0x 0 0x 0 0x 6 0x 0 0x 0 0x 0 ) which is not the architecture being linked (i386): /Library/Frameworks/Python.framework/HDF5/lib/libhdf5_hl.dylib

building 'h5py.h5fd' extension
gcc-4.2 -fno-strict-aliasing -fno-common -dynamic -arch i386 -arch x86_64 -g -O2 -DNDEBUG -g -O3 -DH5_USE_16_API -I/Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include -I/Volumes/DatenHD/axelperschmann/Downloads/Python/h5py-2.1.0/lzf -I/Library/Frameworks/Python.framework/HDF5/include -I/Library/Frameworks/Python.framework/Versions/2.7/include/python2.7 -c h5py/h5fd.c -o build/temp.macosx-10.6-intel-2.7/h5py/h5fd.o
In file included from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/ndarraytypes.h:1722,
                 from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/ndarrayobject.h:17,
                 from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/arrayobject.h:15,
                 from h5py/api_compat.h:20,
                 from h5py/h5fd.c:228:
/Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/npy_deprecated_api.h:11:2: warning: #warning "Using deprecated NumPy API, disable it by #defining NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION"
In file included from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/ndarraytypes.h:1722,
                 from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/ndarrayobject.h:17,
                 from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/arrayobject.h:15,
                 from h5py/api_compat.h:20,
                 from h5py/h5fd.c:228:
/Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/npy_deprecated_api.h:11:2: warning: #warning "Using deprecated NumPy API, disable it by #defining NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION"
gcc-4.2 -bundle -undefined dynamic_lookup -arch i386 -arch x86_64 -g build/temp.macosx-10.6-intel-2.7/h5py/h5fd.o -L/Library/Frameworks/Python.framework/HDF5/lib -L/Library/Frameworks/Python.framework/HDF5/lib -lhdf5 -lhdf5_hl -o build/lib.macosx-10.6-intel-2.7/h5py/h5fd.so
ld: warning: ld: warning: ignoring file /Library/Frameworks/Python.framework/HDF5/lib/libhdf5.dylib, file was built for unsupported file format ( 0xcf 0xfa 0xed 0xfe 0x 7 0x 0 0x 0 0x 1 0x 3 0x 0 0x 0 0x 0 0x 6 0x 0 0x 0 0x 0 ) which is not the architecture being linked (i386): /Library/Frameworks/Python.framework/HDF5/lib/libhdf5.dylibignoring file /Library/Frameworks/Python.framework/HDF5/lib/libhdf5_hl.dylib, file was built for unsupported file format ( 0xcf 0xfa 0xed 0xfe 0x 7 0x 0 0x 0 0x 1 0x 3 0x 0 0x 0 0x 0 0x 6 0x 0 0x 0 0x 0 ) which is not the architecture being linked (i386): /Library/Frameworks/Python.framework/HDF5/lib/libhdf5_hl.dylib

building 'h5py.h5z' extension
creating build/temp.macosx-10.6-intel-2.7/Volumes
creating build/temp.macosx-10.6-intel-2.7/Volumes/DatenHD
creating build/temp.macosx-10.6-intel-2.7/Volumes/DatenHD/axelperschmann
creating build/temp.macosx-10.6-intel-2.7/Volumes/DatenHD/axelperschmann/Downloads
creating build/temp.macosx-10.6-intel-2.7/Volumes/DatenHD/axelperschmann/Downloads/Python
creating build/temp.macosx-10.6-intel-2.7/Volumes/DatenHD/axelperschmann/Downloads/Python/h5py-2.1.0
creating build/temp.macosx-10.6-intel-2.7/Volumes/DatenHD/axelperschmann/Downloads/Python/h5py-2.1.0/lzf
creating build/temp.macosx-10.6-intel-2.7/Volumes/DatenHD/axelperschmann/Downloads/Python/h5py-2.1.0/lzf/lzf
gcc-4.2 -fno-strict-aliasing -fno-common -dynamic -arch i386 -arch x86_64 -g -O2 -DNDEBUG -g -O3 -DH5_USE_16_API -I/Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include -I/Volumes/DatenHD/axelperschmann/Downloads/Python/h5py-2.1.0/lzf -I/Library/Frameworks/Python.framework/HDF5/include -I/Library/Frameworks/Python.framework/Versions/2.7/include/python2.7 -c h5py/h5z.c -o build/temp.macosx-10.6-intel-2.7/h5py/h5z.o
In file included from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/ndarraytypes.h:1722,
                 from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/ndarrayobject.h:17,
                 from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/arrayobject.h:15,
                 from h5py/api_compat.h:20,
                 from h5py/h5z.c:228:
/Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/npy_deprecated_api.h:11:2: warning: #warning "Using deprecated NumPy API, disable it by #defining NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION"
In file included from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/ndarraytypes.h:1722,
                 from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/ndarrayobject.h:17,
                 from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/arrayobject.h:15,
                 from h5py/api_compat.h:20,
                 from h5py/h5z.c:228:
/Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/npy_deprecated_api.h:11:2: warning: #warning "Using deprecated NumPy API, disable it by #defining NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION"
gcc-4.2 -fno-strict-aliasing -fno-common -dynamic -arch i386 -arch x86_64 -g -O2 -DNDEBUG -g -O3 -DH5_USE_16_API -I/Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include -I/Volumes/DatenHD/axelperschmann/Downloads/Python/h5py-2.1.0/lzf -I/Library/Frameworks/Python.framework/HDF5/include -I/Library/Frameworks/Python.framework/Versions/2.7/include/python2.7 -c /Volumes/DatenHD/axelperschmann/Downloads/Python/h5py-2.1.0/lzf/lzf_filter.c -o build/temp.macosx-10.6-intel-2.7/Volumes/DatenHD/axelperschmann/Downloads/Python/h5py-2.1.0/lzf/lzf_filter.o
gcc-4.2 -fno-strict-aliasing -fno-common -dynamic -arch i386 -arch x86_64 -g -O2 -DNDEBUG -g -O3 -DH5_USE_16_API -I/Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include -I/Volumes/DatenHD/axelperschmann/Downloads/Python/h5py-2.1.0/lzf -I/Library/Frameworks/Python.framework/HDF5/include -I/Library/Frameworks/Python.framework/Versions/2.7/include/python2.7 -c /Volumes/DatenHD/axelperschmann/Downloads/Python/h5py-2.1.0/lzf/lzf/lzf_c.c -o build/temp.macosx-10.6-intel-2.7/Volumes/DatenHD/axelperschmann/Downloads/Python/h5py-2.1.0/lzf/lzf/lzf_c.o
gcc-4.2 -fno-strict-aliasing -fno-common -dynamic -arch i386 -arch x86_64 -g -O2 -DNDEBUG -g -O3 -DH5_USE_16_API -I/Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include -I/Volumes/DatenHD/axelperschmann/Downloads/Python/h5py-2.1.0/lzf -I/Library/Frameworks/Python.framework/HDF5/include -I/Library/Frameworks/Python.framework/Versions/2.7/include/python2.7 -c /Volumes/DatenHD/axelperschmann/Downloads/Python/h5py-2.1.0/lzf/lzf/lzf_d.c -o build/temp.macosx-10.6-intel-2.7/Volumes/DatenHD/axelperschmann/Downloads/Python/h5py-2.1.0/lzf/lzf/lzf_d.o
gcc-4.2 -bundle -undefined dynamic_lookup -arch i386 -arch x86_64 -g build/temp.macosx-10.6-intel-2.7/h5py/h5z.o build/temp.macosx-10.6-intel-2.7/Volumes/DatenHD/axelperschmann/Downloads/Python/h5py-2.1.0/lzf/lzf_filter.o build/temp.macosx-10.6-intel-2.7/Volumes/DatenHD/axelperschmann/Downloads/Python/h5py-2.1.0/lzf/lzf/lzf_c.o build/temp.macosx-10.6-intel-2.7/Volumes/DatenHD/axelperschmann/Downloads/Python/h5py-2.1.0/lzf/lzf/lzf_d.o -L/Library/Frameworks/Python.framework/HDF5/lib -L/Library/Frameworks/Python.framework/HDF5/lib -lhdf5 -lhdf5_hl -o build/lib.macosx-10.6-intel-2.7/h5py/h5z.so
ld: warning: ld: warning: ignoring file /Library/Frameworks/Python.framework/HDF5/lib/libhdf5_hl.dylib, file was built for unsupported file format ( 0xcf 0xfa 0xed 0xfe 0x 7 0x 0 0x 0 0x 1 0x 3 0x 0 0x 0 0x 0 0x 6 0x 0 0x 0 0x 0 ) which is not the architecture being linked (i386): /Library/Frameworks/Python.framework/HDF5/lib/libhdf5_hl.dylibignoring file /Library/Frameworks/Python.framework/HDF5/lib/libhdf5.dylib, file was built for unsupported file format ( 0xcf 0xfa 0xed 0xfe 0x 7 0x 0 0x 0 0x 1 0x 3 0x 0 0x 0 0x 0 0x 6 0x 0 0x 0 0x 0 ) which is not the architecture being linked (i386): /Library/Frameworks/Python.framework/HDF5/lib/libhdf5.dylib

building 'h5py.h5' extension
gcc-4.2 -fno-strict-aliasing -fno-common -dynamic -arch i386 -arch x86_64 -g -O2 -DNDEBUG -g -O3 -DH5_USE_16_API -I/Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include -I/Volumes/DatenHD/axelperschmann/Downloads/Python/h5py-2.1.0/lzf -I/Library/Frameworks/Python.framework/HDF5/include -I/Library/Frameworks/Python.framework/Versions/2.7/include/python2.7 -c h5py/h5.c -o build/temp.macosx-10.6-intel-2.7/h5py/h5.o
In file included from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/ndarraytypes.h:1722,
                 from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/ndarrayobject.h:17,
                 from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/arrayobject.h:15,
                 from h5py/api_compat.h:20,
                 from h5py/h5.c:228:
/Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/npy_deprecated_api.h:11:2: warning: #warning "Using deprecated NumPy API, disable it by #defining NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION"
In file included from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/ndarraytypes.h:1722,
                 from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/ndarrayobject.h:17,
                 from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/arrayobject.h:15,
                 from h5py/api_compat.h:20,
                 from h5py/h5.c:228:
/Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/npy_deprecated_api.h:11:2: warning: #warning "Using deprecated NumPy API, disable it by #defining NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION"
gcc-4.2 -bundle -undefined dynamic_lookup -arch i386 -arch x86_64 -g build/temp.macosx-10.6-intel-2.7/h5py/h5.o -L/Library/Frameworks/Python.framework/HDF5/lib -L/Library/Frameworks/Python.framework/HDF5/lib -lhdf5 -lhdf5_hl -o build/lib.macosx-10.6-intel-2.7/h5py/h5.so
ld: warning: ignoring file /Library/Frameworks/Python.framework/HDF5/lib/libhdf5.dylib, file was built for unsupported file format ( 0xcf 0xfa 0xed 0xfe 0x 7 0x 0 0x 0 0x 1 0x 3 0x 0 0x 0 0x 0 0x 6 0x 0 0x 0 0x 0 ) which is not the architecture being linked (i386): /Library/Frameworks/Python.framework/HDF5/lib/libhdf5.dylib
ld: warning: ignoring file /Library/Frameworks/Python.framework/HDF5/lib/libhdf5_hl.dylib, file was built for unsupported file format ( 0xcf 0xfa 0xed 0xfe 0x 7 0x 0 0x 0 0x 1 0x 3 0x 0 0x 0 0x 0 0x 6 0x 0 0x 0 0x 0 ) which is not the architecture being linked (i386): /Library/Frameworks/Python.framework/HDF5/lib/libhdf5_hl.dylib
building 'h5py.h5i' extension
gcc-4.2 -fno-strict-aliasing -fno-common -dynamic -arch i386 -arch x86_64 -g -O2 -DNDEBUG -g -O3 -DH5_USE_16_API -I/Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include -I/Volumes/DatenHD/axelperschmann/Downloads/Python/h5py-2.1.0/lzf -I/Library/Frameworks/Python.framework/HDF5/include -I/Library/Frameworks/Python.framework/Versions/2.7/include/python2.7 -c h5py/h5i.c -o build/temp.macosx-10.6-intel-2.7/h5py/h5i.o
In file included from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/ndarraytypes.h:1722,
                 from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/ndarrayobject.h:17,
                 from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/arrayobject.h:15,
                 from h5py/api_compat.h:20,
                 from h5py/h5i.c:228:
/Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/npy_deprecated_api.h:11:2: warning: #warning "Using deprecated NumPy API, disable it by #defining NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION"
In file included from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/ndarraytypes.h:1722,
                 from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/ndarrayobject.h:17,
                 from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/arrayobject.h:15,
                 from h5py/api_compat.h:20,
                 from h5py/h5i.c:228:
/Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/npy_deprecated_api.h:11:2: warning: #warning "Using deprecated NumPy API, disable it by #defining NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION"
gcc-4.2 -bundle -undefined dynamic_lookup -arch i386 -arch x86_64 -g build/temp.macosx-10.6-intel-2.7/h5py/h5i.o -L/Library/Frameworks/Python.framework/HDF5/lib -L/Library/Frameworks/Python.framework/HDF5/lib -lhdf5 -lhdf5_hl -o build/lib.macosx-10.6-intel-2.7/h5py/h5i.so
ld: warning: ld: warning: ignoring file /Library/Frameworks/Python.framework/HDF5/lib/libhdf5_hl.dylib, file was built for unsupported file format ( 0xcf 0xfa 0xed 0xfe 0x 7 0x 0 0x 0 0x 1 0x 3 0x 0 0x 0 0x 0 0x 6 0x 0 0x 0 0x 0 ) which is not the architecture being linked (i386): /Library/Frameworks/Python.framework/HDF5/lib/libhdf5_hl.dylibignoring file /Library/Frameworks/Python.framework/HDF5/lib/libhdf5.dylib, file was built for unsupported file format ( 0xcf 0xfa 0xed 0xfe 0x 7 0x 0 0x 0 0x 1 0x 3 0x 0 0x 0 0x 0 0x 6 0x 0 0x 0 0x 0 ) which is not the architecture being linked (i386): /Library/Frameworks/Python.framework/HDF5/lib/libhdf5.dylib

building 'h5py.h5r' extension
gcc-4.2 -fno-strict-aliasing -fno-common -dynamic -arch i386 -arch x86_64 -g -O2 -DNDEBUG -g -O3 -DH5_USE_16_API -I/Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include -I/Volumes/DatenHD/axelperschmann/Downloads/Python/h5py-2.1.0/lzf -I/Library/Frameworks/Python.framework/HDF5/include -I/Library/Frameworks/Python.framework/Versions/2.7/include/python2.7 -c h5py/h5r.c -o build/temp.macosx-10.6-intel-2.7/h5py/h5r.o
In file included from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/ndarraytypes.h:1722,
                 from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/ndarrayobject.h:17,
                 from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/arrayobject.h:15,
                 from h5py/api_compat.h:20,
                 from h5py/h5r.c:228:
/Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/npy_deprecated_api.h:11:2: warning: #warning "Using deprecated NumPy API, disable it by #defining NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION"
In file included from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/ndarraytypes.h:1722,
                 from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/ndarrayobject.h:17,
                 from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/arrayobject.h:15,
                 from h5py/api_compat.h:20,
                 from h5py/h5r.c:228:
/Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/npy_deprecated_api.h:11:2: warning: #warning "Using deprecated NumPy API, disable it by #defining NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION"
gcc-4.2 -bundle -undefined dynamic_lookup -arch i386 -arch x86_64 -g build/temp.macosx-10.6-intel-2.7/h5py/h5r.o -L/Library/Frameworks/Python.framework/HDF5/lib -L/Library/Frameworks/Python.framework/HDF5/lib -lhdf5 -lhdf5_hl -o build/lib.macosx-10.6-intel-2.7/h5py/h5r.so
ld: warning: ignoring file /Library/Frameworks/Python.framework/HDF5/lib/libhdf5_hl.dylib, file was built for unsupported file format ( 0xcf 0xfa 0xed 0xfe 0x 7 0x 0 0x 0 0x 1 0x 3 0x 0 0x 0 0x 0 0x 6 0x 0 0x 0 0x 0 ) which is not the architecture being linked (i386): /Library/Frameworks/Python.framework/HDF5/lib/libhdf5_hl.dylib
ld: warning: ignoring file /Library/Frameworks/Python.framework/HDF5/lib/libhdf5.dylib, file was built for unsupported file format ( 0xcf 0xfa 0xed 0xfe 0x 7 0x 0 0x 0 0x 1 0x 3 0x 0 0x 0 0x 0 0x 6 0x 0 0x 0 0x 0 ) which is not the architecture being linked (i386): /Library/Frameworks/Python.framework/HDF5/lib/libhdf5.dylib
building 'h5py.utils' extension
gcc-4.2 -fno-strict-aliasing -fno-common -dynamic -arch i386 -arch x86_64 -g -O2 -DNDEBUG -g -O3 -DH5_USE_16_API -I/Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include -I/Volumes/DatenHD/axelperschmann/Downloads/Python/h5py-2.1.0/lzf -I/Library/Frameworks/Python.framework/HDF5/include -I/Library/Frameworks/Python.framework/Versions/2.7/include/python2.7 -c h5py/utils.c -o build/temp.macosx-10.6-intel-2.7/h5py/utils.o
In file included from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/ndarraytypes.h:1722,
                 from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/ndarrayobject.h:17,
                 from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/arrayobject.h:15,
                 from h5py/api_compat.h:20,
                 from h5py/utils.c:228:
/Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/npy_deprecated_api.h:11:2: warning: #warning "Using deprecated NumPy API, disable it by #defining NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION"
In file included from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/ndarraytypes.h:1722,
                 from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/ndarrayobject.h:17,
                 from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/arrayobject.h:15,
                 from h5py/api_compat.h:20,
                 from h5py/utils.c:228:
/Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/npy_deprecated_api.h:11:2: warning: #warning "Using deprecated NumPy API, disable it by #defining NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION"
gcc-4.2 -bundle -undefined dynamic_lookup -arch i386 -arch x86_64 -g build/temp.macosx-10.6-intel-2.7/h5py/utils.o -L/Library/Frameworks/Python.framework/HDF5/lib -L/Library/Frameworks/Python.framework/HDF5/lib -lhdf5 -lhdf5_hl -o build/lib.macosx-10.6-intel-2.7/h5py/utils.so
ld: warning: ignoring file /Library/Frameworks/Python.framework/HDF5/lib/libhdf5.dylib, file was built for unsupported file format ( 0xcf 0xfa 0xed 0xfe 0x 7 0x 0 0x 0 0x 1 0x 3 0x 0 0x 0 0x 0 0x 6 0x 0 0x 0 0x 0 ) which is not the architecture being linked (i386): /Library/Frameworks/Python.framework/HDF5/lib/libhdf5.dylib
ld: warning: ignoring file /Library/Frameworks/Python.framework/HDF5/lib/libhdf5_hl.dylib, file was built for unsupported file format ( 0xcf 0xfa 0xed 0xfe 0x 7 0x 0 0x 0 0x 1 0x 3 0x 0 0x 0 0x 0 0x 6 0x 0 0x 0 0x 0 ) which is not the architecture being linked (i386): /Library/Frameworks/Python.framework/HDF5/lib/libhdf5_hl.dylib
building 'h5py._conv' extension
gcc-4.2 -fno-strict-aliasing -fno-common -dynamic -arch i386 -arch x86_64 -g -O2 -DNDEBUG -g -O3 -DH5_USE_16_API -I/Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include -I/Volumes/DatenHD/axelperschmann/Downloads/Python/h5py-2.1.0/lzf -I/Library/Frameworks/Python.framework/HDF5/include -I/Library/Frameworks/Python.framework/Versions/2.7/include/python2.7 -c h5py/_conv.c -o build/temp.macosx-10.6-intel-2.7/h5py/_conv.o
In file included from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/ndarraytypes.h:1722,
                 from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/ndarrayobject.h:17,
                 from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/arrayobject.h:15,
                 from h5py/api_compat.h:20,
                 from h5py/_conv.c:228:
/Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/npy_deprecated_api.h:11:2: warning: #warning "Using deprecated NumPy API, disable it by #defining NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION"
In file included from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/ndarraytypes.h:1722,
                 from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/ndarrayobject.h:17,
                 from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/arrayobject.h:15,
                 from h5py/api_compat.h:20,
                 from h5py/_conv.c:228:
/Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/npy_deprecated_api.h:11:2: warning: #warning "Using deprecated NumPy API, disable it by #defining NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION"
gcc-4.2 -bundle -undefined dynamic_lookup -arch i386 -arch x86_64 -g build/temp.macosx-10.6-intel-2.7/h5py/_conv.o -L/Library/Frameworks/Python.framework/HDF5/lib -L/Library/Frameworks/Python.framework/HDF5/lib -lhdf5 -lhdf5_hl -o build/lib.macosx-10.6-intel-2.7/h5py/_conv.so
ld: warning: ld: warning: ignoring file /Library/Frameworks/Python.framework/HDF5/lib/libhdf5_hl.dylib, file was built for unsupported file format ( 0xcf 0xfa 0xed 0xfe 0x 7 0x 0 0x 0 0x 1 0x 3 0x 0 0x 0 0x 0 0x 6 0x 0 0x 0 0x 0 ) which is not the architecture being linked (i386): /Library/Frameworks/Python.framework/HDF5/lib/libhdf5_hl.dylibignoring file /Library/Frameworks/Python.framework/HDF5/lib/libhdf5.dylib, file was built for unsupported file format ( 0xcf 0xfa 0xed 0xfe 0x 7 0x 0 0x 0 0x 1 0x 3 0x 0 0x 0 0x 0 0x 6 0x 0 0x 0 0x 0 ) which is not the architecture being linked (i386): /Library/Frameworks/Python.framework/HDF5/lib/libhdf5.dylib

building 'h5py.h5t' extension
gcc-4.2 -fno-strict-aliasing -fno-common -dynamic -arch i386 -arch x86_64 -g -O2 -DNDEBUG -g -O3 -DH5_USE_16_API -I/Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include -I/Volumes/DatenHD/axelperschmann/Downloads/Python/h5py-2.1.0/lzf -I/Library/Frameworks/Python.framework/HDF5/include -I/Library/Frameworks/Python.framework/Versions/2.7/include/python2.7 -c h5py/h5t.c -o build/temp.macosx-10.6-intel-2.7/h5py/h5t.o
In file included from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/ndarraytypes.h:1722,
                 from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/ndarrayobject.h:17,
                 from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/arrayobject.h:15,
                 from h5py/api_compat.h:20,
                 from h5py/h5t.c:228:
/Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/npy_deprecated_api.h:11:2: warning: #warning "Using deprecated NumPy API, disable it by #defining NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION"
In file included from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/ndarraytypes.h:1722,
                 from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/ndarrayobject.h:17,
                 from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/arrayobject.h:15,
                 from h5py/api_compat.h:20,
                 from h5py/h5t.c:228:
/Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/npy_deprecated_api.h:11:2: warning: #warning "Using deprecated NumPy API, disable it by #defining NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION"
gcc-4.2 -bundle -undefined dynamic_lookup -arch i386 -arch x86_64 -g build/temp.macosx-10.6-intel-2.7/h5py/h5t.o -L/Library/Frameworks/Python.framework/HDF5/lib -L/Library/Frameworks/Python.framework/HDF5/lib -lhdf5 -lhdf5_hl -o build/lib.macosx-10.6-intel-2.7/h5py/h5t.so
ld: warning: ld: warning: ignoring file /Library/Frameworks/Python.framework/HDF5/lib/libhdf5_hl.dylib, file was built for unsupported file format ( 0xcf 0xfa 0xed 0xfe 0x 7 0x 0 0x 0 0x 1 0x 3 0x 0 0x 0 0x 0 0x 6 0x 0 0x 0 0x 0 ) which is not the architecture being linked (i386): /Library/Frameworks/Python.framework/HDF5/lib/libhdf5_hl.dylibignoring file /Library/Frameworks/Python.framework/HDF5/lib/libhdf5.dylib, file was built for unsupported file format ( 0xcf 0xfa 0xed 0xfe 0x 7 0x 0 0x 0 0x 1 0x 3 0x 0 0x 0 0x 0 0x 6 0x 0 0x 0 0x 0 ) which is not the architecture being linked (i386): /Library/Frameworks/Python.framework/HDF5/lib/libhdf5.dylib

building 'h5py.h5s' extension
gcc-4.2 -fno-strict-aliasing -fno-common -dynamic -arch i386 -arch x86_64 -g -O2 -DNDEBUG -g -O3 -DH5_USE_16_API -I/Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include -I/Volumes/DatenHD/axelperschmann/Downloads/Python/h5py-2.1.0/lzf -I/Library/Frameworks/Python.framework/HDF5/include -I/Library/Frameworks/Python.framework/Versions/2.7/include/python2.7 -c h5py/h5s.c -o build/temp.macosx-10.6-intel-2.7/h5py/h5s.o
In file included from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/ndarraytypes.h:1722,
                 from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/ndarrayobject.h:17,
                 from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/arrayobject.h:15,
                 from h5py/api_compat.h:20,
                 from h5py/h5s.c:228:
/Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/npy_deprecated_api.h:11:2: warning: #warning "Using deprecated NumPy API, disable it by #defining NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION"
In file included from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/ndarraytypes.h:1722,
                 from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/ndarrayobject.h:17,
                 from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/arrayobject.h:15,
                 from h5py/api_compat.h:20,
                 from h5py/h5s.c:228:
/Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/npy_deprecated_api.h:11:2: warning: #warning "Using deprecated NumPy API, disable it by #defining NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION"
gcc-4.2 -bundle -undefined dynamic_lookup -arch i386 -arch x86_64 -g build/temp.macosx-10.6-intel-2.7/h5py/h5s.o -L/Library/Frameworks/Python.framework/HDF5/lib -L/Library/Frameworks/Python.framework/HDF5/lib -lhdf5 -lhdf5_hl -o build/lib.macosx-10.6-intel-2.7/h5py/h5s.so
ld: warning: ignoring file /Library/Frameworks/Python.framework/HDF5/lib/libhdf5.dylib, file was built for unsupported file format ( 0xcf 0xfa 0xed 0xfe 0x 7 0x 0 0x 0 0x 1 0x 3 0x 0 0x 0 0x 0 0x 6 0x 0 0x 0 0x 0 ) which is not the architecture being linked (i386): /Library/Frameworks/Python.framework/HDF5/lib/libhdf5.dylib
ld: warning: ignoring file /Library/Frameworks/Python.framework/HDF5/lib/libhdf5_hl.dylib, file was built for unsupported file format ( 0xcf 0xfa 0xed 0xfe 0x 7 0x 0 0x 0 0x 1 0x 3 0x 0 0x 0 0x 0 0x 6 0x 0 0x 0 0x 0 ) which is not the architecture being linked (i386): /Library/Frameworks/Python.framework/HDF5/lib/libhdf5_hl.dylib
building 'h5py.h5p' extension
gcc-4.2 -fno-strict-aliasing -fno-common -dynamic -arch i386 -arch x86_64 -g -O2 -DNDEBUG -g -O3 -DH5_USE_16_API -I/Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include -I/Volumes/DatenHD/axelperschmann/Downloads/Python/h5py-2.1.0/lzf -I/Library/Frameworks/Python.framework/HDF5/include -I/Library/Frameworks/Python.framework/Versions/2.7/include/python2.7 -c h5py/h5p.c -o build/temp.macosx-10.6-intel-2.7/h5py/h5p.o
In file included from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/ndarraytypes.h:1722,
                 from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/ndarrayobject.h:17,
                 from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/arrayobject.h:15,
                 from h5py/api_compat.h:20,
                 from h5py/h5p.c:228:
/Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/npy_deprecated_api.h:11:2: warning: #warning "Using deprecated NumPy API, disable it by #defining NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION"
In file included from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/ndarraytypes.h:1722,
                 from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/ndarrayobject.h:17,
                 from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/arrayobject.h:15,
                 from h5py/api_compat.h:20,
                 from h5py/h5p.c:228:
/Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/npy_deprecated_api.h:11:2: warning: #warning "Using deprecated NumPy API, disable it by #defining NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION"
gcc-4.2 -bundle -undefined dynamic_lookup -arch i386 -arch x86_64 -g build/temp.macosx-10.6-intel-2.7/h5py/h5p.o -L/Library/Frameworks/Python.framework/HDF5/lib -L/Library/Frameworks/Python.framework/HDF5/lib -lhdf5 -lhdf5_hl -o build/lib.macosx-10.6-intel-2.7/h5py/h5p.so
ld: warning: ld: warning: ignoring file /Library/Frameworks/Python.framework/HDF5/lib/libhdf5_hl.dylib, file was built for unsupported file format ( 0xcf 0xfa 0xed 0xfe 0x 7 0x 0 0x 0 0x 1 0x 3 0x 0 0x 0 0x 0 0x 6 0x 0 0x 0 0x 0 ) which is not the architecture being linked (i386): /Library/Frameworks/Python.framework/HDF5/lib/libhdf5_hl.dylibignoring file /Library/Frameworks/Python.framework/HDF5/lib/libhdf5.dylib, file was built for unsupported file format ( 0xcf 0xfa 0xed 0xfe 0x 7 0x 0 0x 0 0x 1 0x 3 0x 0 0x 0 0x 0 0x 6 0x 0 0x 0 0x 0 ) which is not the architecture being linked (i386): /Library/Frameworks/Python.framework/HDF5/lib/libhdf5.dylib

building 'h5py.h5d' extension
gcc-4.2 -fno-strict-aliasing -fno-common -dynamic -arch i386 -arch x86_64 -g -O2 -DNDEBUG -g -O3 -DH5_USE_16_API -I/Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include -I/Volumes/DatenHD/axelperschmann/Downloads/Python/h5py-2.1.0/lzf -I/Library/Frameworks/Python.framework/HDF5/include -I/Library/Frameworks/Python.framework/Versions/2.7/include/python2.7 -c h5py/h5d.c -o build/temp.macosx-10.6-intel-2.7/h5py/h5d.o
In file included from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/ndarraytypes.h:1722,
                 from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/ndarrayobject.h:17,
                 from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/arrayobject.h:15,
                 from h5py/api_compat.h:20,
                 from h5py/h5d.c:228:
/Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/npy_deprecated_api.h:11:2: warning: #warning "Using deprecated NumPy API, disable it by #defining NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION"
In file included from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/ndarraytypes.h:1722,
                 from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/ndarrayobject.h:17,
                 from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/arrayobject.h:15,
                 from h5py/api_compat.h:20,
                 from h5py/h5d.c:228:
/Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/npy_deprecated_api.h:11:2: warning: #warning "Using deprecated NumPy API, disable it by #defining NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION"
gcc-4.2 -bundle -undefined dynamic_lookup -arch i386 -arch x86_64 -g build/temp.macosx-10.6-intel-2.7/h5py/h5d.o -L/Library/Frameworks/Python.framework/HDF5/lib -L/Library/Frameworks/Python.framework/HDF5/lib -lhdf5 -lhdf5_hl -o build/lib.macosx-10.6-intel-2.7/h5py/h5d.so
ld: warning: ld: warning: ignoring file /Library/Frameworks/Python.framework/HDF5/lib/libhdf5_hl.dylib, file was built for unsupported file format ( 0xcf 0xfa 0xed 0xfe 0x 7 0x 0 0x 0 0x 1 0x 3 0x 0 0x 0 0x 0 0x 6 0x 0 0x 0 0x 0 ) which is not the architecture being linked (i386): /Library/Frameworks/Python.framework/HDF5/lib/libhdf5_hl.dylibignoring file /Library/Frameworks/Python.framework/HDF5/lib/libhdf5.dylib, file was built for unsupported file format ( 0xcf 0xfa 0xed 0xfe 0x 7 0x 0 0x 0 0x 1 0x 3 0x 0 0x 0 0x 0 0x 6 0x 0 0x 0 0x 0 ) which is not the architecture being linked (i386): /Library/Frameworks/Python.framework/HDF5/lib/libhdf5.dylib

building 'h5py.h5a' extension
gcc-4.2 -fno-strict-aliasing -fno-common -dynamic -arch i386 -arch x86_64 -g -O2 -DNDEBUG -g -O3 -DH5_USE_16_API -I/Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include -I/Volumes/DatenHD/axelperschmann/Downloads/Python/h5py-2.1.0/lzf -I/Library/Frameworks/Python.framework/HDF5/include -I/Library/Frameworks/Python.framework/Versions/2.7/include/python2.7 -c h5py/h5a.c -o build/temp.macosx-10.6-intel-2.7/h5py/h5a.o
In file included from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/ndarraytypes.h:1722,
                 from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/ndarrayobject.h:17,
                 from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/arrayobject.h:15,
                 from h5py/api_compat.h:20,
                 from h5py/h5a.c:228:
/Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/npy_deprecated_api.h:11:2: warning: #warning "Using deprecated NumPy API, disable it by #defining NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION"
h5py/h5a.c: In function ‘__pyx_pf_4h5py_3h5a_7iterate’:
h5py/h5a.c:3541: warning: assignment from incompatible pointer type
h5py/h5a.c:3553: warning: assignment from incompatible pointer type
In file included from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/ndarraytypes.h:1722,
                 from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/ndarrayobject.h:17,
                 from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/arrayobject.h:15,
                 from h5py/api_compat.h:20,
                 from h5py/h5a.c:228:
/Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/npy_deprecated_api.h:11:2: warning: #warning "Using deprecated NumPy API, disable it by #defining NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION"
h5py/h5a.c: In function ‘__pyx_pf_4h5py_3h5a_7iterate’:
h5py/h5a.c:3541: warning: assignment from incompatible pointer type
h5py/h5a.c:3553: warning: assignment from incompatible pointer type
gcc-4.2 -bundle -undefined dynamic_lookup -arch i386 -arch x86_64 -g build/temp.macosx-10.6-intel-2.7/h5py/h5a.o -L/Library/Frameworks/Python.framework/HDF5/lib -L/Library/Frameworks/Python.framework/HDF5/lib -lhdf5 -lhdf5_hl -o build/lib.macosx-10.6-intel-2.7/h5py/h5a.so
ld: warning: ignoring file /Library/Frameworks/Python.framework/HDF5/lib/libhdf5.dylib, file was built for unsupported file format ( 0xcf 0xfa 0xed 0xfe 0x 7 0x 0 0x 0 0x 1 0x 3 0x 0 0x 0 0x 0 0x 6 0x 0 0x 0 0x 0 ) which is not the architecture being linked (i386): /Library/Frameworks/Python.framework/HDF5/lib/libhdf5.dylib
ld: warning: ignoring file /Library/Frameworks/Python.framework/HDF5/lib/libhdf5_hl.dylib, file was built for unsupported file format ( 0xcf 0xfa 0xed 0xfe 0x 7 0x 0 0x 0 0x 1 0x 3 0x 0 0x 0 0x 0 0x 6 0x 0 0x 0 0x 0 ) which is not the architecture being linked (i386): /Library/Frameworks/Python.framework/HDF5/lib/libhdf5_hl.dylib
building 'h5py.h5f' extension
gcc-4.2 -fno-strict-aliasing -fno-common -dynamic -arch i386 -arch x86_64 -g -O2 -DNDEBUG -g -O3 -DH5_USE_16_API -I/Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include -I/Volumes/DatenHD/axelperschmann/Downloads/Python/h5py-2.1.0/lzf -I/Library/Frameworks/Python.framework/HDF5/include -I/Library/Frameworks/Python.framework/Versions/2.7/include/python2.7 -c h5py/h5f.c -o build/temp.macosx-10.6-intel-2.7/h5py/h5f.o
In file included from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/ndarraytypes.h:1722,
                 from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/ndarrayobject.h:17,
                 from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/arrayobject.h:15,
                 from h5py/api_compat.h:20,
                 from h5py/h5f.c:228:
/Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/npy_deprecated_api.h:11:2: warning: #warning "Using deprecated NumPy API, disable it by #defining NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION"
In file included from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/ndarraytypes.h:1722,
                 from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/ndarrayobject.h:17,
                 from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/arrayobject.h:15,
                 from h5py/api_compat.h:20,
                 from h5py/h5f.c:228:
/Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/npy_deprecated_api.h:11:2: warning: #warning "Using deprecated NumPy API, disable it by #defining NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION"
gcc-4.2 -bundle -undefined dynamic_lookup -arch i386 -arch x86_64 -g build/temp.macosx-10.6-intel-2.7/h5py/h5f.o -L/Library/Frameworks/Python.framework/HDF5/lib -L/Library/Frameworks/Python.framework/HDF5/lib -lhdf5 -lhdf5_hl -o build/lib.macosx-10.6-intel-2.7/h5py/h5f.so
ld: warning: ld: warning: ignoring file /Library/Frameworks/Python.framework/HDF5/lib/libhdf5.dylib, file was built for unsupported file format ( 0xcf 0xfa 0xed 0xfe 0x 7 0x 0 0x 0 0x 1 0x 3 0x 0 0x 0 0x 0 0x 6 0x 0 0x 0 0x 0 ) which is not the architecture being linked (i386): /Library/Frameworks/Python.framework/HDF5/lib/libhdf5.dylibignoring file /Library/Frameworks/Python.framework/HDF5/lib/libhdf5_hl.dylib, file was built for unsupported file format ( 0xcf 0xfa 0xed 0xfe 0x 7 0x 0 0x 0 0x 1 0x 3 0x 0 0x 0 0x 0 0x 6 0x 0 0x 0 0x 0 ) which is not the architecture being linked (i386): /Library/Frameworks/Python.framework/HDF5/lib/libhdf5_hl.dylib

building 'h5py.h5g' extension
gcc-4.2 -fno-strict-aliasing -fno-common -dynamic -arch i386 -arch x86_64 -g -O2 -DNDEBUG -g -O3 -DH5_USE_16_API -I/Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include -I/Volumes/DatenHD/axelperschmann/Downloads/Python/h5py-2.1.0/lzf -I/Library/Frameworks/Python.framework/HDF5/include -I/Library/Frameworks/Python.framework/Versions/2.7/include/python2.7 -c h5py/h5g.c -o build/temp.macosx-10.6-intel-2.7/h5py/h5g.o
In file included from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/ndarraytypes.h:1722,
                 from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/ndarrayobject.h:17,
                 from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/arrayobject.h:15,
                 from h5py/api_compat.h:20,
                 from h5py/h5g.c:228:
/Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/npy_deprecated_api.h:11:2: warning: #warning "Using deprecated NumPy API, disable it by #defining NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION"
In file included from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/ndarraytypes.h:1722,
                 from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/ndarrayobject.h:17,
                 from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/arrayobject.h:15,
                 from h5py/api_compat.h:20,
                 from h5py/h5g.c:228:
/Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/npy_deprecated_api.h:11:2: warning: #warning "Using deprecated NumPy API, disable it by #defining NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION"
gcc-4.2 -bundle -undefined dynamic_lookup -arch i386 -arch x86_64 -g build/temp.macosx-10.6-intel-2.7/h5py/h5g.o -L/Library/Frameworks/Python.framework/HDF5/lib -L/Library/Frameworks/Python.framework/HDF5/lib -lhdf5 -lhdf5_hl -o build/lib.macosx-10.6-intel-2.7/h5py/h5g.so
ld: warning: ld: warning: ignoring file /Library/Frameworks/Python.framework/HDF5/lib/libhdf5.dylib, file was built for unsupported file format ( 0xcf 0xfa 0xed 0xfe 0x 7 0x 0 0x 0 0x 1 0x 3 0x 0 0x 0 0x 0 0x 6 0x 0 0x 0 0x 0 ) which is not the architecture being linked (i386): /Library/Frameworks/Python.framework/HDF5/lib/libhdf5.dylibignoring file /Library/Frameworks/Python.framework/HDF5/lib/libhdf5_hl.dylib, file was built for unsupported file format ( 0xcf 0xfa 0xed 0xfe 0x 7 0x 0 0x 0 0x 1 0x 3 0x 0 0x 0 0x 0 0x 6 0x 0 0x 0 0x 0 ) which is not the architecture being linked (i386): /Library/Frameworks/Python.framework/HDF5/lib/libhdf5_hl.dylib

building 'h5py.h5l' extension
gcc-4.2 -fno-strict-aliasing -fno-common -dynamic -arch i386 -arch x86_64 -g -O2 -DNDEBUG -g -O3 -DH5_USE_16_API -I/Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include -I/Volumes/DatenHD/axelperschmann/Downloads/Python/h5py-2.1.0/lzf -I/Library/Frameworks/Python.framework/HDF5/include -I/Library/Frameworks/Python.framework/Versions/2.7/include/python2.7 -c h5py/h5l.c -o build/temp.macosx-10.6-intel-2.7/h5py/h5l.o
In file included from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/ndarraytypes.h:1722,
                 from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/ndarrayobject.h:17,
                 from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/arrayobject.h:15,
                 from h5py/api_compat.h:20,
                 from h5py/h5l.c:228:
/Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/npy_deprecated_api.h:11:2: warning: #warning "Using deprecated NumPy API, disable it by #defining NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION"
h5py/h5l.c: In function ‘__pyx_pf_4h5py_3h5l_9LinkProxy_9visit’:
h5py/h5l.c:2829: warning: assignment from incompatible pointer type
h5py/h5l.c:2841: warning: assignment from incompatible pointer type
In file included from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/ndarraytypes.h:1722,
                 from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/ndarrayobject.h:17,
                 from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/arrayobject.h:15,
                 from h5py/api_compat.h:20,
                 from h5py/h5l.c:228:
/Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/npy_deprecated_api.h:11:2: warning: #warning "Using deprecated NumPy API, disable it by #defining NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION"
h5py/h5l.c: In function ‘__pyx_pf_4h5py_3h5l_9LinkProxy_9visit’:
h5py/h5l.c:2829: warning: assignment from incompatible pointer type
h5py/h5l.c:2841: warning: assignment from incompatible pointer type
gcc-4.2 -bundle -undefined dynamic_lookup -arch i386 -arch x86_64 -g build/temp.macosx-10.6-intel-2.7/h5py/h5l.o -L/Library/Frameworks/Python.framework/HDF5/lib -L/Library/Frameworks/Python.framework/HDF5/lib -lhdf5 -lhdf5_hl -o build/lib.macosx-10.6-intel-2.7/h5py/h5l.so
ld: warning: ld: warning: ignoring file /Library/Frameworks/Python.framework/HDF5/lib/libhdf5_hl.dylib, file was built for unsupported file format ( 0xcf 0xfa 0xed 0xfe 0x 7 0x 0 0x 0 0x 1 0x 3 0x 0 0x 0 0x 0 0x 6 0x 0 0x 0 0x 0 ) which is not the architecture being linked (i386): /Library/Frameworks/Python.framework/HDF5/lib/libhdf5_hl.dylibignoring file /Library/Frameworks/Python.framework/HDF5/lib/libhdf5.dylib, file was built for unsupported file format ( 0xcf 0xfa 0xed 0xfe 0x 7 0x 0 0x 0 0x 1 0x 3 0x 0 0x 0 0x 0 0x 6 0x 0 0x 0 0x 0 ) which is not the architecture being linked (i386): /Library/Frameworks/Python.framework/HDF5/lib/libhdf5.dylib

building 'h5py.h5o' extension
gcc-4.2 -fno-strict-aliasing -fno-common -dynamic -arch i386 -arch x86_64 -g -O2 -DNDEBUG -g -O3 -DH5_USE_16_API -I/Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include -I/Volumes/DatenHD/axelperschmann/Downloads/Python/h5py-2.1.0/lzf -I/Library/Frameworks/Python.framework/HDF5/include -I/Library/Frameworks/Python.framework/Versions/2.7/include/python2.7 -c h5py/h5o.c -o build/temp.macosx-10.6-intel-2.7/h5py/h5o.o
In file included from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/ndarraytypes.h:1722,
                 from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/ndarrayobject.h:17,
                 from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/arrayobject.h:15,
                 from h5py/api_compat.h:20,
                 from h5py/h5o.c:228:
/Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/npy_deprecated_api.h:11:2: warning: #warning "Using deprecated NumPy API, disable it by #defining NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION"
h5py/h5o.c: In function ‘__pyx_pf_4h5py_3h5o_6visit’:
h5py/h5o.c:3829: warning: assignment from incompatible pointer type
h5py/h5o.c:3841: warning: assignment from incompatible pointer type
In file included from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/ndarraytypes.h:1722,
                 from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/ndarrayobject.h:17,
                 from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/arrayobject.h:15,
                 from h5py/api_compat.h:20,
                 from h5py/h5o.c:228:
/Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/npy_deprecated_api.h:11:2: warning: #warning "Using deprecated NumPy API, disable it by #defining NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION"
h5py/h5o.c: In function ‘__pyx_pf_4h5py_3h5o_6visit’:
h5py/h5o.c:3829: warning: assignment from incompatible pointer type
h5py/h5o.c:3841: warning: assignment from incompatible pointer type
gcc-4.2 -bundle -undefined dynamic_lookup -arch i386 -arch x86_64 -g build/temp.macosx-10.6-intel-2.7/h5py/h5o.o -L/Library/Frameworks/Python.framework/HDF5/lib -L/Library/Frameworks/Python.framework/HDF5/lib -lhdf5 -lhdf5_hl -o build/lib.macosx-10.6-intel-2.7/h5py/h5o.so
ld: warning: ignoring file /Library/Frameworks/Python.framework/HDF5/lib/libhdf5.dylib, file was built for unsupported file format ( 0xcf 0xfa 0xed 0xfe 0x 7 0x 0 0x 0 0x 1 0x 3 0x 0 0x 0 0x 0 0x 6 0x 0 0x 0 0x 0 ) which is not the architecture being linked (i386): /Library/Frameworks/Python.framework/HDF5/lib/libhdf5.dylib
ld: warning: ignoring file /Library/Frameworks/Python.framework/HDF5/lib/libhdf5_hl.dylib, file was built for unsupported file format ( 0xcf 0xfa 0xed 0xfe 0x 7 0x 0 0x 0 0x 1 0x 3 0x 0 0x 0 0x 0 0x 6 0x 0 0x 0 0x 0 ) which is not the architecture being linked (i386): /Library/Frameworks/Python.framework/HDF5/lib/libhdf5_hl.dylib
building 'h5py.h5ds' extension
gcc-4.2 -fno-strict-aliasing -fno-common -dynamic -arch i386 -arch x86_64 -g -O2 -DNDEBUG -g -O3 -DH5_USE_16_API -I/Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include -I/Volumes/DatenHD/axelperschmann/Downloads/Python/h5py-2.1.0/lzf -I/Library/Frameworks/Python.framework/HDF5/include -I/Library/Frameworks/Python.framework/Versions/2.7/include/python2.7 -c h5py/h5ds.c -o build/temp.macosx-10.6-intel-2.7/h5py/h5ds.o
In file included from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/ndarraytypes.h:1722,
                 from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/ndarrayobject.h:17,
                 from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/arrayobject.h:15,
                 from h5py/api_compat.h:20,
                 from h5py/h5ds.c:228:
/Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/npy_deprecated_api.h:11:2: warning: #warning "Using deprecated NumPy API, disable it by #defining NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION"
In file included from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/ndarraytypes.h:1722,
                 from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/ndarrayobject.h:17,
                 from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/arrayobject.h:15,
                 from h5py/api_compat.h:20,
                 from h5py/h5ds.c:228:
/Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/npy_deprecated_api.h:11:2: warning: #warning "Using deprecated NumPy API, disable it by #defining NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION"
gcc-4.2 -bundle -undefined dynamic_lookup -arch i386 -arch x86_64 -g build/temp.macosx-10.6-intel-2.7/h5py/h5ds.o -L/Library/Frameworks/Python.framework/HDF5/lib -L/Library/Frameworks/Python.framework/HDF5/lib -lhdf5 -lhdf5_hl -o build/lib.macosx-10.6-intel-2.7/h5py/h5ds.so
ld: warning: ignoring file /Library/Frameworks/Python.framework/HDF5/lib/libhdf5_hl.dylib, file was built for unsupported file format ( 0xcf 0xfa 0xed 0xfe 0x 7 0x 0 0x 0 0x 1 0x 3 0x 0 0x 0 0x 0 0x 6 0x 0 0x 0 0x 0 ) which is not the architecture being linked (i386): /Library/Frameworks/Python.framework/HDF5/lib/libhdf5_hl.dylib
ld: warning: ignoring file /Library/Frameworks/Python.framework/HDF5/lib/libhdf5.dylib, file was built for unsupported file format ( 0xcf 0xfa 0xed 0xfe 0x 7 0x 0 0x 0 0x 1 0x 3 0x 0 0x 0 0x 0 0x 6 0x 0 0x 0 0x 0 ) which is not the architecture being linked (i386): /Library/Frameworks/Python.framework/HDF5/lib/libhdf5.dylib
</raw>

Afterwarts i tried
<raw>python import h5py</raw>

with this result:

<raw>Axel-Perschmanns-MacBook-Pro:h5py-2.1.0 axelperschmann$ python
Python 2.7.3 (v2.7.3:70274d53c1dd, Apr 9 2012, 20:52:43)
[GCC 4.2.1 (Apple Inc. build 5666) (dot 3)] on darwin
Type "help", "copyright", "credits" or "license" for more information.

import h5py

Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "h5py/__init__.py", line 1, in <module>
    from h5py import _errors
ImportError: cannot import name _errors

</raw>

I'm stuck and I do not have any idea, what went wrong :frowning:

Axel,

It looks like the HDF5 library cannot be linked with H5Py.

I think it is worth posting your question on the H5Py mailing list https://groups.google.com/forum/?fromgroups#!forum/h5py

Elena

···

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Elena Pourmal The HDF Group http://hdfgroup.org
1800 So. Oak St., Suite 203, Champaign IL 61820
217.531.6112
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

On Oct 19, 2012, at 12:03 PM, Axel Perschmann wrote:

Now I did as you said:

1.)
As path i randomly used this, since I didn't know what else to use: /Library/Frameworks/Python.framework/HDF5
<raw>
./configure --with-szip=/path_to_szip_install_dir --enable-shared --prefix=/Library/Frameworks/Python.framework/HDF5
make
make check
make install
</raw>

It went through without any error.

2.)
<raw>
python setup.py build --hdf5=/Library/Frameworks/Python.framework/HDF5
</raw>
followed by this result:
<raw>
Axel-Perschmanns-MacBook-Pro:h5py-2.1.0 axelperschmann$ python setup.py build --hdf5=/Library/Frameworks/Python.framework/HDF5
running build
running build_py
running build_ext
building 'h5py.defs' extension
gcc-4.2 -fno-strict-aliasing -fno-common -dynamic -arch i386 -arch x86_64 -g -O2 -DNDEBUG -g -O3 -DH5_USE_16_API -I/Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include -I/Volumes/DatenHD/axelperschmann/Downloads/Python/h5py-2.1.0/lzf -I/Library/Frameworks/Python.framework/HDF5/include -I/Library/Frameworks/Python.framework/Versions/2.7/include/python2.7 -c h5py/defs.c -o build/temp.macosx-10.6-intel-2.7/h5py/defs.o
In file included from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/ndarraytypes.h:1722,
                from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/ndarrayobject.h:17,
                from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/arrayobject.h:15,
                from h5py/api_compat.h:20,
                from h5py/defs.c:228:
/Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/npy_deprecated_api.h:11:2: warning: #warning "Using deprecated NumPy API, disable it by #defining NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION"
h5py/defs.c: In function ‘__pyx_f_4h5py_4defs_H5Lunpack_elink_val’:
h5py/defs.c:7072: warning: passing argument 4 of ‘H5Lunpack_elink_val’ from incompatible pointer type
h5py/defs.c:7072: warning: passing argument 5 of ‘H5Lunpack_elink_val’ from incompatible pointer type
h5py/defs.c: In function ‘__pyx_f_4h5py_4defs_H5Pset_fapl_multi’:
h5py/defs.c:10512: warning: passing argument 4 of ‘H5Pset_fapl_multi’ from incompatible pointer type
h5py/defs.c: In function ‘__pyx_f_4h5py_4defs_H5Pget_cache’:
h5py/defs.c:10672: warning: passing argument 3 of ‘H5Pget_cache’ from incompatible pointer type
h5py/defs.c: In function ‘__pyx_f_4h5py_4defs_H5Sselect_elements’:
h5py/defs.c:16902: warning: passing argument 4 of ‘H5Sselect_elements’ from incompatible pointer type
In file included from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/ndarraytypes.h:1722,
                from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/ndarrayobject.h:17,
                from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/arrayobject.h:15,
                from h5py/api_compat.h:20,
                from h5py/defs.c:228:
/Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/npy_deprecated_api.h:11:2: warning: #warning "Using deprecated NumPy API, disable it by #defining NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION"
h5py/defs.c: In function ‘__pyx_f_4h5py_4defs_H5Lunpack_elink_val’:
h5py/defs.c:7072: warning: passing argument 4 of ‘H5Lunpack_elink_val’ from incompatible pointer type
h5py/defs.c:7072: warning: passing argument 5 of ‘H5Lunpack_elink_val’ from incompatible pointer type
h5py/defs.c: In function ‘__pyx_f_4h5py_4defs_H5Pset_fapl_multi’:
h5py/defs.c:10512: warning: passing argument 4 of ‘H5Pset_fapl_multi’ from incompatible pointer type
h5py/defs.c: In function ‘__pyx_f_4h5py_4defs_H5Pget_cache’:
h5py/defs.c:10672: warning: passing argument 3 of ‘H5Pget_cache’ from incompatible pointer type
h5py/defs.c: In function ‘__pyx_f_4h5py_4defs_H5Sselect_elements’:
h5py/defs.c:16902: warning: passing argument 4 of ‘H5Sselect_elements’ from incompatible pointer type
gcc-4.2 -bundle -undefined dynamic_lookup -arch i386 -arch x86_64 -g build/temp.macosx-10.6-intel-2.7/h5py/defs.o -L/Library/Frameworks/Python.framework/HDF5/lib -L/Library/Frameworks/Python.framework/HDF5/lib -lhdf5 -lhdf5_hl -o build/lib.macosx-10.6-intel-2.7/h5py/defs.so
ld: warning: ignoring file /Library/Frameworks/Python.framework/HDF5/lib/libhdf5.dylib, file was built for unsupported file format ( 0xcf 0xfa 0xed 0xfe 0x 7 0x 0 0x 0 0x 1 0x 3 0x 0 0x 0 0x 0 0x 6 0x 0 0x 0 0x 0 ) which is not the architecture being linked (i386): /Library/Frameworks/Python.framework/HDF5/lib/libhdf5.dylib
ld: warning: ignoring file /Library/Frameworks/Python.framework/HDF5/lib/libhdf5_hl.dylib, file was built for unsupported file format ( 0xcf 0xfa 0xed 0xfe 0x 7 0x 0 0x 0 0x 1 0x 3 0x 0 0x 0 0x 0 0x 6 0x 0 0x 0 0x 0 ) which is not the architecture being linked (i386): /Library/Frameworks/Python.framework/HDF5/lib/libhdf5_hl.dylib
building 'h5py._errors' extension
gcc-4.2 -fno-strict-aliasing -fno-common -dynamic -arch i386 -arch x86_64 -g -O2 -DNDEBUG -g -O3 -DH5_USE_16_API -I/Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include -I/Volumes/DatenHD/axelperschmann/Downloads/Python/h5py-2.1.0/lzf -I/Library/Frameworks/Python.framework/HDF5/include -I/Library/Frameworks/Python.framework/Versions/2.7/include/python2.7 -c h5py/_errors.c -o build/temp.macosx-10.6-intel-2.7/h5py/_errors.o
In file included from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/ndarraytypes.h:1722,
                from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/ndarrayobject.h:17,
                from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/arrayobject.h:15,
                from h5py/api_compat.h:20,
                from h5py/_errors.c:228:
/Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/npy_deprecated_api.h:11:2: warning: #warning "Using deprecated NumPy API, disable it by #defining NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION"
h5py/_errors.c: In function ‘__pyx_f_4h5py_7_errors_set_exception’:
h5py/_errors.c:726: warning: assignment discards qualifiers from pointer target type
h5py/_errors.c: In function ‘__pyx_pf_4h5py_7_errors_1unsilence_errors’:
h5py/_errors.c:974: warning: passing argument 1 of ‘H5Eset_auto1’ from incompatible pointer type
In file included from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/ndarraytypes.h:1722,
                from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/ndarrayobject.h:17,
                from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/arrayobject.h:15,
                from h5py/api_compat.h:20,
                from h5py/_errors.c:228:
/Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/npy_deprecated_api.h:11:2: warning: #warning "Using deprecated NumPy API, disable it by #defining NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION"
h5py/_errors.c: In function ‘__pyx_f_4h5py_7_errors_set_exception’:
h5py/_errors.c:726: warning: assignment discards qualifiers from pointer target type
h5py/_errors.c: In function ‘__pyx_pf_4h5py_7_errors_1unsilence_errors’:
h5py/_errors.c:974: warning: passing argument 1 of ‘H5Eset_auto1’ from incompatible pointer type
gcc-4.2 -bundle -undefined dynamic_lookup -arch i386 -arch x86_64 -g build/temp.macosx-10.6-intel-2.7/h5py/_errors.o -L/Library/Frameworks/Python.framework/HDF5/lib -L/Library/Frameworks/Python.framework/HDF5/lib -lhdf5 -lhdf5_hl -o build/lib.macosx-10.6-intel-2.7/h5py/_errors.so
ld: warning: ignoring file /Library/Frameworks/Python.framework/HDF5/lib/libhdf5_hl.dylib, file was built for unsupported file format ( 0xcf 0xfa 0xed 0xfe 0x 7 0x 0 0x 0 0x 1 0x 3 0x 0 0x 0 0x 0 0x 6 0x 0 0x 0 0x 0 ) which is not the architecture being linked (i386): /Library/Frameworks/Python.framework/HDF5/lib/libhdf5_hl.dylib
ld: warning: ignoring file /Library/Frameworks/Python.framework/HDF5/lib/libhdf5.dylib, file was built for unsupported file format ( 0xcf 0xfa 0xed 0xfe 0x 7 0x 0 0x 0 0x 1 0x 3 0x 0 0x 0 0x 0 0x 6 0x 0 0x 0 0x 0 ) which is not the architecture being linked (i386): /Library/Frameworks/Python.framework/HDF5/lib/libhdf5.dylib
building 'h5py._objects' extension
gcc-4.2 -fno-strict-aliasing -fno-common -dynamic -arch i386 -arch x86_64 -g -O2 -DNDEBUG -g -O3 -DH5_USE_16_API -I/Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include -I/Volumes/DatenHD/axelperschmann/Downloads/Python/h5py-2.1.0/lzf -I/Library/Frameworks/Python.framework/HDF5/include -I/Library/Frameworks/Python.framework/Versions/2.7/include/python2.7 -c h5py/_objects.c -o build/temp.macosx-10.6-intel-2.7/h5py/_objects.o
In file included from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/ndarraytypes.h:1722,
                from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/ndarrayobject.h:17,
                from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/arrayobject.h:15,
                from h5py/api_compat.h:20,
                from h5py/_objects.c:228:
/Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/npy_deprecated_api.h:11:2: warning: #warning "Using deprecated NumPy API, disable it by #defining NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION"
In file included from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/ndarraytypes.h:1722,
                from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/ndarrayobject.h:17,
                from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/arrayobject.h:15,
                from h5py/api_compat.h:20,
                from h5py/_objects.c:228:
/Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/npy_deprecated_api.h:11:2: warning: #warning "Using deprecated NumPy API, disable it by #defining NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION"
gcc-4.2 -bundle -undefined dynamic_lookup -arch i386 -arch x86_64 -g build/temp.macosx-10.6-intel-2.7/h5py/_objects.o -L/Library/Frameworks/Python.framework/HDF5/lib -L/Library/Frameworks/Python.framework/HDF5/lib -lhdf5 -lhdf5_hl -o build/lib.macosx-10.6-intel-2.7/h5py/_objects.so
ld: warning: ignoring file /Library/Frameworks/Python.framework/HDF5/lib/libhdf5.dylib, file was built for unsupported file format ( 0xcf 0xfa 0xed 0xfe 0x 7 0x 0 0x 0 0x 1 0x 3 0x 0 0x 0 0x 0 0x 6 0x 0 0x 0 0x 0 ) which is not the architecture being linked (i386): /Library/Frameworks/Python.framework/HDF5/lib/libhdf5.dylib
ld: warning: ignoring file /Library/Frameworks/Python.framework/HDF5/lib/libhdf5_hl.dylib, file was built for unsupported file format ( 0xcf 0xfa 0xed 0xfe 0x 7 0x 0 0x 0 0x 1 0x 3 0x 0 0x 0 0x 0 0x 6 0x 0 0x 0 0x 0 ) which is not the architecture being linked (i386): /Library/Frameworks/Python.framework/HDF5/lib/libhdf5_hl.dylib
building 'h5py._proxy' extension
gcc-4.2 -fno-strict-aliasing -fno-common -dynamic -arch i386 -arch x86_64 -g -O2 -DNDEBUG -g -O3 -DH5_USE_16_API -I/Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include -I/Volumes/DatenHD/axelperschmann/Downloads/Python/h5py-2.1.0/lzf -I/Library/Frameworks/Python.framework/HDF5/include -I/Library/Frameworks/Python.framework/Versions/2.7/include/python2.7 -c h5py/_proxy.c -o build/temp.macosx-10.6-intel-2.7/h5py/_proxy.o
In file included from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/ndarraytypes.h:1722,
                from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/ndarrayobject.h:17,
                from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/arrayobject.h:15,
                from h5py/api_compat.h:20,
                from h5py/_proxy.c:228:
/Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/npy_deprecated_api.h:11:2: warning: #warning "Using deprecated NumPy API, disable it by #defining NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION"
h5py/_proxy.c: In function ‘__pyx_f_4h5py_6_proxy_h5py_copy’:
h5py/_proxy.c:2212: warning: passing argument 4 of ‘__pyx_f_4h5py_4defs_H5Diterate’ from incompatible pointer type
h5py/_proxy.c:2233: warning: passing argument 4 of ‘__pyx_f_4h5py_4defs_H5Diterate’ from incompatible pointer type
In file included from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/ndarraytypes.h:1722,
                from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/ndarrayobject.h:17,
                from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/arrayobject.h:15,
                from h5py/api_compat.h:20,
                from h5py/_proxy.c:228:
/Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/npy_deprecated_api.h:11:2: warning: #warning "Using deprecated NumPy API, disable it by #defining NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION"
h5py/_proxy.c: In function ‘__pyx_f_4h5py_6_proxy_h5py_copy’:
h5py/_proxy.c:2212: warning: passing argument 4 of ‘__pyx_f_4h5py_4defs_H5Diterate’ from incompatible pointer type
h5py/_proxy.c:2233: warning: passing argument 4 of ‘__pyx_f_4h5py_4defs_H5Diterate’ from incompatible pointer type
gcc-4.2 -bundle -undefined dynamic_lookup -arch i386 -arch x86_64 -g build/temp.macosx-10.6-intel-2.7/h5py/_proxy.o -L/Library/Frameworks/Python.framework/HDF5/lib -L/Library/Frameworks/Python.framework/HDF5/lib -lhdf5 -lhdf5_hl -o build/lib.macosx-10.6-intel-2.7/h5py/_proxy.so
ld: warning: ld: warning: ignoring file /Library/Frameworks/Python.framework/HDF5/lib/libhdf5.dylib, file was built for unsupported file format ( 0xcf 0xfa 0xed 0xfe 0x 7 0x 0 0x 0 0x 1 0x 3 0x 0 0x 0 0x 0 0x 6 0x 0 0x 0 0x 0 ) which is not the architecture being linked (i386): /Library/Frameworks/Python.framework/HDF5/lib/libhdf5.dylibignoring file /Library/Frameworks/Python.framework/HDF5/lib/libhdf5_hl.dylib, file was built for unsupported file format ( 0xcf 0xfa 0xed 0xfe 0x 7 0x 0 0x 0 0x 1 0x 3 0x 0 0x 0 0x 0 0x 6 0x 0 0x 0 0x 0 ) which is not the architecture being linked (i386): /Library/Frameworks/Python.framework/HDF5/lib/libhdf5_hl.dylib

building 'h5py.h5fd' extension
gcc-4.2 -fno-strict-aliasing -fno-common -dynamic -arch i386 -arch x86_64 -g -O2 -DNDEBUG -g -O3 -DH5_USE_16_API -I/Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include -I/Volumes/DatenHD/axelperschmann/Downloads/Python/h5py-2.1.0/lzf -I/Library/Frameworks/Python.framework/HDF5/include -I/Library/Frameworks/Python.framework/Versions/2.7/include/python2.7 -c h5py/h5fd.c -o build/temp.macosx-10.6-intel-2.7/h5py/h5fd.o
In file included from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/ndarraytypes.h:1722,
                from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/ndarrayobject.h:17,
                from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/arrayobject.h:15,
                from h5py/api_compat.h:20,
                from h5py/h5fd.c:228:
/Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/npy_deprecated_api.h:11:2: warning: #warning "Using deprecated NumPy API, disable it by #defining NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION"
In file included from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/ndarraytypes.h:1722,
                from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/ndarrayobject.h:17,
                from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/arrayobject.h:15,
                from h5py/api_compat.h:20,
                from h5py/h5fd.c:228:
/Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/npy_deprecated_api.h:11:2: warning: #warning "Using deprecated NumPy API, disable it by #defining NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION"
gcc-4.2 -bundle -undefined dynamic_lookup -arch i386 -arch x86_64 -g build/temp.macosx-10.6-intel-2.7/h5py/h5fd.o -L/Library/Frameworks/Python.framework/HDF5/lib -L/Library/Frameworks/Python.framework/HDF5/lib -lhdf5 -lhdf5_hl -o build/lib.macosx-10.6-intel-2.7/h5py/h5fd.so
ld: warning: ld: warning: ignoring file /Library/Frameworks/Python.framework/HDF5/lib/libhdf5.dylib, file was built for unsupported file format ( 0xcf 0xfa 0xed 0xfe 0x 7 0x 0 0x 0 0x 1 0x 3 0x 0 0x 0 0x 0 0x 6 0x 0 0x 0 0x 0 ) which is not the architecture being linked (i386): /Library/Frameworks/Python.framework/HDF5/lib/libhdf5.dylibignoring file /Library/Frameworks/Python.framework/HDF5/lib/libhdf5_hl.dylib, file was built for unsupported file format ( 0xcf 0xfa 0xed 0xfe 0x 7 0x 0 0x 0 0x 1 0x 3 0x 0 0x 0 0x 0 0x 6 0x 0 0x 0 0x 0 ) which is not the architecture being linked (i386): /Library/Frameworks/Python.framework/HDF5/lib/libhdf5_hl.dylib

building 'h5py.h5z' extension
creating build/temp.macosx-10.6-intel-2.7/Volumes
creating build/temp.macosx-10.6-intel-2.7/Volumes/DatenHD
creating build/temp.macosx-10.6-intel-2.7/Volumes/DatenHD/axelperschmann
creating build/temp.macosx-10.6-intel-2.7/Volumes/DatenHD/axelperschmann/Downloads
creating build/temp.macosx-10.6-intel-2.7/Volumes/DatenHD/axelperschmann/Downloads/Python
creating build/temp.macosx-10.6-intel-2.7/Volumes/DatenHD/axelperschmann/Downloads/Python/h5py-2.1.0
creating build/temp.macosx-10.6-intel-2.7/Volumes/DatenHD/axelperschmann/Downloads/Python/h5py-2.1.0/lzf
creating build/temp.macosx-10.6-intel-2.7/Volumes/DatenHD/axelperschmann/Downloads/Python/h5py-2.1.0/lzf/lzf
gcc-4.2 -fno-strict-aliasing -fno-common -dynamic -arch i386 -arch x86_64 -g -O2 -DNDEBUG -g -O3 -DH5_USE_16_API -I/Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include -I/Volumes/DatenHD/axelperschmann/Downloads/Python/h5py-2.1.0/lzf -I/Library/Frameworks/Python.framework/HDF5/include -I/Library/Frameworks/Python.framework/Versions/2.7/include/python2.7 -c h5py/h5z.c -o build/temp.macosx-10.6-intel-2.7/h5py/h5z.o
In file included from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/ndarraytypes.h:1722,
                from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/ndarrayobject.h:17,
                from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/arrayobject.h:15,
                from h5py/api_compat.h:20,
                from h5py/h5z.c:228:
/Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/npy_deprecated_api.h:11:2: warning: #warning "Using deprecated NumPy API, disable it by #defining NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION"
In file included from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/ndarraytypes.h:1722,
                from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/ndarrayobject.h:17,
                from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/arrayobject.h:15,
                from h5py/api_compat.h:20,
                from h5py/h5z.c:228:
/Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/npy_deprecated_api.h:11:2: warning: #warning "Using deprecated NumPy API, disable it by #defining NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION"
gcc-4.2 -fno-strict-aliasing -fno-common -dynamic -arch i386 -arch x86_64 -g -O2 -DNDEBUG -g -O3 -DH5_USE_16_API -I/Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include -I/Volumes/DatenHD/axelperschmann/Downloads/Python/h5py-2.1.0/lzf -I/Library/Frameworks/Python.framework/HDF5/include -I/Library/Frameworks/Python.framework/Versions/2.7/include/python2.7 -c /Volumes/DatenHD/axelperschmann/Downloads/Python/h5py-2.1.0/lzf/lzf_filter.c -o build/temp.macosx-10.6-intel-2.7/Volumes/DatenHD/axelperschmann/Downloads/Python/h5py-2.1.0/lzf/lzf_filter.o
gcc-4.2 -fno-strict-aliasing -fno-common -dynamic -arch i386 -arch x86_64 -g -O2 -DNDEBUG -g -O3 -DH5_USE_16_API -I/Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include -I/Volumes/DatenHD/axelperschmann/Downloads/Python/h5py-2.1.0/lzf -I/Library/Frameworks/Python.framework/HDF5/include -I/Library/Frameworks/Python.framework/Versions/2.7/include/python2.7 -c /Volumes/DatenHD/axelperschmann/Downloads/Python/h5py-2.1.0/lzf/lzf/lzf_c.c -o build/temp.macosx-10.6-intel-2.7/Volumes/DatenHD/axelperschmann/Downloads/Python/h5py-2.1.0/lzf/lzf/lzf_c.o
gcc-4.2 -fno-strict-aliasing -fno-common -dynamic -arch i386 -arch x86_64 -g -O2 -DNDEBUG -g -O3 -DH5_USE_16_API -I/Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include -I/Volumes/DatenHD/axelperschmann/Downloads/Python/h5py-2.1.0/lzf -I/Library/Frameworks/Python.framework/HDF5/include -I/Library/Frameworks/Python.framework/Versions/2.7/include/python2.7 -c /Volumes/DatenHD/axelperschmann/Downloads/Python/h5py-2.1.0/lzf/lzf/lzf_d.c -o build/temp.macosx-10.6-intel-2.7/Volumes/DatenHD/axelperschmann/Downloads/Python/h5py-2.1.0/lzf/lzf/lzf_d.o
gcc-4.2 -bundle -undefined dynamic_lookup -arch i386 -arch x86_64 -g build/temp.macosx-10.6-intel-2.7/h5py/h5z.o build/temp.macosx-10.6-intel-2.7/Volumes/DatenHD/axelperschmann/Downloads/Python/h5py-2.1.0/lzf/lzf_filter.o build/temp.macosx-10.6-intel-2.7/Volumes/DatenHD/axelperschmann/Downloads/Python/h5py-2.1.0/lzf/lzf/lzf_c.o build/temp.macosx-10.6-intel-2.7/Volumes/DatenHD/axelperschmann/Downloads/Python/h5py-2.1.0/lzf/lzf/lzf_d.o -L/Library/Frameworks/Python.framework/HDF5/lib -L/Library/Frameworks/Python.framework/HDF5/lib -lhdf5 -lhdf5_hl -o build/lib.macosx-10.6-intel-2.7/h5py/h5z.so
ld: warning: ld: warning: ignoring file /Library/Frameworks/Python.framework/HDF5/lib/libhdf5_hl.dylib, file was built for unsupported file format ( 0xcf 0xfa 0xed 0xfe 0x 7 0x 0 0x 0 0x 1 0x 3 0x 0 0x 0 0x 0 0x 6 0x 0 0x 0 0x 0 ) which is not the architecture being linked (i386): /Library/Frameworks/Python.framework/HDF5/lib/libhdf5_hl.dylibignoring file /Library/Frameworks/Python.framework/HDF5/lib/libhdf5.dylib, file was built for unsupported file format ( 0xcf 0xfa 0xed 0xfe 0x 7 0x 0 0x 0 0x 1 0x 3 0x 0 0x 0 0x 0 0x 6 0x 0 0x 0 0x 0 ) which is not the architecture being linked (i386): /Library/Frameworks/Python.framework/HDF5/lib/libhdf5.dylib

building 'h5py.h5' extension
gcc-4.2 -fno-strict-aliasing -fno-common -dynamic -arch i386 -arch x86_64 -g -O2 -DNDEBUG -g -O3 -DH5_USE_16_API -I/Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include -I/Volumes/DatenHD/axelperschmann/Downloads/Python/h5py-2.1.0/lzf -I/Library/Frameworks/Python.framework/HDF5/include -I/Library/Frameworks/Python.framework/Versions/2.7/include/python2.7 -c h5py/h5.c -o build/temp.macosx-10.6-intel-2.7/h5py/h5.o
In file included from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/ndarraytypes.h:1722,
                from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/ndarrayobject.h:17,
                from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/arrayobject.h:15,
                from h5py/api_compat.h:20,
                from h5py/h5.c:228:
/Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/npy_deprecated_api.h:11:2: warning: #warning "Using deprecated NumPy API, disable it by #defining NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION"
In file included from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/ndarraytypes.h:1722,
                from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/ndarrayobject.h:17,
                from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/arrayobject.h:15,
                from h5py/api_compat.h:20,
                from h5py/h5.c:228:
/Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/npy_deprecated_api.h:11:2: warning: #warning "Using deprecated NumPy API, disable it by #defining NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION"
gcc-4.2 -bundle -undefined dynamic_lookup -arch i386 -arch x86_64 -g build/temp.macosx-10.6-intel-2.7/h5py/h5.o -L/Library/Frameworks/Python.framework/HDF5/lib -L/Library/Frameworks/Python.framework/HDF5/lib -lhdf5 -lhdf5_hl -o build/lib.macosx-10.6-intel-2.7/h5py/h5.so
ld: warning: ignoring file /Library/Frameworks/Python.framework/HDF5/lib/libhdf5.dylib, file was built for unsupported file format ( 0xcf 0xfa 0xed 0xfe 0x 7 0x 0 0x 0 0x 1 0x 3 0x 0 0x 0 0x 0 0x 6 0x 0 0x 0 0x 0 ) which is not the architecture being linked (i386): /Library/Frameworks/Python.framework/HDF5/lib/libhdf5.dylib
ld: warning: ignoring file /Library/Frameworks/Python.framework/HDF5/lib/libhdf5_hl.dylib, file was built for unsupported file format ( 0xcf 0xfa 0xed 0xfe 0x 7 0x 0 0x 0 0x 1 0x 3 0x 0 0x 0 0x 0 0x 6 0x 0 0x 0 0x 0 ) which is not the architecture being linked (i386): /Library/Frameworks/Python.framework/HDF5/lib/libhdf5_hl.dylib
building 'h5py.h5i' extension
gcc-4.2 -fno-strict-aliasing -fno-common -dynamic -arch i386 -arch x86_64 -g -O2 -DNDEBUG -g -O3 -DH5_USE_16_API -I/Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include -I/Volumes/DatenHD/axelperschmann/Downloads/Python/h5py-2.1.0/lzf -I/Library/Frameworks/Python.framework/HDF5/include -I/Library/Frameworks/Python.framework/Versions/2.7/include/python2.7 -c h5py/h5i.c -o build/temp.macosx-10.6-intel-2.7/h5py/h5i.o
In file included from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/ndarraytypes.h:1722,
                from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/ndarrayobject.h:17,
                from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/arrayobject.h:15,
                from h5py/api_compat.h:20,
                from h5py/h5i.c:228:
/Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/npy_deprecated_api.h:11:2: warning: #warning "Using deprecated NumPy API, disable it by #defining NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION"
In file included from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/ndarraytypes.h:1722,
                from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/ndarrayobject.h:17,
                from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/arrayobject.h:15,
                from h5py/api_compat.h:20,
                from h5py/h5i.c:228:
/Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/npy_deprecated_api.h:11:2: warning: #warning "Using deprecated NumPy API, disable it by #defining NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION"
gcc-4.2 -bundle -undefined dynamic_lookup -arch i386 -arch x86_64 -g build/temp.macosx-10.6-intel-2.7/h5py/h5i.o -L/Library/Frameworks/Python.framework/HDF5/lib -L/Library/Frameworks/Python.framework/HDF5/lib -lhdf5 -lhdf5_hl -o build/lib.macosx-10.6-intel-2.7/h5py/h5i.so
ld: warning: ld: warning: ignoring file /Library/Frameworks/Python.framework/HDF5/lib/libhdf5_hl.dylib, file was built for unsupported file format ( 0xcf 0xfa 0xed 0xfe 0x 7 0x 0 0x 0 0x 1 0x 3 0x 0 0x 0 0x 0 0x 6 0x 0 0x 0 0x 0 ) which is not the architecture being linked (i386): /Library/Frameworks/Python.framework/HDF5/lib/libhdf5_hl.dylibignoring file /Library/Frameworks/Python.framework/HDF5/lib/libhdf5.dylib, file was built for unsupported file format ( 0xcf 0xfa 0xed 0xfe 0x 7 0x 0 0x 0 0x 1 0x 3 0x 0 0x 0 0x 0 0x 6 0x 0 0x 0 0x 0 ) which is not the architecture being linked (i386): /Library/Frameworks/Python.framework/HDF5/lib/libhdf5.dylib

building 'h5py.h5r' extension
gcc-4.2 -fno-strict-aliasing -fno-common -dynamic -arch i386 -arch x86_64 -g -O2 -DNDEBUG -g -O3 -DH5_USE_16_API -I/Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include -I/Volumes/DatenHD/axelperschmann/Downloads/Python/h5py-2.1.0/lzf -I/Library/Frameworks/Python.framework/HDF5/include -I/Library/Frameworks/Python.framework/Versions/2.7/include/python2.7 -c h5py/h5r.c -o build/temp.macosx-10.6-intel-2.7/h5py/h5r.o
In file included from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/ndarraytypes.h:1722,
                from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/ndarrayobject.h:17,
                from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/arrayobject.h:15,
                from h5py/api_compat.h:20,
                from h5py/h5r.c:228:
/Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/npy_deprecated_api.h:11:2: warning: #warning "Using deprecated NumPy API, disable it by #defining NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION"
In file included from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/ndarraytypes.h:1722,
                from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/ndarrayobject.h:17,
                from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/arrayobject.h:15,
                from h5py/api_compat.h:20,
                from h5py/h5r.c:228:
/Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/npy_deprecated_api.h:11:2: warning: #warning "Using deprecated NumPy API, disable it by #defining NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION"
gcc-4.2 -bundle -undefined dynamic_lookup -arch i386 -arch x86_64 -g build/temp.macosx-10.6-intel-2.7/h5py/h5r.o -L/Library/Frameworks/Python.framework/HDF5/lib -L/Library/Frameworks/Python.framework/HDF5/lib -lhdf5 -lhdf5_hl -o build/lib.macosx-10.6-intel-2.7/h5py/h5r.so
ld: warning: ignoring file /Library/Frameworks/Python.framework/HDF5/lib/libhdf5_hl.dylib, file was built for unsupported file format ( 0xcf 0xfa 0xed 0xfe 0x 7 0x 0 0x 0 0x 1 0x 3 0x 0 0x 0 0x 0 0x 6 0x 0 0x 0 0x 0 ) which is not the architecture being linked (i386): /Library/Frameworks/Python.framework/HDF5/lib/libhdf5_hl.dylib
ld: warning: ignoring file /Library/Frameworks/Python.framework/HDF5/lib/libhdf5.dylib, file was built for unsupported file format ( 0xcf 0xfa 0xed 0xfe 0x 7 0x 0 0x 0 0x 1 0x 3 0x 0 0x 0 0x 0 0x 6 0x 0 0x 0 0x 0 ) which is not the architecture being linked (i386): /Library/Frameworks/Python.framework/HDF5/lib/libhdf5.dylib
building 'h5py.utils' extension
gcc-4.2 -fno-strict-aliasing -fno-common -dynamic -arch i386 -arch x86_64 -g -O2 -DNDEBUG -g -O3 -DH5_USE_16_API -I/Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include -I/Volumes/DatenHD/axelperschmann/Downloads/Python/h5py-2.1.0/lzf -I/Library/Frameworks/Python.framework/HDF5/include -I/Library/Frameworks/Python.framework/Versions/2.7/include/python2.7 -c h5py/utils.c -o build/temp.macosx-10.6-intel-2.7/h5py/utils.o
In file included from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/ndarraytypes.h:1722,
                from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/ndarrayobject.h:17,
                from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/arrayobject.h:15,
                from h5py/api_compat.h:20,
                from h5py/utils.c:228:
/Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/npy_deprecated_api.h:11:2: warning: #warning "Using deprecated NumPy API, disable it by #defining NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION"
In file included from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/ndarraytypes.h:1722,
                from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/ndarrayobject.h:17,
                from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/arrayobject.h:15,
                from h5py/api_compat.h:20,
                from h5py/utils.c:228:
/Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/npy_deprecated_api.h:11:2: warning: #warning "Using deprecated NumPy API, disable it by #defining NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION"
gcc-4.2 -bundle -undefined dynamic_lookup -arch i386 -arch x86_64 -g build/temp.macosx-10.6-intel-2.7/h5py/utils.o -L/Library/Frameworks/Python.framework/HDF5/lib -L/Library/Frameworks/Python.framework/HDF5/lib -lhdf5 -lhdf5_hl -o build/lib.macosx-10.6-intel-2.7/h5py/utils.so
ld: warning: ignoring file /Library/Frameworks/Python.framework/HDF5/lib/libhdf5.dylib, file was built for unsupported file format ( 0xcf 0xfa 0xed 0xfe 0x 7 0x 0 0x 0 0x 1 0x 3 0x 0 0x 0 0x 0 0x 6 0x 0 0x 0 0x 0 ) which is not the architecture being linked (i386): /Library/Frameworks/Python.framework/HDF5/lib/libhdf5.dylib
ld: warning: ignoring file /Library/Frameworks/Python.framework/HDF5/lib/libhdf5_hl.dylib, file was built for unsupported file format ( 0xcf 0xfa 0xed 0xfe 0x 7 0x 0 0x 0 0x 1 0x 3 0x 0 0x 0 0x 0 0x 6 0x 0 0x 0 0x 0 ) which is not the architecture being linked (i386): /Library/Frameworks/Python.framework/HDF5/lib/libhdf5_hl.dylib
building 'h5py._conv' extension
gcc-4.2 -fno-strict-aliasing -fno-common -dynamic -arch i386 -arch x86_64 -g -O2 -DNDEBUG -g -O3 -DH5_USE_16_API -I/Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include -I/Volumes/DatenHD/axelperschmann/Downloads/Python/h5py-2.1.0/lzf -I/Library/Frameworks/Python.framework/HDF5/include -I/Library/Frameworks/Python.framework/Versions/2.7/include/python2.7 -c h5py/_conv.c -o build/temp.macosx-10.6-intel-2.7/h5py/_conv.o
In file included from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/ndarraytypes.h:1722,
                from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/ndarrayobject.h:17,
                from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/arrayobject.h:15,
                from h5py/api_compat.h:20,
                from h5py/_conv.c:228:
/Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/npy_deprecated_api.h:11:2: warning: #warning "Using deprecated NumPy API, disable it by #defining NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION"
In file included from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/ndarraytypes.h:1722,
                from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/ndarrayobject.h:17,
                from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/arrayobject.h:15,
                from h5py/api_compat.h:20,
                from h5py/_conv.c:228:
/Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/npy_deprecated_api.h:11:2: warning: #warning "Using deprecated NumPy API, disable it by #defining NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION"
gcc-4.2 -bundle -undefined dynamic_lookup -arch i386 -arch x86_64 -g build/temp.macosx-10.6-intel-2.7/h5py/_conv.o -L/Library/Frameworks/Python.framework/HDF5/lib -L/Library/Frameworks/Python.framework/HDF5/lib -lhdf5 -lhdf5_hl -o build/lib.macosx-10.6-intel-2.7/h5py/_conv.so
ld: warning: ld: warning: ignoring file /Library/Frameworks/Python.framework/HDF5/lib/libhdf5_hl.dylib, file was built for unsupported file format ( 0xcf 0xfa 0xed 0xfe 0x 7 0x 0 0x 0 0x 1 0x 3 0x 0 0x 0 0x 0 0x 6 0x 0 0x 0 0x 0 ) which is not the architecture being linked (i386): /Library/Frameworks/Python.framework/HDF5/lib/libhdf5_hl.dylibignoring file /Library/Frameworks/Python.framework/HDF5/lib/libhdf5.dylib, file was built for unsupported file format ( 0xcf 0xfa 0xed 0xfe 0x 7 0x 0 0x 0 0x 1 0x 3 0x 0 0x 0 0x 0 0x 6 0x 0 0x 0 0x 0 ) which is not the architecture being linked (i386): /Library/Frameworks/Python.framework/HDF5/lib/libhdf5.dylib

building 'h5py.h5t' extension
gcc-4.2 -fno-strict-aliasing -fno-common -dynamic -arch i386 -arch x86_64 -g -O2 -DNDEBUG -g -O3 -DH5_USE_16_API -I/Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include -I/Volumes/DatenHD/axelperschmann/Downloads/Python/h5py-2.1.0/lzf -I/Library/Frameworks/Python.framework/HDF5/include -I/Library/Frameworks/Python.framework/Versions/2.7/include/python2.7 -c h5py/h5t.c -o build/temp.macosx-10.6-intel-2.7/h5py/h5t.o
In file included from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/ndarraytypes.h:1722,
                from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/ndarrayobject.h:17,
                from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/arrayobject.h:15,
                from h5py/api_compat.h:20,
                from h5py/h5t.c:228:
/Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/npy_deprecated_api.h:11:2: warning: #warning "Using deprecated NumPy API, disable it by #defining NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION"
In file included from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/ndarraytypes.h:1722,
                from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/ndarrayobject.h:17,
                from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/arrayobject.h:15,
                from h5py/api_compat.h:20,
                from h5py/h5t.c:228:
/Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/npy_deprecated_api.h:11:2: warning: #warning "Using deprecated NumPy API, disable it by #defining NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION"
gcc-4.2 -bundle -undefined dynamic_lookup -arch i386 -arch x86_64 -g build/temp.macosx-10.6-intel-2.7/h5py/h5t.o -L/Library/Frameworks/Python.framework/HDF5/lib -L/Library/Frameworks/Python.framework/HDF5/lib -lhdf5 -lhdf5_hl -o build/lib.macosx-10.6-intel-2.7/h5py/h5t.so
ld: warning: ld: warning: ignoring file /Library/Frameworks/Python.framework/HDF5/lib/libhdf5_hl.dylib, file was built for unsupported file format ( 0xcf 0xfa 0xed 0xfe 0x 7 0x 0 0x 0 0x 1 0x 3 0x 0 0x 0 0x 0 0x 6 0x 0 0x 0 0x 0 ) which is not the architecture being linked (i386): /Library/Frameworks/Python.framework/HDF5/lib/libhdf5_hl.dylibignoring file /Library/Frameworks/Python.framework/HDF5/lib/libhdf5.dylib, file was built for unsupported file format ( 0xcf 0xfa 0xed 0xfe 0x 7 0x 0 0x 0 0x 1 0x 3 0x 0 0x 0 0x 0 0x 6 0x 0 0x 0 0x 0 ) which is not the architecture being linked (i386): /Library/Frameworks/Python.framework/HDF5/lib/libhdf5.dylib

building 'h5py.h5s' extension
gcc-4.2 -fno-strict-aliasing -fno-common -dynamic -arch i386 -arch x86_64 -g -O2 -DNDEBUG -g -O3 -DH5_USE_16_API -I/Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include -I/Volumes/DatenHD/axelperschmann/Downloads/Python/h5py-2.1.0/lzf -I/Library/Frameworks/Python.framework/HDF5/include -I/Library/Frameworks/Python.framework/Versions/2.7/include/python2.7 -c h5py/h5s.c -o build/temp.macosx-10.6-intel-2.7/h5py/h5s.o
In file included from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/ndarraytypes.h:1722,
                from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/ndarrayobject.h:17,
                from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/arrayobject.h:15,
                from h5py/api_compat.h:20,
                from h5py/h5s.c:228:
/Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/npy_deprecated_api.h:11:2: warning: #warning "Using deprecated NumPy API, disable it by #defining NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION"
In file included from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/ndarraytypes.h:1722,
                from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/ndarrayobject.h:17,
                from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/arrayobject.h:15,
                from h5py/api_compat.h:20,
                from h5py/h5s.c:228:
/Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/npy_deprecated_api.h:11:2: warning: #warning "Using deprecated NumPy API, disable it by #defining NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION"
gcc-4.2 -bundle -undefined dynamic_lookup -arch i386 -arch x86_64 -g build/temp.macosx-10.6-intel-2.7/h5py/h5s.o -L/Library/Frameworks/Python.framework/HDF5/lib -L/Library/Frameworks/Python.framework/HDF5/lib -lhdf5 -lhdf5_hl -o build/lib.macosx-10.6-intel-2.7/h5py/h5s.so
ld: warning: ignoring file /Library/Frameworks/Python.framework/HDF5/lib/libhdf5.dylib, file was built for unsupported file format ( 0xcf 0xfa 0xed 0xfe 0x 7 0x 0 0x 0 0x 1 0x 3 0x 0 0x 0 0x 0 0x 6 0x 0 0x 0 0x 0 ) which is not the architecture being linked (i386): /Library/Frameworks/Python.framework/HDF5/lib/libhdf5.dylib
ld: warning: ignoring file /Library/Frameworks/Python.framework/HDF5/lib/libhdf5_hl.dylib, file was built for unsupported file format ( 0xcf 0xfa 0xed 0xfe 0x 7 0x 0 0x 0 0x 1 0x 3 0x 0 0x 0 0x 0 0x 6 0x 0 0x 0 0x 0 ) which is not the architecture being linked (i386): /Library/Frameworks/Python.framework/HDF5/lib/libhdf5_hl.dylib
building 'h5py.h5p' extension
gcc-4.2 -fno-strict-aliasing -fno-common -dynamic -arch i386 -arch x86_64 -g -O2 -DNDEBUG -g -O3 -DH5_USE_16_API -I/Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include -I/Volumes/DatenHD/axelperschmann/Downloads/Python/h5py-2.1.0/lzf -I/Library/Frameworks/Python.framework/HDF5/include -I/Library/Frameworks/Python.framework/Versions/2.7/include/python2.7 -c h5py/h5p.c -o build/temp.macosx-10.6-intel-2.7/h5py/h5p.o
In file included from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/ndarraytypes.h:1722,
                from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/ndarrayobject.h:17,
                from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/arrayobject.h:15,
                from h5py/api_compat.h:20,
                from h5py/h5p.c:228:
/Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/npy_deprecated_api.h:11:2: warning: #warning "Using deprecated NumPy API, disable it by #defining NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION"
In file included from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/ndarraytypes.h:1722,
                from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/ndarrayobject.h:17,
                from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/arrayobject.h:15,
                from h5py/api_compat.h:20,
                from h5py/h5p.c:228:
/Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/npy_deprecated_api.h:11:2: warning: #warning "Using deprecated NumPy API, disable it by #defining NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION"
gcc-4.2 -bundle -undefined dynamic_lookup -arch i386 -arch x86_64 -g build/temp.macosx-10.6-intel-2.7/h5py/h5p.o -L/Library/Frameworks/Python.framework/HDF5/lib -L/Library/Frameworks/Python.framework/HDF5/lib -lhdf5 -lhdf5_hl -o build/lib.macosx-10.6-intel-2.7/h5py/h5p.so
ld: warning: ld: warning: ignoring file /Library/Frameworks/Python.framework/HDF5/lib/libhdf5_hl.dylib, file was built for unsupported file format ( 0xcf 0xfa 0xed 0xfe 0x 7 0x 0 0x 0 0x 1 0x 3 0x 0 0x 0 0x 0 0x 6 0x 0 0x 0 0x 0 ) which is not the architecture being linked (i386): /Library/Frameworks/Python.framework/HDF5/lib/libhdf5_hl.dylibignoring file /Library/Frameworks/Python.framework/HDF5/lib/libhdf5.dylib, file was built for unsupported file format ( 0xcf 0xfa 0xed 0xfe 0x 7 0x 0 0x 0 0x 1 0x 3 0x 0 0x 0 0x 0 0x 6 0x 0 0x 0 0x 0 ) which is not the architecture being linked (i386): /Library/Frameworks/Python.framework/HDF5/lib/libhdf5.dylib

building 'h5py.h5d' extension
gcc-4.2 -fno-strict-aliasing -fno-common -dynamic -arch i386 -arch x86_64 -g -O2 -DNDEBUG -g -O3 -DH5_USE_16_API -I/Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include -I/Volumes/DatenHD/axelperschmann/Downloads/Python/h5py-2.1.0/lzf -I/Library/Frameworks/Python.framework/HDF5/include -I/Library/Frameworks/Python.framework/Versions/2.7/include/python2.7 -c h5py/h5d.c -o build/temp.macosx-10.6-intel-2.7/h5py/h5d.o
In file included from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/ndarraytypes.h:1722,
                from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/ndarrayobject.h:17,
                from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/arrayobject.h:15,
                from h5py/api_compat.h:20,
                from h5py/h5d.c:228:
/Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/npy_deprecated_api.h:11:2: warning: #warning "Using deprecated NumPy API, disable it by #defining NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION"
In file included from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/ndarraytypes.h:1722,
                from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/ndarrayobject.h:17,
                from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/arrayobject.h:15,
                from h5py/api_compat.h:20,
                from h5py/h5d.c:228:
/Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/npy_deprecated_api.h:11:2: warning: #warning "Using deprecated NumPy API, disable it by #defining NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION"
gcc-4.2 -bundle -undefined dynamic_lookup -arch i386 -arch x86_64 -g build/temp.macosx-10.6-intel-2.7/h5py/h5d.o -L/Library/Frameworks/Python.framework/HDF5/lib -L/Library/Frameworks/Python.framework/HDF5/lib -lhdf5 -lhdf5_hl -o build/lib.macosx-10.6-intel-2.7/h5py/h5d.so
ld: warning: ld: warning: ignoring file /Library/Frameworks/Python.framework/HDF5/lib/libhdf5_hl.dylib, file was built for unsupported file format ( 0xcf 0xfa 0xed 0xfe 0x 7 0x 0 0x 0 0x 1 0x 3 0x 0 0x 0 0x 0 0x 6 0x 0 0x 0 0x 0 ) which is not the architecture being linked (i386): /Library/Frameworks/Python.framework/HDF5/lib/libhdf5_hl.dylibignoring file /Library/Frameworks/Python.framework/HDF5/lib/libhdf5.dylib, file was built for unsupported file format ( 0xcf 0xfa 0xed 0xfe 0x 7 0x 0 0x 0 0x 1 0x 3 0x 0 0x 0 0x 0 0x 6 0x 0 0x 0 0x 0 ) which is not the architecture being linked (i386): /Library/Frameworks/Python.framework/HDF5/lib/libhdf5.dylib

building 'h5py.h5a' extension
gcc-4.2 -fno-strict-aliasing -fno-common -dynamic -arch i386 -arch x86_64 -g -O2 -DNDEBUG -g -O3 -DH5_USE_16_API -I/Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include -I/Volumes/DatenHD/axelperschmann/Downloads/Python/h5py-2.1.0/lzf -I/Library/Frameworks/Python.framework/HDF5/include -I/Library/Frameworks/Python.framework/Versions/2.7/include/python2.7 -c h5py/h5a.c -o build/temp.macosx-10.6-intel-2.7/h5py/h5a.o
In file included from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/ndarraytypes.h:1722,
                from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/ndarrayobject.h:17,
                from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/arrayobject.h:15,
                from h5py/api_compat.h:20,
                from h5py/h5a.c:228:
/Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/npy_deprecated_api.h:11:2: warning: #warning "Using deprecated NumPy API, disable it by #defining NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION"
h5py/h5a.c: In function ‘__pyx_pf_4h5py_3h5a_7iterate’:
h5py/h5a.c:3541: warning: assignment from incompatible pointer type
h5py/h5a.c:3553: warning: assignment from incompatible pointer type
In file included from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/ndarraytypes.h:1722,
                from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/ndarrayobject.h:17,
                from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/arrayobject.h:15,
                from h5py/api_compat.h:20,
                from h5py/h5a.c:228:
/Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/npy_deprecated_api.h:11:2: warning: #warning "Using deprecated NumPy API, disable it by #defining NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION"
h5py/h5a.c: In function ‘__pyx_pf_4h5py_3h5a_7iterate’:
h5py/h5a.c:3541: warning: assignment from incompatible pointer type
h5py/h5a.c:3553: warning: assignment from incompatible pointer type
gcc-4.2 -bundle -undefined dynamic_lookup -arch i386 -arch x86_64 -g build/temp.macosx-10.6-intel-2.7/h5py/h5a.o -L/Library/Frameworks/Python.framework/HDF5/lib -L/Library/Frameworks/Python.framework/HDF5/lib -lhdf5 -lhdf5_hl -o build/lib.macosx-10.6-intel-2.7/h5py/h5a.so
ld: warning: ignoring file /Library/Frameworks/Python.framework/HDF5/lib/libhdf5.dylib, file was built for unsupported file format ( 0xcf 0xfa 0xed 0xfe 0x 7 0x 0 0x 0 0x 1 0x 3 0x 0 0x 0 0x 0 0x 6 0x 0 0x 0 0x 0 ) which is not the architecture being linked (i386): /Library/Frameworks/Python.framework/HDF5/lib/libhdf5.dylib
ld: warning: ignoring file /Library/Frameworks/Python.framework/HDF5/lib/libhdf5_hl.dylib, file was built for unsupported file format ( 0xcf 0xfa 0xed 0xfe 0x 7 0x 0 0x 0 0x 1 0x 3 0x 0 0x 0 0x 0 0x 6 0x 0 0x 0 0x 0 ) which is not the architecture being linked (i386): /Library/Frameworks/Python.framework/HDF5/lib/libhdf5_hl.dylib
building 'h5py.h5f' extension
gcc-4.2 -fno-strict-aliasing -fno-common -dynamic -arch i386 -arch x86_64 -g -O2 -DNDEBUG -g -O3 -DH5_USE_16_API -I/Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include -I/Volumes/DatenHD/axelperschmann/Downloads/Python/h5py-2.1.0/lzf -I/Library/Frameworks/Python.framework/HDF5/include -I/Library/Frameworks/Python.framework/Versions/2.7/include/python2.7 -c h5py/h5f.c -o build/temp.macosx-10.6-intel-2.7/h5py/h5f.o
In file included from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/ndarraytypes.h:1722,
                from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/ndarrayobject.h:17,
                from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/arrayobject.h:15,
                from h5py/api_compat.h:20,
                from h5py/h5f.c:228:
/Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/npy_deprecated_api.h:11:2: warning: #warning "Using deprecated NumPy API, disable it by #defining NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION"
In file included from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/ndarraytypes.h:1722,
                from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/ndarrayobject.h:17,
                from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/arrayobject.h:15,
                from h5py/api_compat.h:20,
                from h5py/h5f.c:228:
/Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/npy_deprecated_api.h:11:2: warning: #warning "Using deprecated NumPy API, disable it by #defining NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION"
gcc-4.2 -bundle -undefined dynamic_lookup -arch i386 -arch x86_64 -g build/temp.macosx-10.6-intel-2.7/h5py/h5f.o -L/Library/Frameworks/Python.framework/HDF5/lib -L/Library/Frameworks/Python.framework/HDF5/lib -lhdf5 -lhdf5_hl -o build/lib.macosx-10.6-intel-2.7/h5py/h5f.so
ld: warning: ld: warning: ignoring file /Library/Frameworks/Python.framework/HDF5/lib/libhdf5.dylib, file was built for unsupported file format ( 0xcf 0xfa 0xed 0xfe 0x 7 0x 0 0x 0 0x 1 0x 3 0x 0 0x 0 0x 0 0x 6 0x 0 0x 0 0x 0 ) which is not the architecture being linked (i386): /Library/Frameworks/Python.framework/HDF5/lib/libhdf5.dylibignoring file /Library/Frameworks/Python.framework/HDF5/lib/libhdf5_hl.dylib, file was built for unsupported file format ( 0xcf 0xfa 0xed 0xfe 0x 7 0x 0 0x 0 0x 1 0x 3 0x 0 0x 0 0x 0 0x 6 0x 0 0x 0 0x 0 ) which is not the architecture being linked (i386): /Library/Frameworks/Python.framework/HDF5/lib/libhdf5_hl.dylib

building 'h5py.h5g' extension
gcc-4.2 -fno-strict-aliasing -fno-common -dynamic -arch i386 -arch x86_64 -g -O2 -DNDEBUG -g -O3 -DH5_USE_16_API -I/Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include -I/Volumes/DatenHD/axelperschmann/Downloads/Python/h5py-2.1.0/lzf -I/Library/Frameworks/Python.framework/HDF5/include -I/Library/Frameworks/Python.framework/Versions/2.7/include/python2.7 -c h5py/h5g.c -o build/temp.macosx-10.6-intel-2.7/h5py/h5g.o
In file included from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/ndarraytypes.h:1722,
                from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/ndarrayobject.h:17,
                from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/arrayobject.h:15,
                from h5py/api_compat.h:20,
                from h5py/h5g.c:228:
/Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/npy_deprecated_api.h:11:2: warning: #warning "Using deprecated NumPy API, disable it by #defining NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION"
In file included from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/ndarraytypes.h:1722,
                from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/ndarrayobject.h:17,
                from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/arrayobject.h:15,
                from h5py/api_compat.h:20,
                from h5py/h5g.c:228:
/Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/npy_deprecated_api.h:11:2: warning: #warning "Using deprecated NumPy API, disable it by #defining NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION"
gcc-4.2 -bundle -undefined dynamic_lookup -arch i386 -arch x86_64 -g build/temp.macosx-10.6-intel-2.7/h5py/h5g.o -L/Library/Frameworks/Python.framework/HDF5/lib -L/Library/Frameworks/Python.framework/HDF5/lib -lhdf5 -lhdf5_hl -o build/lib.macosx-10.6-intel-2.7/h5py/h5g.so
ld: warning: ld: warning: ignoring file /Library/Frameworks/Python.framework/HDF5/lib/libhdf5.dylib, file was built for unsupported file format ( 0xcf 0xfa 0xed 0xfe 0x 7 0x 0 0x 0 0x 1 0x 3 0x 0 0x 0 0x 0 0x 6 0x 0 0x 0 0x 0 ) which is not the architecture being linked (i386): /Library/Frameworks/Python.framework/HDF5/lib/libhdf5.dylibignoring file /Library/Frameworks/Python.framework/HDF5/lib/libhdf5_hl.dylib, file was built for unsupported file format ( 0xcf 0xfa 0xed 0xfe 0x 7 0x 0 0x 0 0x 1 0x 3 0x 0 0x 0 0x 0 0x 6 0x 0 0x 0 0x 0 ) which is not the architecture being linked (i386): /Library/Frameworks/Python.framework/HDF5/lib/libhdf5_hl.dylib

building 'h5py.h5l' extension
gcc-4.2 -fno-strict-aliasing -fno-common -dynamic -arch i386 -arch x86_64 -g -O2 -DNDEBUG -g -O3 -DH5_USE_16_API -I/Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include -I/Volumes/DatenHD/axelperschmann/Downloads/Python/h5py-2.1.0/lzf -I/Library/Frameworks/Python.framework/HDF5/include -I/Library/Frameworks/Python.framework/Versions/2.7/include/python2.7 -c h5py/h5l.c -o build/temp.macosx-10.6-intel-2.7/h5py/h5l.o
In file included from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/ndarraytypes.h:1722,
                from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/ndarrayobject.h:17,
                from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/arrayobject.h:15,
                from h5py/api_compat.h:20,
                from h5py/h5l.c:228:
/Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/npy_deprecated_api.h:11:2: warning: #warning "Using deprecated NumPy API, disable it by #defining NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION"
h5py/h5l.c: In function ‘__pyx_pf_4h5py_3h5l_9LinkProxy_9visit’:
h5py/h5l.c:2829: warning: assignment from incompatible pointer type
h5py/h5l.c:2841: warning: assignment from incompatible pointer type
In file included from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/ndarraytypes.h:1722,
                from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/ndarrayobject.h:17,
                from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/arrayobject.h:15,
                from h5py/api_compat.h:20,
                from h5py/h5l.c:228:
/Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/npy_deprecated_api.h:11:2: warning: #warning "Using deprecated NumPy API, disable it by #defining NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION"
h5py/h5l.c: In function ‘__pyx_pf_4h5py_3h5l_9LinkProxy_9visit’:
h5py/h5l.c:2829: warning: assignment from incompatible pointer type
h5py/h5l.c:2841: warning: assignment from incompatible pointer type
gcc-4.2 -bundle -undefined dynamic_lookup -arch i386 -arch x86_64 -g build/temp.macosx-10.6-intel-2.7/h5py/h5l.o -L/Library/Frameworks/Python.framework/HDF5/lib -L/Library/Frameworks/Python.framework/HDF5/lib -lhdf5 -lhdf5_hl -o build/lib.macosx-10.6-intel-2.7/h5py/h5l.so
ld: warning: ld: warning: ignoring file /Library/Frameworks/Python.framework/HDF5/lib/libhdf5_hl.dylib, file was built for unsupported file format ( 0xcf 0xfa 0xed 0xfe 0x 7 0x 0 0x 0 0x 1 0x 3 0x 0 0x 0 0x 0 0x 6 0x 0 0x 0 0x 0 ) which is not the architecture being linked (i386): /Library/Frameworks/Python.framework/HDF5/lib/libhdf5_hl.dylibignoring file /Library/Frameworks/Python.framework/HDF5/lib/libhdf5.dylib, file was built for unsupported file format ( 0xcf 0xfa 0xed 0xfe 0x 7 0x 0 0x 0 0x 1 0x 3 0x 0 0x 0 0x 0 0x 6 0x 0 0x 0 0x 0 ) which is not the architecture being linked (i386): /Library/Frameworks/Python.framework/HDF5/lib/libhdf5.dylib

building 'h5py.h5o' extension
gcc-4.2 -fno-strict-aliasing -fno-common -dynamic -arch i386 -arch x86_64 -g -O2 -DNDEBUG -g -O3 -DH5_USE_16_API -I/Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include -I/Volumes/DatenHD/axelperschmann/Downloads/Python/h5py-2.1.0/lzf -I/Library/Frameworks/Python.framework/HDF5/include -I/Library/Frameworks/Python.framework/Versions/2.7/include/python2.7 -c h5py/h5o.c -o build/temp.macosx-10.6-intel-2.7/h5py/h5o.o
In file included from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/ndarraytypes.h:1722,
                from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/ndarrayobject.h:17,
                from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/arrayobject.h:15,
                from h5py/api_compat.h:20,
                from h5py/h5o.c:228:
/Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/npy_deprecated_api.h:11:2: warning: #warning "Using deprecated NumPy API, disable it by #defining NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION"
h5py/h5o.c: In function ‘__pyx_pf_4h5py_3h5o_6visit’:
h5py/h5o.c:3829: warning: assignment from incompatible pointer type
h5py/h5o.c:3841: warning: assignment from incompatible pointer type
In file included from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/ndarraytypes.h:1722,
                from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/ndarrayobject.h:17,
                from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/arrayobject.h:15,
                from h5py/api_compat.h:20,
                from h5py/h5o.c:228:
/Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/npy_deprecated_api.h:11:2: warning: #warning "Using deprecated NumPy API, disable it by #defining NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION"
h5py/h5o.c: In function ‘__pyx_pf_4h5py_3h5o_6visit’:
h5py/h5o.c:3829: warning: assignment from incompatible pointer type
h5py/h5o.c:3841: warning: assignment from incompatible pointer type
gcc-4.2 -bundle -undefined dynamic_lookup -arch i386 -arch x86_64 -g build/temp.macosx-10.6-intel-2.7/h5py/h5o.o -L/Library/Frameworks/Python.framework/HDF5/lib -L/Library/Frameworks/Python.framework/HDF5/lib -lhdf5 -lhdf5_hl -o build/lib.macosx-10.6-intel-2.7/h5py/h5o.so
ld: warning: ignoring file /Library/Frameworks/Python.framework/HDF5/lib/libhdf5.dylib, file was built for unsupported file format ( 0xcf 0xfa 0xed 0xfe 0x 7 0x 0 0x 0 0x 1 0x 3 0x 0 0x 0 0x 0 0x 6 0x 0 0x 0 0x 0 ) which is not the architecture being linked (i386): /Library/Frameworks/Python.framework/HDF5/lib/libhdf5.dylib
ld: warning: ignoring file /Library/Frameworks/Python.framework/HDF5/lib/libhdf5_hl.dylib, file was built for unsupported file format ( 0xcf 0xfa 0xed 0xfe 0x 7 0x 0 0x 0 0x 1 0x 3 0x 0 0x 0 0x 0 0x 6 0x 0 0x 0 0x 0 ) which is not the architecture being linked (i386): /Library/Frameworks/Python.framework/HDF5/lib/libhdf5_hl.dylib
building 'h5py.h5ds' extension
gcc-4.2 -fno-strict-aliasing -fno-common -dynamic -arch i386 -arch x86_64 -g -O2 -DNDEBUG -g -O3 -DH5_USE_16_API -I/Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include -I/Volumes/DatenHD/axelperschmann/Downloads/Python/h5py-2.1.0/lzf -I/Library/Frameworks/Python.framework/HDF5/include -I/Library/Frameworks/Python.framework/Versions/2.7/include/python2.7 -c h5py/h5ds.c -o build/temp.macosx-10.6-intel-2.7/h5py/h5ds.o
In file included from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/ndarraytypes.h:1722,
                from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/ndarrayobject.h:17,
                from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/arrayobject.h:15,
                from h5py/api_compat.h:20,
                from h5py/h5ds.c:228:
/Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/npy_deprecated_api.h:11:2: warning: #warning "Using deprecated NumPy API, disable it by #defining NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION"
In file included from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/ndarraytypes.h:1722,
                from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/ndarrayobject.h:17,
                from /Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/arrayobject.h:15,
                from h5py/api_compat.h:20,
                from h5py/h5ds.c:228:
/Library/Python/2.7/site-packages/numpy-1.8.0.dev_9597b1f_20120920-py2.7-macosx-10.8-x86_64.egg/numpy/core/include/numpy/npy_deprecated_api.h:11:2: warning: #warning "Using deprecated NumPy API, disable it by #defining NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION"
gcc-4.2 -bundle -undefined dynamic_lookup -arch i386 -arch x86_64 -g build/temp.macosx-10.6-intel-2.7/h5py/h5ds.o -L/Library/Frameworks/Python.framework/HDF5/lib -L/Library/Frameworks/Python.framework/HDF5/lib -lhdf5 -lhdf5_hl -o build/lib.macosx-10.6-intel-2.7/h5py/h5ds.so
ld: warning: ignoring file /Library/Frameworks/Python.framework/HDF5/lib/libhdf5_hl.dylib, file was built for unsupported file format ( 0xcf 0xfa 0xed 0xfe 0x 7 0x 0 0x 0 0x 1 0x 3 0x 0 0x 0 0x 0 0x 6 0x 0 0x 0 0x 0 ) which is not the architecture being linked (i386): /Library/Frameworks/Python.framework/HDF5/lib/libhdf5_hl.dylib
ld: warning: ignoring file /Library/Frameworks/Python.framework/HDF5/lib/libhdf5.dylib, file was built for unsupported file format ( 0xcf 0xfa 0xed 0xfe 0x 7 0x 0 0x 0 0x 1 0x 3 0x 0 0x 0 0x 0 0x 6 0x 0 0x 0 0x 0 ) which is not the architecture being linked (i386): /Library/Frameworks/Python.framework/HDF5/lib/libhdf5.dylib
</raw>

Afterwarts i tried
<raw>python import h5py</raw>

with this result:

<raw>Axel-Perschmanns-MacBook-Pro:h5py-2.1.0 axelperschmann$ python
Python 2.7.3 (v2.7.3:70274d53c1dd, Apr 9 2012, 20:52:43)
[GCC 4.2.1 (Apple Inc. build 5666) (dot 3)] on darwin
Type "help", "copyright", "credits" or "license" for more information.

import h5py

Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "h5py/__init__.py", line 1, in <module>
   from h5py import _errors
ImportError: cannot import name _errors

</raw>

I'm stuck and I do not have any idea, what went wrong :frowning:
_______________________________________________
Hdf-forum is for HDF software users discussion.
Hdf-forum@hdfgroup.org
http://mail.hdfgroup.org/mailman/listinfo/hdf-forum_hdfgroup.org

Same issue I faced on my MAC(OS X 10) when I was trying to install the h5py. Whenever I try to install it, it crashed every time. My screen goes black when I tap on the install and run the installation process. So I think I can contact the support team so do i need apple application support or it can be solved by upgrading the system? Does anyone have any type of solution or any type of suggestion then reply.