Browse Source

Updated build scripts to use environment compile flags.

Bumped version number.
main
Bill Ladwig 6 years ago
parent
commit
30214df017
  1. 2
      build_scripts/gnu_no_omp.sh
  2. 2
      build_scripts/gnu_omp.sh
  3. 12
      doc/source/new.rst
  4. 2
      src/wrf/version.py

2
build_scripts/gnu_no_omp.sh

@ -1,8 +1,6 @@ @@ -1,8 +1,6 @@
#!/bin/bash
unset LDFLAGS
unset FFLAGS
unset CFLAGS
cd ../fortran
$FC -E ompgen.F90 -cpp -o omp.f90

2
build_scripts/gnu_omp.sh

@ -1,8 +1,6 @@ @@ -1,8 +1,6 @@
#!/bin/bash
unset LDFLAGS
unset FFLAGS
unset CFLAGS
cd ../fortran/build_help
$FC -o sizes -fopenmp omp_sizes.f90

12
doc/source/new.rst

@ -4,6 +4,18 @@ What's New @@ -4,6 +4,18 @@ What's New
Releases
-------------
v1.3.2 (February 2019)
^^^^^^^^^^^^^^^^^^^^^^^^^
- Release 1.3.2
- Coordinate name index positions are no longer assumed and are searched
instead. Some users use xarray to rewrite WRF output files, and xarray
might reorder the coordinate name positions.
- Fixed a segfault issue with CAPE when more than 150 vertical levels are
used (e.g. LES runs).
- setup.py will now bootstrap the numpy installation (thanks bbonenfant!).
v1.3.1 (January 2019)
^^^^^^^^^^^^^^^^^^^^^^^^^

2
src/wrf/version.py

@ -1 +1 @@ @@ -1 +1 @@
__version__ = "1.3.1"
__version__ = "1.3.2"

Loading…
Cancel
Save