[llvm-branch-commits] [cfe-branch] r323132 - [6.0.0 Release] Release notes for configuration files in clang

Serge Pavlov via llvm-branch-commits llvm-branch-commits at lists.llvm.org
Mon Jan 22 08:44:29 PST 2018


Author: sepavloff
Date: Mon Jan 22 08:44:29 2018
New Revision: 323132

URL: http://llvm.org/viewvc/llvm-project?rev=323132&view=rev
Log:
[6.0.0 Release] Release notes for configuration files in clang

Differential Revision: https://reviews.llvm.org/D42360

Modified:
    cfe/branches/release_60/docs/ReleaseNotes.rst

Modified: cfe/branches/release_60/docs/ReleaseNotes.rst
URL: http://llvm.org/viewvc/llvm-project/cfe/branches/release_60/docs/ReleaseNotes.rst?rev=323132&r1=323131&r2=323132&view=diff
==============================================================================
--- cfe/branches/release_60/docs/ReleaseNotes.rst (original)
+++ cfe/branches/release_60/docs/ReleaseNotes.rst Mon Jan 22 08:44:29 2018
@@ -163,6 +163,15 @@ Attribute Changes in Clang
 - The presence of __attribute__((availability(...))) on a declaration no longer
   implies default visibility for that declaration on macOS.
 
+- Clang now supports configuration files. These are collections of driver
+  options, which can be applied by specifying the configuration file, either
+  using command line option `--config foo.cfg` or encoding it into executable
+  name `foo-clang`. Clang behaves as if the options from this file were inserted
+  before the options specified in command line. This feature is primary intended
+  to facilitate cross compilation. Details can be found in
+  `Clang Compiler User's Manual
+  <http://clang.llvm.org/docs/UsersManual.html#configuration-files>`.
+
 - ...
 
 Windows Support




More information about the llvm-branch-commits mailing list