aboutsummaryrefslogtreecommitdiff
path: root/src/Specific/NISTP256/AMD64/compiler.sh
diff options
context:
space:
mode:
authorGravatar Jason Gross <jgross@mit.edu>2017-06-28 14:02:16 -0400
committerGravatar Jason Gross <jgross@mit.edu>2017-06-28 14:02:16 -0400
commitc8e4243676de01bc670957566c6f5921d484a63b (patch)
tree36ea048a53e97a1dffba1d8079039cc178955033 /src/Specific/NISTP256/AMD64/compiler.sh
parent8c37e477147824e21038da2c0a4956951481be93 (diff)
Use -std=gnu11 for older versions of gcc
Diffstat (limited to 'src/Specific/NISTP256/AMD64/compiler.sh')
-rwxr-xr-xsrc/Specific/NISTP256/AMD64/compiler.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Specific/NISTP256/AMD64/compiler.sh b/src/Specific/NISTP256/AMD64/compiler.sh
index 4a9f2ce77..e64df574a 100755
--- a/src/Specific/NISTP256/AMD64/compiler.sh
+++ b/src/Specific/NISTP256/AMD64/compiler.sh
@@ -1,4 +1,4 @@
#!/bin/sh
set -eu
-gcc -march=native -mtune=native -O3 -flto -fomit-frame-pointer -fwrapv -Wno-attributes $@
+gcc -march=native -mtune=native -std=gnu11 -O3 -flto -fomit-frame-pointer -fwrapv -Wno-attributes $@