Skip to content

Commit

Permalink
Clean up docs.
Browse files Browse the repository at this point in the history
The docs needs to be generated after building the parser; adjust dependencies
in CMakeLists.txt. Remove misleading content from main page.
  • Loading branch information
tskeith committed Jun 20, 2017
1 parent 6d6ef35 commit 2554100
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 88 deletions.
88 changes: 2 additions & 86 deletions docs/ReleaseNotes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -13,98 +13,14 @@
.. limitations under the License.
=====================================
Flang 1.0 (In-Progress) Release Notes
Flang Overview
=====================================

.. contents::
:local:
:depth: 2

Written by the `Flang Team <http://flang.nvidia.com/>`_

.. warning::

These are in-progress notes for the upcoming Flang 1.0 release. You may
prefer the `Flang 0.0 Release Notes
<http://flang.nvidia.com/releases/0.0/tools/flang/docs/ReleaseNotes.html>`_.

Introduction
============

This document contains the release notes for the Flang Fortran 2008
frontend, release 1.0. Here we describe the status of Flang in some
detail, including major improvements from the previous release and new
feature work.

For more information about Flang, including information about
the latest release, please check out the main please see the `Flang Web
Site <http://flang.nvidia.com>`_.

What's New in Flang 1.0?
========================

Some of the major new features and improvements to Flang are listed
here. Generic improvements to Flang as a whole or to its underlying
infrastructure are described first, followed by improvements to
Flang's support for Fortran versions.

Major New Features
------------------

- Feature1...

Improvements to Flang's diagnostics
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

Flang's diagnostics are constantly being improved to catch more issues,
explain them more clearly, and provide more accurate source information
about them. The improvements since the 0.0 release include:

- ...

New Compiler Flags
------------------

The option ....

Fortran Language Changes in Flang
---------------------------------
The -faltivec and -maltivec flags no longer silently include altivec.h on Power platforms.

...

Fortran 2008 Feature Support
^^^^^^^^^^^^^^^^^^^^^^^^^^^^

...

Internal API Changes
--------------------

These are major API changes that have happened since the 0.0 release of
Flang. If upgrading an external codebase that uses Flang as a library,
this section should help get you past the largest hurdles of upgrading.

- ...

New Issues Found
================

- ...

Significant Known Problems
==========================

Additional Information
======================

A wide variety of additional information is available on the `Flang web
page <http://flang.nvidia.com/>`_. The web page contains versions of the
API documentation which are up-to-date with the Subversion version of
the source code. You can access versions of these documents specific to
this release by going into the "``flang/docs/``" directory in the Flang
tree.
This is a placeholder.

If you have any questions or comments about Flang, please feel free to
contact us via the `mailing
list <http://lists.llvm.org/mailman/listinfo/cfe-dev>`_.
4 changes: 2 additions & 2 deletions tools/flang1/flang1exe/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -151,8 +151,8 @@ add_dependencies(flang1
)

if (FLANG_INCLUDE_DOCS)
add_dependencies(flang1
flang1_gen_sphinx_docs
add_dependencies(flang1_gen_sphinx_docs
flang1
)
endif()

Expand Down

0 comments on commit 2554100

Please sign in to comment.