← Back to team overview

dolfin team mailing list archive

Re: [noreply@xxxxxxxxxxxxx: [Branch ~dolfin-core/dolfin/main] Rev 5939: Minor change in adaptivity test - was failing to build. This might help . . . .]

 

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 ---
------------------------------------------------------------
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 ---

Follow ups

References