Skip to content
Snippets Groups Projects
  1. May 28, 2020
  2. May 26, 2020
  3. May 23, 2020
  4. May 22, 2020
  5. May 21, 2020
  6. May 20, 2020
  7. May 19, 2020
    • Andrew Heather's avatar
      Merge branch 'feature-build-granularity' into 'develop' · fec570f3
      Andrew Heather authored
      Feature build granularity
      
      See merge request !359
      fec570f3
    • Mark OLESEN's avatar
      ENH: improved granularity for MPI-rebuilds · f233595a
      Mark OLESEN authored and Andrew Heather's avatar Andrew Heather committed
      - Provide Allwmake-mpi scripts for handling the MPI-only build segment.
      
      - Adjust Make/options to support a FOAM_MPI_LIBBIN target location.
        This will simply default to FOAM_LIBBIN/FOAM_MPI, but allows different
        types of builds with out-of-tree targets.
      
      Example,
      
      Build OpenFOAM with default MPI settings (eg, system openmpi)
      ```
      ./Allwmake
      ```
      
      Rebuild MPI-layers with different MPI.
      
      For any given and known type
      ```
      othermpi()
      {
          export WM_MPLIB=OPENMPI
          export FOAM_MPI=openmpi-3.1.3
      
          export OPAL_PREFIX=$WM_THIRD_PARTY_DIR/platforms/$WM_ARCH$WM_COMPILER/$FOAM_MPI
          export MPI_ARCH_PATH="$OPAL_PREFIX"
      }
      ```
      
      May wish to build/rebuild ptscotch
      ```
      (
          othermpi
          $WM_THIRD_PARTY_DIR/makeSCOTCH
      )
      ```
      
      Rebuild the mpi-dependent parts. Can also provide install location
      ```
      for script in $(find src -name Allwmake-mpi)
      do
      (
          other_mpi
          export FOAM_MPI_LIBBIN="$HOME/tmp/install-prefix/lib/$FOAM_MPI"
      )
      done
      ```
      f233595a
    • Mark OLESEN's avatar
      COMP: support cgal header-only configurations · d7db8f82
      Mark OLESEN authored and Andrew Heather's avatar Andrew Heather committed
      - improve wmake CGAL rule(s) accordingly
      d7db8f82
    • Mark OLESEN's avatar
      ENH: split up internals of wmake/scripts/have_XXX functions · f8ef85b7
      Mark OLESEN authored and Andrew Heather's avatar Andrew Heather committed
      - adds some more flexibility
      f8ef85b7
  8. May 18, 2020
  9. May 16, 2020
  10. May 15, 2020
  11. May 14, 2020