- May 16, 2018
-
-
Mark OLESEN authored
- tie the MPI rules to the base compiler type *without* its version. Eg, linux64Gcc (which exists) instead of linux64Gcc81
-
- Feb 28, 2018
-
-
Mark OLESEN authored
- downgrades some diagnostics about nonconformant code from errors to warnings. Oddly enough, the errors actually arise from STL library elements shipped with gcc itself. Affects kahip compilation with gcc-6, gcc-7
-
- Dec 19, 2017
-
-
Mark OLESEN authored
- required if there is no system openmp and libomp or libgomp are only found in the clang hierarchy STYLE: add some notes in the openmp rules. - the _OPENMP macro is now used in low-level testing files
-
- Dec 15, 2017
-
-
Mark OLESEN authored
- allows enabling new warnings without causing messy output with older clang versions
-
- Dec 08, 2017
-
-
Mark OLESEN authored
-
- Dec 07, 2017
-
-
Mark OLESEN authored
- initial settings for ADIOS2, linuxARM64Gcc, linuxARM64Clang
-
- Sep 29, 2017
-
-
Mark OLESEN authored
-
- Oct 23, 2017
-
-
Mark OLESEN authored
- the USE_OMP preprocessor symbol is also defined with the openmp compile flag to allow conditional compilation of openmp-specific code.
-
- Sep 20, 2017
-
-
Mark OLESEN authored
- improve functional compatibility with DynList (remove methods) * eg, remove an element from any position in a DynamicList * reduce the number of template parameters * remove/subset regions of DynamicList - propagate Swap template specializations for lists, hashtables - move construct/assignment to various containers. - add find/found methods for FixedList and UList for a more succinct (and clearer?) usage than the equivalent global findIndex() function. - simplify List_FOR_ALL loops
-
- Aug 04, 2017
-
-
Mark OLESEN authored
- the cray C/C++ compilers appear to be option-compatible with gcc. - no wmake rules for 32bit builds (deemed to be unnecessary)
-
- Jul 31, 2017
-
-
- Jun 27, 2017
-
-
Mark OLESEN authored
-
- May 30, 2017
-
-
Mark OLESEN authored
- not yet release, but some of the API and file locations are closer to 1706 than to 1612. Needed, for example, for swak4foam.
-
- Mar 15, 2017
-
-
Mark Olesen authored
- minor cleanup of wmake sources
-
- Mar 10, 2017
-
-
Mark Olesen authored
- easier to test or use different versions - change WM_CXXFLAGS to -std=c++11 instead of -std=c++0x
-
- Jan 18, 2017
-
-
Henry Weller authored
-
- Jan 05, 2017
-
-
Mark Olesen authored
- use "-pvMAJ.MIN" suffix for similarity with the paraview convention - use sentinel file to ensure clean change of intermediate targets - ensure all library files are being properly removed
-
- Dec 09, 2016
-
-
Mark Olesen authored
- slightly odd. Building CGAL on other Linux systems have a proper ldd dependency for gmp/mpfr, but ubuntu doesn't
-
- Nov 28, 2016
-
-
Mark Olesen authored
- now that adios_config flags are largely working in ThirdParty
-
- Nov 27, 2016
-
-
Mark Olesen authored
- support gperftools-none, gperftools-system configurations as per other third-party packages. STYLE: clean up more environment variables CONFIG: testing adios rule
-
- Nov 25, 2016
-
-
Mark Olesen authored
- these directories are sometimes used for a central, non-thirdparty, non-system installation - leave gmp and mpfr as is, since it is not clear how these would interact with system versions
-
- Nov 14, 2016
-
-
Henry Weller authored
-
Henry Weller authored
-
- Nov 13, 2016
-
-
Henry Weller authored
-
Henry Weller authored
-
Henry Weller authored
-
- Nov 12, 2016
-
-
Henry Weller authored
Based on patch contributed by Alexey Matveichev Resolves feature request http://bugs.openfoam.org/view.php?id=2328
-
- Nov 04, 2016
-
-
Mark Olesen authored
On 64-bit systems, the system installations of boost, cgal are under lib64/. The behaviour for a ThirdParty build is mostly lib/ but this can also be changing. Boost 1_62_0 and older build into 'lib/'. CGAL-4.9 builds into 'lib64/', older versions into 'lib/'. Future-proof things by using lib$WM_COMPILER_LIB_ARCH for boost and cgal build rules, and forcing these as build targets in the ThirdParty makeCGAL as well. -- STYLE: check for boost/version.hpp, CGAL/version.h instead their directories
-
- Oct 09, 2016
-
-
Henry Weller authored
Resolves bug-report http://bugs.openfoam.org/view.php?id=2283
-
- Oct 04, 2016
-
-
Henry Weller authored
-
- Sep 30, 2016
-
-
Mark Olesen authored
- CGAL itself includes its library dependencies, we only need to provide the -L... option to the proper ThirdParty locations. Should help improve general build robustness.
-
- Sep 13, 2016
-
-
Mark Olesen authored
- 64-bit builds of gcc/mpfr/gmp use lib64/ for their installation path. Use this for the wmake rules as well.
-
- Aug 22, 2016
-
-
Henry Weller authored
Patch contributed by Paul Edwards, Intel.
-
- Aug 11, 2016
-
-
Henry Weller authored
-
- Aug 05, 2016
-
-
Henry Weller authored
The change from C++0x to C++11 allows all of C++11 functionality to be used in OpenFOAM, in particular constructor delegation which avoids code duplication or constructor helper functions. However, this also means a change to the minimum gcc version supported which is now 4.7 rather than 4.5. Note that gcc-4.7 does not support the entire C++11 standard but does support all of the functionality currently needed for further OpenFOAM development. The minimum gcc-version which supports the entire C++11 standard is 4.8 which is now the recommended minimum gcc version.
-
- Jul 28, 2016
-
-
Henry Weller authored
-
- Jul 26, 2016
-
-
Mark Olesen authored
The pre-processor macro 'OPENFOAM_PLUS' is defined with a numerical value equal to the currently compatible version number. This can be used judiciously within user coding to help with minor differences between OpenFOAM versions. For example, #ifdef OPENFOAM_PLUS #if (OPENFOAM_PLUS >= 1612) ... #endif #endif or simply #if (OPENFOAM_PLUS >= 1612) ... #endif
-
- Sep 29, 2016
-
-
Mark Olesen authored
-
- Jul 03, 2016
-
-
Henry Weller authored
-
- Jun 21, 2016
-
-
Henry Weller authored
-