mailr26874 - /trunk/devel_scripts/manual_c_module.py


Others Months | Index by Date | Thread Index
>>   [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Header


Content

Posted by edward on November 30, 2014 - 11:10:
Author: bugman
Date: Sun Nov 30 11:10:41 2014
New Revision: 26874

URL: http://svn.gna.org/viewcvs/relax?rev=26874&view=rev
Log:
Updated the manual_c_module.py C module compilation development script for 
the recent changes.

The exponential_inv.c and exponential_sat.c files need to be compiled as well.


Modified:
    trunk/devel_scripts/manual_c_module.py

Modified: trunk/devel_scripts/manual_c_module.py
URL: 
http://svn.gna.org/viewcvs/relax/trunk/devel_scripts/manual_c_module.py?rev=26874&r1=26873&r2=26874&view=diff
==============================================================================
--- trunk/devel_scripts/manual_c_module.py      (original)
+++ trunk/devel_scripts/manual_c_module.py      Sun Nov 30 11:10:41 2014
@@ -25,8 +25,10 @@
 # Python 3.2 installed in the home directory.
 cmd.append("gcc -o target_functions/c_chi2.os -c -I%s -fPIC 
target_functions/c_chi2.c" % include)
 cmd.append("gcc -o target_functions/exponential.os -c -I%s -fPIC 
target_functions/exponential.c" % include)
+cmd.append("gcc -o target_functions/exponential_inv.os -c -I%s -fPIC 
target_functions/exponential_inv.c" % include)
+cmd.append("gcc -o target_functions/exponential_sat.os -c -I%s -fPIC 
target_functions/exponential_sat.c" % include)
 cmd.append("gcc -o target_functions/relax_fit.os -c -I%s -fPIC 
target_functions/relax_fit.c" % include)
-cmd.append("gcc -o target_functions/relax_fit.so -shared 
target_functions/c_chi2.os target_functions/exponential.os 
target_functions/relax_fit.os")
+cmd.append("gcc -o target_functions/relax_fit.so -shared 
target_functions/c_chi2.os target_functions/exponential.os 
target_functions/exponential_inv.os target_functions/exponential_sat.os 
target_functions/relax_fit.os")
 
 
 # Execute the commands.




Related Messages


Powered by MHonArc, Updated Sun Nov 30 11:20:05 2014