-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
0a158e0
commit 6c04e56
Showing
1 changed file
with
1 addition
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,11 +15,6 @@ | |
# | ||
# All ports built for x86_64 as per MacPorts default on recent 64-bit machines | ||
|
||
# Known bugs: | ||
# Currently installs a _camfr.dylib file into the module folder. This needs to be renamed to _camfr.so for Python to use it. | ||
# Command to rename the file before using CAMFR in python (triple-click to select): | ||
# mv /opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/camfr/_camfr.dylib /opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/camfr/_camfr.so | ||
|
||
# Demis D. John, 2018-02-27, [email protected] | ||
############################################ | ||
|
||
|
@@ -30,7 +25,7 @@ cxx = "/usr/bin/g++" | |
f77 = "/usr/local/gfortran/bin/gfortran" | ||
|
||
link = cxx | ||
link_flags = " -undefined dynamic_lookup -dynamic" #-dynamic -single_module -undefined dynamic_lookup" | ||
link_flags = " -undefined dynamic_lookup -dynamic -o camfr/_camfr.so" #-dynamic -single_module -undefined dynamic_lookup" | ||
# Compiler flags. | ||
# | ||
# Note: for the Fortran name definition you can define one of the following | ||
|