Skip to content
Snippets Groups Projects
  1. Oct 28, 2016
  2. Oct 26, 2016
    • Mark Olesen's avatar
      CONFIG: remove non-POSIX use of 'type' (issue #176) · 3b96a557
      Mark Olesen authored
      - In the foundation version they introduced a construct to handle
        the transition from 'wmRefresh' as an alias to 'wmRefresh' as
        a shell function. This transition is unnecessary for OpenFOAM+
        since 1606 used wmREFRESH (not wmRefresh) as an alias.
      
        For portability it is important to avoid this non-POSIX
        "type -t". It causes issues with dash and with zsh
        (mentioned in issue #277).
      
              type -t dash  ->   -t: not found
              type -t zsh   ->  zsh: bad option: -t
      
      Note: zsh users may still noticed other problems.
      For example, the POSIX 'unset -f' normally has no output, but in zsh
      it reports an error and has exit code 1 if the function was not
      previously defined. Whereas in POSIX (including bash, dash) it only
      returns non-zero if the name(s) could not be unset.
      3b96a557
  3. Oct 09, 2016
  4. Sep 29, 2016
  5. Sep 28, 2016
  6. Sep 27, 2016
  7. Sep 09, 2016
  8. Sep 05, 2016
  9. Sep 03, 2016
  10. Aug 23, 2016
    • Henry Weller's avatar
      etc/bashrc, etc/config.sh: · c482490a
      Henry Weller authored
        - "$FOAM_USER_APPBIN" and "$FOAM_USER_LIBBIN" have been added to
          "foamOldDirs" in "etc/bashrc" and "etc/config.sh/unset"
      
        - "$OPAL_PREFIX" is now undefined in the option "SYSTEMOPENMPI" within
          "etc/config.sh/mpi", but only if the path defined in this variable
          is cleaned when using "foamCleanPath".
      
        - "$OPAL_PREFIX" is now also conditionally undefined in
          "etc/config.sh/unset" when the path is picked up by "foamCleanPath".
      
      Patch contributed by Bruno Santos
      Resolved bug-report http://bugs.openfoam.org/view.php?id=2210
      c482490a
  11. Aug 18, 2016
  12. Aug 12, 2016
  13. Aug 11, 2016
  14. Aug 05, 2016
    • Henry Weller's avatar
      C++11: Update compilation rules to specify C++11 support and conformance · 7996a913
      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.
      7996a913
    • Mark Olesen's avatar
      DEFEATURE: remove samm, pro-am, prostar3 convertors (issue #204) · b475ae85
      Mark Olesen authored
      - these frontends are defunct and their formats were quite a mess.
        Prostar 4 versions (star4ToFoam, foamToStarMesh) should be used
        instead.
      b475ae85
  15. Jul 31, 2016
  16. Jul 13, 2016
    • Mark Olesen's avatar
      STYLE: clean out clutter in paraview config files (issue #176) · 9e2259c1
      Mark Olesen authored
      Now reduced to 3 environment variables:
          ParaView_DIR         - paraview installation directory
          ParaView_INCLUDE_DIR - paraview include directory
          PV_PLUGIN_PATH       - paraview plugin directory for OpenFOAM modules
      
      Previously also had (ParaView_MAJOR, ParaView_VERSION).
      
      ThirdParty makeParaView adjusted accordingly.
      
      ENH: improved configuration possibility for non-ThirdParty paraview
      installation.
      
      BUG: csh foamPV alias was completely incorrect.
      9e2259c1
  17. Jul 12, 2016
    • Mark Olesen's avatar
      STYLE: cleanup compiler settings (issue #176) · 787b19c4
      Mark Olesen authored
      - export/setenv WM_COMPILER_TYPE as suggested by Mattijs.
      
      - for overall consistency, don't carp about an unset WM_COMPILER_TYPE,
        since this would only be on the first instance (prior to the
        export/setenv) and would be confusing about why/when this message
        may occur.
      
      - reduce clutter: only use (system|ThirdParty) for WM_COMPILER_TYPE.
        Drop the old 'OpenFOAM' setting for WM_COMPILER_TYPE, which was
        transitional in early 2011.
      
      - make the error messages more meaningful
      787b19c4
  18. Sep 29, 2016
  19. Jul 06, 2016
  20. Jul 05, 2016
  21. Jul 01, 2016
  22. Jun 30, 2016
  23. Jun 29, 2016
  24. Jun 28, 2016
  25. Jun 27, 2016
  26. Jun 24, 2016
  27. Jun 23, 2016
  28. Jun 21, 2016
  29. Jun 19, 2016
  30. Jun 17, 2016
    • Mark Olesen's avatar
      STYLE: minor config file details · b2b41231
      Mark Olesen authored
      - move unset mpi buffer size from config.csh/settings -> config.csh/mpi
      
      - wmUNSET now also unalias wmREFRESH
      
      Note: unsetenv WM_COMPILER_TYPE in csh variant?
      
      - drop reference to paraview-3 in config files.
        Cannot say anything definite about support for versions
        this old (2012)
      b2b41231