Skip to content

Commit

Permalink
Updated README.
Browse files Browse the repository at this point in the history
  • Loading branch information
interkosmos committed Jun 26, 2024
1 parent 67ba8af commit 0392a44
Showing 1 changed file with 11 additions and 6 deletions.
17 changes: 11 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,20 +57,19 @@ On FreeBSD, run:
$ make freebsd
```

On Linux, run instead:
On Linux (x86-64), run instead:

```
$ make linux
```

Or, set parameter `OS` to either `linux` or `FreeBSD`, and `PREFIX` to `/usr` or
`/usr/local`, for instance:
On Linux (aarch64), run:

```
$ make OS=linux PREFIX=/usr
$ make linux_aarch64
```

For Intel oneAPI, run:
To build with Intel oneAPI, run:

```
$ make CC=icx FC=ifx PPFLAGS=
Expand All @@ -93,12 +92,18 @@ Using FPM, a preprocessor flag has to be passed to GNU Fortran. On FreeBSD:
$ fpm build --profile release --flag "-D__FreeBSD__"
```

On Linux:
On Linux (x86-64):

```
$ fpm build --profile release --flag "-D__linux__"
```

On Linux (aarch64):

```
$ fpm build --profile release --flag "-D__linux__ -D__aarch64__"
```

## Source Code Documentation

The source code documentation of the library has to be created with
Expand Down

0 comments on commit 0392a44

Please sign in to comment.