- Jan 17, 2017
-
-
Prashant Sonakar authored
-
- Jan 12, 2017
-
-
Mark Olesen authored
Examples, wmakePrintBuild -plus Check if value is known (ie, everything configured and also OpenFOAM+): if wmakePrintBuild -plus >/dev/null 2>&1 then echo YES else echo NO fi Check if version is new enough if ofver=$(wmakePrintBuild -plus 2>/dev/null) && [ "$ofver" -ge 1612 ] then echo YES else echo NO fi Conditionals ofver=$(wmakePrintBuild -plus 2>/dev/null) case "${ofver:=0}" in 1612) echo "something for 1612 ;; 1706) echo "something for 1706 ;; esac
-
- Jan 11, 2017
- Jan 10, 2017
-
-
Andrew Heather authored
-
Andrew Heather authored
-
Mark Olesen authored
- makes it easier to use as a wordHashSet replacement for situations where we want to avoid duplicates but retain the input order. - support construction from HashTable, which means it works like the HashTable::sortedToc but with its own hashing for these keys. - expose rehash() method for the user. There is normally no need for using it directly, but also no reason to lock it away as private.
-
- Jan 06, 2017
-
-
Andrew Heather authored
-
- Jan 04, 2017
-
-
Andrew Heather authored
-
Andrew Heather authored
-
Andrew Heather authored
-
Andrew Heather authored
-
mattijs authored
-
mattijs authored
-
- Jan 03, 2017
-
-
Mark Olesen authored
- LD_LIBRARY_PATH was not being cleaned at all when switching between paraview versions. - PATH was cleaned against the third-party paraview-*, although 3rd party paraview is installed as ParaView-*. The additional cleanup for ParaView_DIR may not catch this (if it was unset elsewhere).
-
- Dec 23, 2016
-
-
Andrew Heather authored
-
Andrew Heather authored
-
Andrew Heather authored
-
Andrew Heather authored
-
Andrew Heather authored
-
Andrew Heather authored
-
Andrew Heather authored
BUG: Removed call to topoChanging(false) in interDyMFoam and compressibleInterDyMFoam - see #363 and 03db8627
-
Andrew Heather authored
-
Mark Olesen authored
Example use foamGrepExeTargets > targets-available foamGrepExeTargets -appbin > targets-created diff -uw targets-available targets-created
-
Mark Olesen authored
- this is apparently not uniform across systems STYLE: unify the date format in logfile
-
- Dec 22, 2016
-
-
sergio authored
-
sergio authored
This reset the flag from any previous topo changes
-
Mark Olesen authored
-
Mark Olesen authored
- Could be related to interrupted builds. So if there are any parts of the build that rely on an explicit 'wmakeLnInclude', make sure that the contents are properly updated. -- ENH: improved feedback from top-level Allwmake - Report which section (libraries, applications) is being built. - Provide final summary of date, version, etc, which can be helpful for later diagnosis or record keeping. - The -log=XXX option for Allwmake now accepts a directory name and automatically appends an appropriate log name. Eg, ./Allwmake -log=logs/ ->> logs/log.linux64GccDPInt32Opt The default name is built from the value of WM_OPTIONS. -- BUG: shell not exiting properly in combination with -log option - the use of 'tee' causes the shell to hang around. Added an explicit exit to catch this. -- - Detecting the '-k' (-non-stop) option at the top-level Allwmake, which may improve robustness. - Explicit continue-on-error for foamyMesh (as optional component) - unify format of script messages for better readability COMP: reduce warnings when building Pstream (old-style casts in openmpi)
-
Mark Olesen authored
- wm32/wm64 were for changing between -m32, -m64 builds on x86_64 architectures. This is seldom enough not to warrant a special alias. Also ambiguous if these could refer to label sizes. - Remove wm32,wm64 aliases. - Add wmInt32, wmInt64 aliases for switching WM_LABEL_SIZE.
-
Mark Olesen authored
- can compile with icc 17.0.1 - note the min gcc versions needed to compile clang
-
Mark Olesen authored
ENH: ensure averaging flags are not 'sticky' (see issue #331)
-
Andrew Heather authored
-
Andrew Heather authored
ENH: InjectedParticleDistributionInjection model - added protection for the case of zero particles; updated tutorial scripts. See #363
-
Andrew Heather authored
BUG: Tutorial updates - updated rhoSimpleFoam thermo to use rhoThermo after commit a7c8d1cf - see #355
-
Andrew Heather authored
-
- Dec 21, 2016
-
-
mattijs authored
-
Mark Olesen authored
-
Andrew Heather authored
-