Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 10 additions & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -100,4 +100,13 @@ find the libraries::

$ export LIBRARY_PATH=/usr/local/lib/gcc
$ make
$ make install
$ make install

If you have a new Lion (OS X 10.7) installation without gcc-4.2, your numpy
distutils will probably try to link with clang, which ignores the LIBRARY_PATH.
If you link with gcc, it may get confused by the i386 and x86_64 bundle.
You can fix both of these problems by first typing the line::

$ export LDSHARED='gcc -bundle -undefined dynamic_lookup -arch x86_64'