summaryrefslogtreecommitdiff
path: root/Help
diff options
context:
space:
mode:
authorDongHun Kwak <dh0128.kwak@samsung.com>2021-10-08 09:13:59 +0900
committerDongHun Kwak <dh0128.kwak@samsung.com>2021-10-08 09:13:59 +0900
commit3ca352e5131db9afbc19acc82e52975f742ec26e (patch)
tree95081d17e5262bc72990c7ca810b62aad39f9f03 /Help
parent1fd56c03f6f5d75d53d86fa76ed27ac9afd78a04 (diff)
downloadcmake-3ca352e5131db9afbc19acc82e52975f742ec26e.tar.gz
cmake-3ca352e5131db9afbc19acc82e52975f742ec26e.tar.bz2
cmake-3ca352e5131db9afbc19acc82e52975f742ec26e.zip
Imported Upstream version 3.14.6upstream/3.14.6
Diffstat (limited to 'Help')
-rw-r--r--Help/policy/CMP0083.rst6
-rw-r--r--Help/release/3.14.rst8
2 files changed, 14 insertions, 0 deletions
diff --git a/Help/policy/CMP0083.rst b/Help/policy/CMP0083.rst
index 32acf1f12..e0b09cff5 100644
--- a/Help/policy/CMP0083.rst
+++ b/Help/policy/CMP0083.rst
@@ -28,6 +28,12 @@ This policy was introduced in CMake version 3.14. Use the
Unlike most policies, CMake version |release| does not warn when this policy is
not set and simply uses ``OLD`` behavior.
+.. Note::
+
+ Android platform has a special handling of ``PIE`` so it is not required
+ to use the :module:`CheckPIESupported` module to ensure flags are passed to
+ the linker.
+
.. include:: DEPRECATED.txt
Examples
diff --git a/Help/release/3.14.rst b/Help/release/3.14.rst
index e3a7a62fb..229d8dc78 100644
--- a/Help/release/3.14.rst
+++ b/Help/release/3.14.rst
@@ -420,3 +420,11 @@ Changes made since CMake 3.14.0 include the following.
from explicit use via :command:`include_directories` and
:command:`target_include_directories` as they were in CMake 3.14.0
through 3.14.4.
+
+3.14.6
+------
+
+* In CMake 3.14.0 through 3.14.5, the :module:`FindBISON` module
+ policy :policy:`CMP0088` ``NEW`` behavior accidentally interpreted
+ a relative path to the ``.y`` input as relative to the build tree
+ directory instead of the source tree directory. This has been fixed.