[llvm-branch-commits] [polly] 00f4618 - Revert "[Polly][docs] Polly release notes."

Hans Wennborg via llvm-branch-commits llvm-branch-commits at lists.llvm.org
Wed Feb 26 10:43:42 PST 2020


Author: Hans Wennborg
Date: 2020-02-26T19:40:47+01:00
New Revision: 00f4618182ada5316650eebedac3702b73819ec0

URL: https://github.com/llvm/llvm-project/commit/00f4618182ada5316650eebedac3702b73819ec0
DIFF: https://github.com/llvm/llvm-project/commit/00f4618182ada5316650eebedac3702b73819ec0.diff

LOG: Revert "[Polly][docs] Polly release notes."

It no longer applies after d7afdb596e865c11b853d8c5df7d96d594170e1c.

This reverts commit 002af0119286297dbd76b08a4a6cc4b6b87d3f26.

Added: 
    

Modified: 
    polly/docs/ReleaseNotes.rst

Removed: 
    


################################################################################
diff  --git a/polly/docs/ReleaseNotes.rst b/polly/docs/ReleaseNotes.rst
index 5f49e619976d..1d9aacc9aa68 100644
--- a/polly/docs/ReleaseNotes.rst
+++ b/polly/docs/ReleaseNotes.rst
@@ -10,44 +10,4 @@ In Polly 10 the following important changes have been incorporated.
   the new features that have recently been committed to our development
   branch.
 
-Statically Linking of Polly
-===========================
-
-The mechanism that Polly uses to link itself statically into the opt, bugpoint and clang executables has been generalized such that it can be used by other pass plugins. An example plugin "Bye" has been added to illustate the mechanism. A consequence of this change is that Polly, like the "Bye" plugin, by default is not linked statically into aforementioned executables anymore.
-
-If Polly is not available, the executable will report an unkown argument `-polly`, such as
-
-.. code-block:: console
-
-    $ clang -mllvm -polly -x c -
-    clang (LLVM option parsing): Unknown command line argument '-polly'.  Try: 'clang (LLVM option parsing) --help'
-    clang (LLVM option parsing): Did you mean '--color'?
-
-.. code-block:: console
-
-    $ opt -polly
-    opt: for the -o option: may not occur within a group!
-    opt: Unknown command line argument '-polly'.  Try: 'opt --help'
-    opt: Did you mean '-o'?
-
-Polly can be made available using the following methods.
-
-- Configure LLVM/Clang with the CMake options LLVM_POLLY_LINK_INTO_TOOLS=ON and LLVM_ENABLE_PROJECTS=polly.
-
-  .. code-block:: console
-
-    $ cmake -DLLVM_POLLY_LINK_INTO_TOOLS=ON -DLLVM_ENABLE_PROJECTS=clang;polly ...
-
-  In future versions, LLVM_POLLY_LINK_INTO_TOOLS=ON will be default again if Polly has been enabled.
-
-- Use the `-load` option to load the Polly module.
-
-  .. code-block:: console
-
-    $ clang -Xclang -load -Xclang path/to/LLVMPolly.so ...
-
-  .. code-block:: console
-
-    $ opt -load path/to/LLVMPolly.so ...
-
-  The LLVMPolly.so module can be found in the `lib/` directory of the build or install-prefix directory.
+- Change ...


        


More information about the llvm-branch-commits mailing list