Robert Blake
Robert Blake
Cross referencing with #175. In that commit, @gzagaris has a library that has different OpenMP flags when using CXX and Fortran. I'm not sure what the good answer here is....
Does #206 fix the problem?
I'm not sure why this is failing-- the errors say that it can't find llvm's `llvm/Config/config.h` file. The changes I've made shouldn't affect this because I'm not changing the directory...
Here's a source tree that can be used to build cling inline with clang rebased off of LLVM's base repository. https://github.com/rblake-llnl/llvm-project/tree/full-cling-build
``` git clone https://github.com/rblake-llnl/llvm-project cd llvm-project git checkout full-cling-build git submodule update --init mkdir build cd build cmake "-DLLVM_ENABLE_PROJECTS:STRING=clang;clang-tools-extra" ../llvm make ``` AFAICT, llvm and clang used to be subversion...
Also, I'm not sure if it's useful to anyone on the cling team, but I've rebased the cling team's patches to clang on llvm-6, llvm-7, and so on all the...
Hi @Maatinski, I actually have an MFEM version of cardiac electrics that implements anisotropic diffusion on either a per-node or per-element basis. The code can be found here: https://github.com/LLNL/cardioid/blob/59c07b714d8b066b4f84eb50487c36f6eadf634c/hack/MatrixElementPiecewiseCoefficient.cpp#L41 The...