Skip to content
Snippets Groups Projects
  1. Apr 08, 2020
    • Mark OLESEN's avatar
      CONFIG: improve config files for Darwin (#1667), BSD-csh syntax (#1668) · f01ad2f1
      Mark OLESEN authored
      - use Clang instead of Gcc for Darwin since this is its system
        compiler. The user can force use of Gcc by using Gcc92 etc.
      
      - make etc/cshrc sed check more robust.
      
      - replace tcsh (${%var}) syntax with ("${var}" != "")
      
      [Fixes and ideas from Alexey Matveichev]
      
      CONFIG: do not source the gperftools environment by default
      
      - this is now an used feature, but can be re-enabled by advanced users
        if required.
      f01ad2f1
    • Mark OLESEN's avatar
      ENH: improve foamConfigurePaths, remove some antiquated tools · 3fd91c90
      Mark OLESEN authored
      - add edit of llvm/mesa/vtk paths. Reduce some verbosity
      
      - include Darwin in foamInstallationTest, foamSystemCheck to avoid
        a false negative.
      3fd91c90
    • Mark OLESEN's avatar
      BUG: minor regression in surface reading of compressed files (#1600) · 5f90964d
      Mark OLESEN authored
      - as a side-effect of recent changes, command-line stripping of .gz
        extensions on input was lost. For example,
      
            OK:    surfaceTransformPoints file.stl ...
            Fail:  surfaceTransformPoints file.stl.gz ...
      
      - restore the previous behaviour of silently stripping the '.gz'
        extension on input.
      
      ENH: add triSurface::New selector entry point
      
      - for symmetry with MeshedSurface
      5f90964d
  2. Apr 06, 2020
  3. Apr 03, 2020
  4. Apr 02, 2020
  5. Apr 01, 2020
    • Mark OLESEN's avatar
      ENH: adjustments to error streams · 617b6027
      Mark OLESEN authored
      - refactor common exit/abort code
      
      - support single-parameter output. Eg,
      
          FatalError("some-executable")
              << "Cannot load something\n"
              << exit(FatalError);
      617b6027
    • Mark OLESEN's avatar
      ENH: add a Pstream::shutdown() method (#1660) · 01f65054
      Mark OLESEN authored
      - previously used a Pstream::exit() invoked from the argList
        destructor to handle all MPI shutdown, but this has the unfortunate
        side-effect of using a fixed return value for the program exit.
      
        Instead use the Pstream::shutdown() method in the destructor and allow
        the normal program exit codes as usual. This means that the
        following code now works as expected.
      
        ```
        argList args(...);
      
        if (...)
        {
            InfoErr<< "some error\n";
            return 1;
        }
        ```
      01f65054
    • Andrew Heather's avatar
    • Mark OLESEN's avatar
      GIT: remove unused files · b2a3e948
      Mark OLESEN authored
      - orphaned file: extendedFeatureEdgeMeshI.H
      
      - unused primitiveFaceZone typedef.
        Identical to indirectPrimitivePatch typedef
      b2a3e948
  6. Mar 30, 2020
  7. Mar 31, 2020
  8. Mar 30, 2020
  9. Mar 25, 2020
  10. Mar 23, 2020
  11. Mar 31, 2020
  12. Mar 30, 2020
  13. Mar 27, 2020
  14. Mar 26, 2020