aboutsummaryrefslogtreecommitdiff
path: root/src/Specific/montgomery32_2e226m5/compilerxx.sh
diff options
context:
space:
mode:
authorGravatar Jason Gross <jgross@mit.edu>2017-11-03 13:08:41 -0400
committerGravatar Jason Gross <jgross@mit.edu>2017-11-03 13:09:15 -0400
commit2e370d1d3288b3dca6c7b20cdd81a376724276a7 (patch)
treed102e9caa2a7cbd7ae33f0794c091152f154e83c /src/Specific/montgomery32_2e226m5/compilerxx.sh
parent91e46cca8d43c35a52b23056c8b55c1abd110b92 (diff)
fibe: Only define bitwidth on the command line
We generate the PRI macros and the limb_t type from the bitwidth in the C preprocessor My reasoning here is that generate_parameters.py and the generated *.json files are more user-facing than fibe.c, so we should optimize for cleanliness of that user-facing code. If this is the wrong direction to go in, then this commit should be reverted.
Diffstat (limited to 'src/Specific/montgomery32_2e226m5/compilerxx.sh')
-rwxr-xr-xsrc/Specific/montgomery32_2e226m5/compilerxx.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Specific/montgomery32_2e226m5/compilerxx.sh b/src/Specific/montgomery32_2e226m5/compilerxx.sh
index 202f71128..6da847356 100755
--- a/src/Specific/montgomery32_2e226m5/compilerxx.sh
+++ b/src/Specific/montgomery32_2e226m5/compilerxx.sh
@@ -1,4 +1,4 @@
#!/bin/sh
set -eu
-g++ -fno-peephole2 `#GCC BUG 81300` -march=native -mtune=native -std=gnu++11 -O3 -flto -fomit-frame-pointer -fwrapv -Wno-attributes -fno-strict-aliasing -DPRIulimb=PRIu32 -Da24_val='12345' -Dq_mpz='(1_mpz<<226) - 5' -Dlimb_t=uint32_t -Dmodulus_bytes_val='29' -Dlimb_weight_gaps_array='{32,32,32,32,32,32,32,32}' -Dmodulus_limbs='8' -Dmodulus_array='{0x03,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xfb}' -DPRIxlimb=PRIx32 -Da24_hex='0x3039' -Da_minus_two_over_four_array='{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x30,0x39}' "$@"
+g++ -fno-peephole2 `#GCC BUG 81300` -march=native -mtune=native -std=gnu++11 -O3 -flto -fomit-frame-pointer -fwrapv -Wno-attributes -fno-strict-aliasing -Da_minus_two_over_four_array='{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x30,0x39}' -Dmodulus_limbs='8' -Da24_val='12345' -Dbitwidth='32' -Dq_mpz='(1_mpz<<226) - 5' -Dlimb_weight_gaps_array='{32,32,32,32,32,32,32,32}' -Da24_hex='0x3039' -Dmodulus_bytes_val='29' -Dmodulus_array='{0x03,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xfb}' "$@"