Skip to content
Snippets Groups Projects
  1. Jan 24, 2017
  2. Jan 23, 2017
  3. Jan 20, 2017
  4. Jan 18, 2017
  5. Jan 23, 2017
  6. Jan 19, 2017
  7. Jan 17, 2017
  8. Jan 12, 2017
    • Mark Olesen's avatar
      ENH: command-line query for the OPENFOAM_PLUS wmake value (issue #378) · 23d24a51
      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
      23d24a51
  9. Jan 11, 2017
  10. Jan 10, 2017
  11. Jan 06, 2017
  12. Jan 04, 2017
  13. Jan 03, 2017
    • Mark Olesen's avatar
      BUG: Incomplete cleanup of paraview environment (fixes #369) · 0761974a
      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).
      0761974a
  14. Dec 23, 2016
  15. Dec 22, 2016
    • sergio's avatar
    • sergio's avatar
      ENH: setting topoChanging flag to false if there are no topo changes in polyTopoChanger::update. · 03db8627
      sergio authored
      This reset the flag from any previous topo changes
      03db8627
    • Mark Olesen's avatar
    • Mark Olesen's avatar
      COMP: update lnInclude directories when building (issue #364) · 608bb5d8
      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)
      608bb5d8
    • Mark Olesen's avatar
      STYLE: confusing wm32, wm64 aliases (issue #364) · 5f811ac0
      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.
      5f811ac0
    • Mark Olesen's avatar
      DOC: update BuildIssues · f4adb1f1
      Mark Olesen authored
      - can compile with icc 17.0.1
      - note the min gcc versions needed to compile clang
      f4adb1f1