Thread Previous • Date Previous • Date Next • Thread Next |
std:: should not be nessesary. Was it rev 5935 that caused troubles? I made a very small change to the compile module interface. But it all run smooth here... Can you display the content of the compile.log file? Johan On Thursday June 16 2011 10:07:19 Garth N. Wells wrote: > On 16/06/11 18:03, Anders Logg wrote: > > Should the std:: really be needed in Expressions? It hasn't been before. > > Probably not, but something is breaking the tests. I'm getting loads of > > RuntimeError: In instant.recompile: The module did not compile, see > '/tmp/tmp47nbEc2011-6-16-18-03_instant/dolfin_compile_code_2304edf253eecf74 > 54085042a9882c03/compile.log' > > > When did it start breaking? > > Garth > > > -- > > Anders > > > > > > > > _______________________________________________ > > Mailing list: https://launchpad.net/~dolfin > > Post to : dolfin@xxxxxxxxxxxxxxxxxxx > > Unsubscribe : https://launchpad.net/~dolfin > > More help : https://help.launchpad.net/ListHelp > > _______________________________________________ > Mailing list: https://launchpad.net/~dolfin > Post to : dolfin@xxxxxxxxxxxxxxxxxxx > Unsubscribe : https://launchpad.net/~dolfin > More help : https://help.launchpad.net/ListHelp
--- Begin Message ---
- To: Johan Hake <hake.dev@xxxxxxxxx>
- From: noreply@xxxxxxxxxxxxx
- Date: Wed, 15 Jun 2011 05:30:50 -0000
- Authentication-results: mx.google.com; spf=pass (google.com: best guess record for domain of bounces@xxxxxxxxxxxxx designates 91.189.90.139 as permitted sender) smtp.mail=bounces@xxxxxxxxxxxxx
- Delivered-to: hake.dev@xxxxxxxxx
- Reply-to: noreply@xxxxxxxxxxxxx
- Sender: bounces@xxxxxxxxxxxxx
------------------------------------------------------------ revno: 5935 committer: Johan Hake <hake.dev@xxxxxxxxx> branch nick: work timestamp: Tue 2011-06-14 22:26:47 -0700 message: Use flags from dolfin installation when compiling SWIG extension modules. -- Now one can use openmp in compiled code modified: site-packages/dolfin/compilemodules/compilemodule.py -- lp:dolfin https://code.launchpad.net/~dolfin-core/dolfin/main Your team DOLFIN Core Team is subscribed to branch lp:dolfin. To unsubscribe from this branch go to https://code.launchpad.net/~dolfin-core/dolfin/main/+edit-subscription=== modified file 'site-packages/dolfin/compilemodules/compilemodule.py' --- site-packages/dolfin/compilemodules/compilemodule.py 2011-06-02 19:26:59 +0000 +++ site-packages/dolfin/compilemodules/compilemodule.py 2011-06-15 05:26:47 +0000 @@ -145,7 +145,7 @@ instant_kwargs = {} # Get system configuration (instant_kwargs['include_dirs'], - flags, + instant_kwargs['cppargs'], instant_kwargs['libraries'], instant_kwargs['library_dirs']) = instant.header_and_libs_from_pkgconfig("dolfin") @@ -229,8 +229,6 @@ "dolfin/math/basic.h"] instant_kwargs['swigargs'] =['-c++','-I.'] - instant_kwargs['cppargs'] = [] - return instant_kwargs
--- End Message ---
Thread Previous • Date Previous • Date Next • Thread Next |