diff --git a/cmake/CompilerFlags.cmake b/cmake/CompilerFlags.cmake index ba764205681..9e37f085484 100644 --- a/cmake/CompilerFlags.cmake +++ b/cmake/CompilerFlags.cmake @@ -75,11 +75,15 @@ elseif(CMAKE_COMPILER_IS_GNUCXX OR "${CMAKE_CXX_COMPILER_ID}" STREQUAL "Clang" O target_compile_options(project_warnings INTERFACE -Wno-delete-non-virtual-dtor) target_compile_options(project_warnings INTERFACE -Wno-missing-braces) if(CMAKE_COMPILER_IS_GNUCXX) # g++ - target_compile_options(project_warnings INTERFACE -Wno-unused-but-set-parameter -Wno-unused-but-set-variable) # Suppress unused-but-set warnings until more serious ones are addressed + target_compile_options(project_warnings INTERFACE -Wno-unused-but-set-parameter -Wno-unused-but-set-variable) target_compile_options(project_warnings INTERFACE -Wno-maybe-uninitialized) target_compile_options(project_warnings INTERFACE -Wno-aggressive-loop-optimizations) elseif("${CMAKE_CXX_COMPILER_ID}" STREQUAL "Clang" OR "${CMAKE_CXX_COMPILER_ID}" STREQUAL "AppleClang") + if(CMAKE_CXX_COMPILER_VERSION VERSION_GREATER_EQUAL 13.0) + # Suppress unused-but-set warnings until more serious ones are addressed + target_compile_options(project_warnings INTERFACE -Wno-unused-but-set-parameter -Wno-unused-but-set-variable) + endif() target_compile_options(project_warnings INTERFACE -Wno-vexing-parse) target_compile_options(project_warnings INTERFACE -Wno-invalid-source-encoding) endif() diff --git a/release/readme.html b/release/readme.html index 1a6247170d5..af9636d80a0 100644 --- a/release/readme.html +++ b/release/readme.html @@ -200,8 +200,8 @@

Multiple Version Conversions

energyplushelp.freshdesk.com) to request multiple - conversion set of programs. + Helpdesk to request + multiple conversion set of programs.

Documentation

@@ -230,7 +230,7 @@

Weather Data

EnergyPlus uses these files directly for annual simulations. The Weather Converter program that is part of EnergyPlus can read these weather files and provide .csv (comma separated variable) as well as statistics reports - about the included (or other) files. Weather data for more than 2100 locations in more than 100 countries can be + about the included (or other) files. Weather data for more than 3000 locations in more than 100 countries can be downloaded on the EnergyPlus Weather Page.

Highlights of this release (V22.1.0)

@@ -386,13 +386,13 @@

Platforms

Packages changed slightly as of the 9.4 release. We began building our packages on a new system which adds better support for newer platforms. During the change, we stepped away from some older OS versions. For example, we are - not testing on Windows 7 or 8, only 10. However, both our 32-bit and 64-bit packages now include the new + not testing on Windows 7 or 8, only 10 and 11. However, both our 32-bit and 64-bit packages now include the new Python plugin system, rather than just the 64-bit as previously. We have also added packaging and testing with Ubuntu 20.04 in addition to Ubuntu 18.04. On Mac, we are officially releasing an installer for OSX 10.15 and moving toward OSX 11 as well.