diff options
author | Nathaniel Graff <nathaniel.graff@sifive.com> | 2019-03-07 21:46:50 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-03-07 21:46:50 +0000 |
commit | c6c0fbf23d1fc8aa9b99eae19b6e3741c8d51548 (patch) | |
tree | 05d66aafd89e26dbf43de29015facff1dc59b575 /doc/sphinx/userguide | |
parent | 7b036c07e40a6f3d3cf1ddfc5d88d3a36beb4e46 (diff) | |
parent | 4978fcac7f106ceb02697702b0b28d6954c58ef6 (diff) |
Merge pull request #198 from sifive/update-docs
Update docs with latest SDK contents
Diffstat (limited to 'doc/sphinx/userguide')
-rw-r--r-- | doc/sphinx/userguide/buildingcoreip.rst | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/sphinx/userguide/buildingcoreip.rst b/doc/sphinx/userguide/buildingcoreip.rst index 7479931..986ad68 100644 --- a/doc/sphinx/userguide/buildingcoreip.rst +++ b/doc/sphinx/userguide/buildingcoreip.rst @@ -8,7 +8,7 @@ To compile a bare-metal RISC-V program: .. code-block:: bash - make [PROGRAM=hello] [TARGET=coreip-e31] software + make [PROGRAM=hello] [TARGET=coreip-e31-rtl] software The square brackets in the above command indicate optional parameters for the Make invocation. As you can see, the default values of these parameters tell @@ -18,7 +18,7 @@ Core IP target, you would instead run the command .. code-block:: bash - make PROGRAM=timer-interrupt TARGET=coreip-s51 software + make PROGRAM=timer-interrupt TARGET=coreip-s51-rtl software Cleaning a Target Program Build Directory ----------------------------------------- @@ -27,5 +27,5 @@ The ``clean`` target can be used to restore a target program's directory to a cl .. code-block:: bash - make [PROGRAM=hello] [TARGET=coreip-e31] clean + make [PROGRAM=hello] [TARGET=coreip-e31-rtl] clean |