You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+15Lines changed: 15 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -18,6 +18,21 @@ fpm build --profile release
18
18
fpm test --profile release
19
19
```
20
20
21
+
By default, the library is built with single precision (`int32`) integer values. Explicitly specifying the integer kind can be done using the following processor flag:
22
+
23
+
Preprocessor flag | Kind | Number of bytes
24
+
----------------- | ----- | ---------------
25
+
`INT8` | `integer(kind=int8)` | 1
26
+
`INT16` | `integer(kind=int16)` | 2
27
+
`INT32` | `integer(kind=int32)` | 4
28
+
`INT64` | `integer(kind=int64)` | 8
29
+
30
+
For example, to build a long integer version of the library:
0 commit comments