diff options
| author | Mattias Andrée <m@maandree.se> | 2026-05-04 16:20:41 +0200 |
|---|---|---|
| committer | Mattias Andrée <m@maandree.se> | 2026-05-04 16:20:41 +0200 |
| commit | a55b5e870b6f49222673258a609ad45b0d8599bd (patch) | |
| tree | 6de21cba3a3561fbf5ec1764b2520691c5fb1ec2 /config-armv8.mk | |
| parent | test.c: let libsha1_sum_fd (malloc) modify errno (diff) | |
| download | libsha1-1.1.5.1.tar.gz libsha1-1.1.5.1.tar.bz2 libsha1-1.1.5.1.tar.xz | |
Signed-off-by: Mattias Andrée <m@maandree.se>
Diffstat (limited to '')
| -rw-r--r-- | config-armv8.mk | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/config-armv8.mk b/config-armv8.mk index c98fd0e..ddda52a 100644 --- a/config-armv8.mk +++ b/config-armv8.mk @@ -4,7 +4,10 @@ MANPREFIX = $(PREFIX)/share/man CC = cc -std=c11 CPPFLAGS = -D_DEFAULT_SOURCE -D_BSD_SOURCE -D_XOPEN_SOURCE=700 -CFLAGS = -Wall -O3 -march=armv8-a+crypto +CFLAGS = -Wall -O3 -march=native +# If you cannot use -march=native, you should do e.g -march=armv8-a+crypto +# however, you have to be careful selecting the exact version, +# so you may have to replace armv8-a with something else. LDFLAGS = -s # You can add -DALLOCA_LIMIT=# to CPPFLAGS, where # is a size_t |
