File tree Expand file tree Collapse file tree 4 files changed +43
-5
lines changed Expand file tree Collapse file tree 4 files changed +43
-5
lines changed Original file line number Diff line number Diff line change @@ -97,19 +97,22 @@ $ make install PREFIX=/opt
97
97
Using FPM, a preprocessor flag has to be passed to GNU Fortran. On FreeBSD:
98
98
99
99
```
100
- $ fpm build --profile release --flag "-D__FreeBSD__"
100
+ $ fpm @freebsd-build
101
+ $ fpm @freebsd-install
101
102
```
102
103
103
104
On Linux (x86-64):
104
105
105
106
```
106
- $ fpm build --profile release --flag "-D__linux__"
107
+ $ fpm @linux-amd64-build
108
+ $ fpm @linux-amd64-install
107
109
```
108
110
109
111
On Linux (aarch64):
110
112
111
113
```
112
- $ fpm build --profile release --flag "-D__linux__ -D__aarch64__"
114
+ $ fpm @linux-aarch64-build
115
+ $ fpm @linux-aarch64-install
113
116
```
114
117
115
118
## Source Code Documentation
Original file line number Diff line number Diff line change 1
1
project: fortran-unix
2
- version: 0.2 .0
2
+ version: 0.3 .0
3
3
license: isc
4
4
doc_license: by
5
5
graph: false
Original file line number Diff line number Diff line change
1
+ @freebsd-build
2
+ option build --profile release --flag "-D__FreeBSD__"
3
+
4
+ @freebsd-install
5
+ option install --profile release --flag "-D__FreeBSD__"
6
+
7
+ @freebsd-run
8
+ option run --profile release --flag "-D__FreeBSD__"
9
+
10
+ @freebsd-test
11
+ option test --profile release --flag "-D__FreeBSD__"
12
+
13
+ @linux-aarch64-build
14
+ option build --profile release --flag "-D__linux__ -D__aarch64__"
15
+
16
+ @linux-aarch64-install
17
+ option install --profile release --flag "-D__linux__ -D__aarch64__"
18
+
19
+ @linux-aarch64-run
20
+ option run --profile release --flag "-D__linux__ -D__aarch64__"
21
+
22
+ @linux-aarch64-test
23
+ option test --profile release --flag "-D__linux__ -D__aarch64__"
24
+
25
+ @linux-amd64-build
26
+ option build --profile release --flag "-D__linux__"
27
+
28
+ @linux-amd64-install
29
+ option install --profile release --flag "-D__linux__"
30
+
31
+ @linux-amd64-run
32
+ option run --profile release --flag "-D__linux__"
33
+
34
+ @linux-amd64-test
35
+ option test --profile release --flag "-D__linux__"
Original file line number Diff line number Diff line change 1
1
name = " fortran-unix"
2
- version = " 0.2 .0"
2
+ version = " 0.3 .0"
3
3
license = " ISC"
4
4
author = " Philipp Engel"
5
5
maintainer = " @interkosmos"
You can’t perform that action at this time.
0 commit comments