Revision 8dcc13e2c6ea85f6126e0876e9e1e9a5cb81fd5c authored by Yichao Yu on 01 November 2017, 14:49:03 UTC, committed by GitHub on 01 November 2017, 14:49:03 UTC
Mark `memcmp` as `readonly`, `nounwind` and `argmemonly`
2 parent s 5b95805 + 1638a31
Raw File
README.md
# Julia Documentation README

Julia's documentation is written in Markdown. A reference of all supported syntax can be found in the [manual](https://docs.julialang.org/en/latest/manual/documentation/#markdown-syntax). All documentation can be found in the Markdown files in `doc/src/` and the docstrings in Julia source files in `base/`.

## Requirements

This documentation is built using the [Documenter.jl](https://github.com/JuliaDocs/Documenter.jl) package.

All dependencies are automatically installed into a sandboxed package directory in `doc/deps/` to avoid interfering with user-installed packages.

## Building

To build Julia's documentation run

```sh
$ make docs
```

from the root directory. This will build the HTML documentation and output it to the `doc/_build/` folder.

## Testing

To run the doctests found in the manual run

```sh
$ make -C doc check
```

from the root directory.

back to top