Implementation notes: amd64, robin281, crypto_sign/pflash1

Computer: robin281
Architecture: amd64
CPU ID: GenuineIntel-000206d7-bfebfbff
SUPERCOP version: 20170228
Operation: crypto_sign
Primitive: pflash1
TimeObject sizeTest sizeImplementationCompilerBenchmark dateSUPERCOP version
1336644? ? ?? ? ?reficc_-no-vec2017041220170228
1444992? ? ?? ? ?reficc_-xAVX_-O3_-fomit-frame-pointer2017041220170228
1630824? ? ?? ? ?reficc2017041220170228
2194908? ? ?? ? ?reficc_-xAVX_-O2_-fomit-frame-pointer2017041220170228

Compiler output

Implementation: crypto_sign/pflash1/ref
Compiler: cc
SignScheme.c: SignScheme.c: In function 'signatureofshorthash':
SignScheme.c: SignScheme.c:211: warning: passing argument 1 of 'SignScheme_sign' discards qualifiers from pointer target type
SignScheme.c: SignScheme.c:95: note: expected 'byte *' but argument is of type 'const unsigned char *'
SignScheme.c: SignScheme.c: In function 'verification':
SignScheme.c: SignScheme.c:227: warning: passing argument 1 of 'SignScheme_GMap' discards qualifiers from pointer target type
SignScheme.c: SignScheme.c:152: note: expected 'byte *' but argument is of type 'const unsigned char *'
SignScheme.c: SignScheme.c:227: warning: passing argument 2 of 'SignScheme_GMap' discards qualifiers from pointer target type
SignScheme.c: SignScheme.c:152: note: expected 'byte *' but argument is of type 'const unsigned char *'
try.c: /scratch_lustre_na/bdolbeaur/supercop-20170228/supercop-data/robin281/amd64/lib/libsupercop.a(crypto_hash_sha256_sphlib-sha2.o): In function `sph_sha224':
try.c: sha2.c:(.text+0x...): undefined reference to `__intel_ssse3_rep_memcpy'
try.c: sha2.c:(.text+0x...): undefined reference to `__intel_ssse3_rep_memcpy'
try.c: sha2.c:(.text+0x...): undefined reference to `__intel_ssse3_rep_memcpy'
try.c: /scratch_lustre_na/bdolbeaur/supercop-20170228/supercop-data/robin281/amd64/lib/libsupercop.a(crypto_hash_sha256_sphlib-sha2.o): In function `sph_sha224_close':
try.c: sha2.c:(.text+0x...): undefined reference to `_intel_fast_memset'
try.c: sha2.c:(.text+0x...): undefined reference to `_intel_fast_memset'
try.c: /scratch_lustre_na/bdolbeaur/supercop-20170228/supercop-data/robin281/amd64/lib/libsupercop.a(crypto_hash_sha256_sphlib-sha2.o): In function `sph_sha224_addbits_and_close':
try.c: sha2.c:(.text+0x...): undefined reference to `_intel_fast_memset'
try.c: sha2.c:(.text+0x...): undefined reference to `_intel_fast_memset'
try.c: /scratch_lustre_na/bdolbeaur/supercop-20170228/supercop-data/robin281/amd64/lib/libsupercop.a(crypto_hash_sha256_sphlib-sha2.o): In function `sph_sha256_close':
try.c: sha2.c:(.text+0x...): undefined reference to `_intel_fast_memset'
try.c: /scratch_lustre_na/bdolbeaur/supercop-20170228/supercop-data/robin281/amd64/lib/libsupercop.a(crypto_hash_sha256_sphlib-sha2.o):sha2.c:(.text+0x...): more undefined references to `_intel_fast_memset' follow
try.c: collect2: ld returned 1 exit status

Number of similar (compiler,implementation) pairs: 1, namely:
CompilerImplementations
cc ref

Compiler output

Implementation: crypto_sign/pflash1/ref
Compiler: gcc
PFLASH.c: PFLASH.c:152:16: warning: '_Z' is static but used in inline function 'polyMul' which is not static
PFLASH.c: memcpy( outZ ,_Z,37);
PFLASH.c: ^~
PFLASH.c: PFLASH.c:149:4: warning: '_Z' is static but used in inline function 'polyMul' which is not static
PFLASH.c: _Z[i-(37- 0)] ^= temp;
PFLASH.c: ^~
PFLASH.c: PFLASH.c:148:4: warning: '_Z' is static but used in inline function 'polyMul' which is not static
PFLASH.c: _Z[i-(37- 2)] ^= temp;
PFLASH.c: ^~
PFLASH.c: PFLASH.c:147:4: warning: '_Z' is static but used in inline function 'polyMul' which is not static
PFLASH.c: _Z[i-(37-10)] ^= temp;
PFLASH.c: ^~
PFLASH.c: PFLASH.c:146:4: warning: '_Z' is static but used in inline function 'polyMul' which is not static
PFLASH.c: _Z[i-(37-12)] ^= temp;
PFLASH.c: ^~
PFLASH.c: PFLASH.c:143:10: warning: '_Z' is static but used in inline function 'polyMul' which is not static
PFLASH.c: temp = _Z[i];
PFLASH.c: ^~
PFLASH.c: PFLASH.c:136:15: warning: '_Z' is static but used in inline function 'polyMul' which is not static
PFLASH.c: if( logY ) _Z[i+j] ^= alogtab[logX+logY];
PFLASH.c: ^~
PFLASH.c: PFLASH.c:128:11: warning: '_Z' is static but used in inline function 'polyMul' which is not static
PFLASH.c: memset(_Z,0,73);
PFLASH.c: ^~
PFLASH.c: PFLASH.c:122:16: warning: '_Z' is static but used in inline function 'polySqu' which is not static
PFLASH.c: ...
SignScheme.c: SignScheme.c: In function 'signatureofshorthash':
SignScheme.c: SignScheme.c:211:19: warning: passing argument 1 of 'SignScheme_sign' discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
SignScheme.c: SignScheme_sign( sk , h , mlen , sm );
SignScheme.c: ^~
SignScheme.c: SignScheme.c:95:5: note: expected 'byte * {aka unsigned char *}' but argument is of type 'const unsigned char *'
SignScheme.c: int SignScheme_sign( byte * pri , byte * Y , int Ylen , byte * outX )
SignScheme.c: ^~~~~~~~~~~~~~~
SignScheme.c: SignScheme.c: In function 'verification':
SignScheme.c: SignScheme.c:227:19: warning: passing argument 1 of 'SignScheme_GMap' discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
SignScheme.c: SignScheme_GMap( pk , sm , h );
SignScheme.c: ^~
SignScheme.c: SignScheme.c:152:5: note: expected 'byte * {aka unsigned char *}' but argument is of type 'const unsigned char *'
SignScheme.c: int SignScheme_GMap( byte * pub , byte * X , byte * outY )
SignScheme.c: ^~~~~~~~~~~~~~~
SignScheme.c: SignScheme.c:227:24: warning: passing argument 2 of 'SignScheme_GMap' discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
SignScheme.c: SignScheme_GMap( pk , sm , h );
SignScheme.c: ^~
SignScheme.c: SignScheme.c:152:5: note: expected 'byte * {aka unsigned char *}' but argument is of type 'const unsigned char *'
SignScheme.c: int SignScheme_GMap( byte * pub , byte * X , byte * outY )
SignScheme.c: ^~~~~~~~~~~~~~~
try.c: crypto_sign_pflash1.a(PFLASH.o): In function `PFLASH_QMap':
try.c: PFLASH.c:(.text+0x...): undefined reference to `polyPow88'
try.c: PFLASH.c:(.text+0x...): undefined reference to `polyMul'
try.c: crypto_sign_pflash1.a(PFLASH.o): In function `PFLASH_ivsQMap':
try.c: PFLASH.c:(.text+0x...): undefined reference to `polySqu'
try.c: PFLASH.c:(.text+0x...): undefined reference to `polySqu'
try.c: PFLASH.c:(.text+0x...): undefined reference to `polyMul'
try.c: PFLASH.c:(.text+0x...): undefined reference to `polySqu'
try.c: PFLASH.c:(.text+0x...): undefined reference to `polySqu'
try.c: PFLASH.c:(.text+0x...): undefined reference to `polyMul'
try.c: PFLASH.c:(.text+0x...): undefined reference to `polySqu'
try.c: PFLASH.c:(.text+0x...): undefined reference to `polyMul'
try.c: PFLASH.c:(.text+0x...): undefined reference to `polySqu'
try.c: PFLASH.c:(.text+0x...): undefined reference to `polySqu'
try.c: PFLASH.c:(.text+0x...): undefined reference to `polyMul'
try.c: PFLASH.c:(.text+0x...): undefined reference to `polySqu'
try.c: PFLASH.c:(.text+0x...): undefined reference to `polyPow24'
try.c: PFLASH.c:(.text+0x...): undefined reference to `polyMul'
try.c: PFLASH.c:(.text+0x...): undefined reference to `polyPow8'
try.c: PFLASH.c:(.text+0x...): undefined reference to `polyMul'
try.c: PFLASH.c:(.text+0x...): undefined reference to `polyPow8'
try.c: PFLASH.c:(.text+0x...): undefined reference to `polyMul'
try.c: PFLASH.c:(.text+0x...): undefined reference to `polyPow8'
try.c: PFLASH.c:(.text+0x...): undefined reference to `polyMul'
try.c: PFLASH.c:(.text+0x...): undefined reference to `polyMul'
try.c: ...

Number of similar (compiler,implementation) pairs: 2, namely:
CompilerImplementations
gcc ref
gcc -funroll-loops ref

Compiler output

Implementation: crypto_sign/pflash1/ref
Compiler: gcc -O2 -fomit-frame-pointer
PFLASH.c: PFLASH.c:152:16: warning: '_Z' is static but used in inline function 'polyMul' which is not static
PFLASH.c: memcpy( outZ ,_Z,37);
PFLASH.c: ^~
PFLASH.c: PFLASH.c:149:4: warning: '_Z' is static but used in inline function 'polyMul' which is not static
PFLASH.c: _Z[i-(37- 0)] ^= temp;
PFLASH.c: ^~
PFLASH.c: PFLASH.c:148:4: warning: '_Z' is static but used in inline function 'polyMul' which is not static
PFLASH.c: _Z[i-(37- 2)] ^= temp;
PFLASH.c: ^~
PFLASH.c: PFLASH.c:147:4: warning: '_Z' is static but used in inline function 'polyMul' which is not static
PFLASH.c: _Z[i-(37-10)] ^= temp;
PFLASH.c: ^~
PFLASH.c: PFLASH.c:146:4: warning: '_Z' is static but used in inline function 'polyMul' which is not static
PFLASH.c: _Z[i-(37-12)] ^= temp;
PFLASH.c: ^~
PFLASH.c: PFLASH.c:143:10: warning: '_Z' is static but used in inline function 'polyMul' which is not static
PFLASH.c: temp = _Z[i];
PFLASH.c: ^~
PFLASH.c: PFLASH.c:136:15: warning: '_Z' is static but used in inline function 'polyMul' which is not static
PFLASH.c: if( logY ) _Z[i+j] ^= alogtab[logX+logY];
PFLASH.c: ^~
PFLASH.c: PFLASH.c:128:11: warning: '_Z' is static but used in inline function 'polyMul' which is not static
PFLASH.c: memset(_Z,0,73);
PFLASH.c: ^~
PFLASH.c: PFLASH.c:122:16: warning: '_Z' is static but used in inline function 'polySqu' which is not static
PFLASH.c: ...
SignScheme.c: SignScheme.c: In function 'signatureofshorthash':
SignScheme.c: SignScheme.c:211:19: warning: passing argument 1 of 'SignScheme_sign' discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
SignScheme.c: SignScheme_sign( sk , h , mlen , sm );
SignScheme.c: ^~
SignScheme.c: SignScheme.c:95:5: note: expected 'byte * {aka unsigned char *}' but argument is of type 'const unsigned char *'
SignScheme.c: int SignScheme_sign( byte * pri , byte * Y , int Ylen , byte * outX )
SignScheme.c: ^~~~~~~~~~~~~~~
SignScheme.c: SignScheme.c: In function 'verification':
SignScheme.c: SignScheme.c:227:19: warning: passing argument 1 of 'SignScheme_GMap' discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
SignScheme.c: SignScheme_GMap( pk , sm , h );
SignScheme.c: ^~
SignScheme.c: SignScheme.c:152:5: note: expected 'byte * {aka unsigned char *}' but argument is of type 'const unsigned char *'
SignScheme.c: int SignScheme_GMap( byte * pub , byte * X , byte * outY )
SignScheme.c: ^~~~~~~~~~~~~~~
SignScheme.c: SignScheme.c:227:24: warning: passing argument 2 of 'SignScheme_GMap' discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
SignScheme.c: SignScheme_GMap( pk , sm , h );
SignScheme.c: ^~
SignScheme.c: SignScheme.c:152:5: note: expected 'byte * {aka unsigned char *}' but argument is of type 'const unsigned char *'
SignScheme.c: int SignScheme_GMap( byte * pub , byte * X , byte * outY )
SignScheme.c: ^~~~~~~~~~~~~~~
try.c: /scratch_lustre_na/bdolbeaur/supercop-20170228/supercop-data/robin281/amd64/lib/libsupercop.a(crypto_hash_sha256_sphlib-sha2.o): In function `sph_sha224':
try.c: sha2.c:(.text+0x...): undefined reference to `__intel_ssse3_rep_memcpy'
try.c: sha2.c:(.text+0x...): undefined reference to `__intel_ssse3_rep_memcpy'
try.c: sha2.c:(.text+0x...): undefined reference to `__intel_ssse3_rep_memcpy'
try.c: /scratch_lustre_na/bdolbeaur/supercop-20170228/supercop-data/robin281/amd64/lib/libsupercop.a(crypto_hash_sha256_sphlib-sha2.o): In function `sph_sha224_close':
try.c: sha2.c:(.text+0x...): undefined reference to `_intel_fast_memset'
try.c: sha2.c:(.text+0x...): undefined reference to `_intel_fast_memset'
try.c: /scratch_lustre_na/bdolbeaur/supercop-20170228/supercop-data/robin281/amd64/lib/libsupercop.a(crypto_hash_sha256_sphlib-sha2.o): In function `sph_sha224_addbits_and_close':
try.c: sha2.c:(.text+0x...): undefined reference to `_intel_fast_memset'
try.c: sha2.c:(.text+0x...): undefined reference to `_intel_fast_memset'
try.c: /scratch_lustre_na/bdolbeaur/supercop-20170228/supercop-data/robin281/amd64/lib/libsupercop.a(crypto_hash_sha256_sphlib-sha2.o): In function `sph_sha256_close':
try.c: sha2.c:(.text+0x...): undefined reference to `_intel_fast_memset'
try.c: /scratch_lustre_na/bdolbeaur/supercop-20170228/supercop-data/robin281/amd64/lib/libsupercop.a(crypto_hash_sha256_sphlib-sha2.o):sha2.c:(.text+0x...): more undefined references to `_intel_fast_memset' follow
try.c: collect2: error: ld returned 1 exit status

Number of similar (compiler,implementation) pairs: 103, namely:
CompilerImplementations
gcc -O2 -fomit-frame-pointer ref
gcc -O3 -fomit-frame-pointer ref
gcc -O -fomit-frame-pointer ref
gcc -Os -fomit-frame-pointer ref
gcc -fno-schedule-insns -O2 -fomit-frame-pointer ref
gcc -fno-schedule-insns -O3 -fomit-frame-pointer ref
gcc -fno-schedule-insns -O -fomit-frame-pointer ref
gcc -fno-schedule-insns -Os -fomit-frame-pointer ref
gcc -funroll-loops -O2 -fomit-frame-pointer ref
gcc -funroll-loops -O3 -fomit-frame-pointer ref
gcc -funroll-loops -O -fomit-frame-pointer ref
gcc -funroll-loops -Os -fomit-frame-pointer ref
gcc -funroll-loops -fno-schedule-insns -O2 -fomit-frame-pointer ref
gcc -funroll-loops -fno-schedule-insns -O3 -fomit-frame-pointer ref
gcc -funroll-loops -fno-schedule-insns -O -fomit-frame-pointer ref
gcc -funroll-loops -fno-schedule-insns -Os -fomit-frame-pointer ref
gcc -funroll-loops -m64 -O2 -fomit-frame-pointer ref
gcc -funroll-loops -m64 -O3 -fomit-frame-pointer ref
gcc -funroll-loops -m64 -O -fomit-frame-pointer ref
gcc -funroll-loops -m64 -Os -fomit-frame-pointer ref
gcc -funroll-loops -m64 -march=barcelona -O2 -fomit-frame-pointer ref
gcc -funroll-loops -m64 -march=barcelona -O3 -fomit-frame-pointer ref
gcc -funroll-loops -m64 -march=barcelona -O -fomit-frame-pointer ref
gcc -funroll-loops -m64 -march=barcelona -Os -fomit-frame-pointer ref
gcc -funroll-loops -m64 -march=k8 -O2 -fomit-frame-pointer ref
gcc -funroll-loops -m64 -march=k8 -O3 -fomit-frame-pointer ref
gcc -funroll-loops -m64 -march=k8 -O -fomit-frame-pointer ref
gcc -funroll-loops -m64 -march=k8 -Os -fomit-frame-pointer ref
gcc -funroll-loops -m64 -march=nocona -O2 -fomit-frame-pointer ref
gcc -funroll-loops -m64 -march=nocona -O3 -fomit-frame-pointer ref
gcc -funroll-loops -m64 -march=nocona -O -fomit-frame-pointer ref
gcc -funroll-loops -m64 -march=nocona -Os -fomit-frame-pointer ref
gcc -funroll-loops -march=barcelona -O2 -fomit-frame-pointer ref
gcc -funroll-loops -march=barcelona -O3 -fomit-frame-pointer ref
gcc -funroll-loops -march=barcelona -O -fomit-frame-pointer ref
gcc -funroll-loops -march=barcelona -Os -fomit-frame-pointer ref
gcc -funroll-loops -march=k8 -O2 -fomit-frame-pointer ref
gcc -funroll-loops -march=k8 -O3 -fomit-frame-pointer ref
gcc -funroll-loops -march=k8 -O -fomit-frame-pointer ref
gcc -funroll-loops -march=k8 -Os -fomit-frame-pointer ref
gcc -funroll-loops -march=nocona -O2 -fomit-frame-pointer ref
gcc -funroll-loops -march=nocona -O3 -fomit-frame-pointer ref
gcc -funroll-loops -march=nocona -O -fomit-frame-pointer ref
gcc -funroll-loops -march=nocona -Os -fomit-frame-pointer ref
gcc -m64 -O2 -fomit-frame-pointer ref
gcc -m64 -O3 -fomit-frame-pointer ref
gcc -m64 -O -fomit-frame-pointer ref
gcc -m64 -Os -fomit-frame-pointer ref
gcc -m64 -march=core-avx-i -O2 -fomit-frame-pointer ref
gcc -m64 -march=core-avx-i -O3 -fomit-frame-pointer ref
gcc -m64 -march=core-avx-i -O -fomit-frame-pointer ref
gcc -m64 -march=core-avx-i -Os -fomit-frame-pointer ref
gcc -m64 -march=core-avx2 -O2 -fomit-frame-pointer ref
gcc -m64 -march=core-avx2 -O -fomit-frame-pointer ref
gcc -m64 -march=core-avx2 -Os -fomit-frame-pointer ref
gcc -m64 -march=core2 -O2 -fomit-frame-pointer ref
gcc -m64 -march=core2 -O3 -fomit-frame-pointer ref
gcc -m64 -march=core2 -O -fomit-frame-pointer ref
gcc -m64 -march=core2 -Os -fomit-frame-pointer ref
gcc -m64 -march=core2 -msse4.1 -O2 -fomit-frame-pointer ref
gcc -m64 -march=core2 -msse4.1 -O3 -fomit-frame-pointer ref
gcc -m64 -march=core2 -msse4.1 -O -fomit-frame-pointer ref
gcc -m64 -march=core2 -msse4.1 -Os -fomit-frame-pointer ref
gcc -m64 -march=core2 -msse4 -O2 -fomit-frame-pointer ref
gcc -m64 -march=core2 -msse4 -O3 -fomit-frame-pointer ref
gcc -m64 -march=core2 -msse4 -O -fomit-frame-pointer ref
gcc -m64 -march=core2 -msse4 -Os -fomit-frame-pointer ref
gcc -m64 -march=corei7-avx -O2 -fomit-frame-pointer ref
gcc -m64 -march=corei7-avx -O3 -fomit-frame-pointer ref
gcc -m64 -march=corei7-avx -O -fomit-frame-pointer ref
gcc -m64 -march=corei7-avx -Os -fomit-frame-pointer ref
gcc -m64 -march=corei7 -O2 -fomit-frame-pointer ref
gcc -m64 -march=corei7 -O3 -fomit-frame-pointer ref
gcc -m64 -march=corei7 -O -fomit-frame-pointer ref
gcc -m64 -march=corei7 -Os -fomit-frame-pointer ref
gcc -m64 -march=k8 -O2 -fomit-frame-pointer ref
gcc -m64 -march=k8 -O3 -fomit-frame-pointer ref
gcc -m64 -march=k8 -O -fomit-frame-pointer ref
gcc -m64 -march=k8 -Os -fomit-frame-pointer ref
gcc -m64 -march=native -mtune=native -O2 -fomit-frame-pointer ref
gcc -m64 -march=native -mtune=native -O3 -fomit-frame-pointer ref
gcc -m64 -march=native -mtune=native -O -fomit-frame-pointer ref
gcc -m64 -march=native -mtune=native -Os -fomit-frame-pointer ref
gcc -m64 -march=nocona -O2 -fomit-frame-pointer ref
gcc -m64 -march=nocona -O3 -fomit-frame-pointer ref
gcc -m64 -march=nocona -O -fomit-frame-pointer ref
gcc -m64 -march=nocona -Os -fomit-frame-pointer ref
gcc -march=barcelona -O2 -fomit-frame-pointer ref
gcc -march=barcelona -O3 -fomit-frame-pointer ref
gcc -march=barcelona -O -fomit-frame-pointer ref
gcc -march=barcelona -Os -fomit-frame-pointer ref
gcc -march=k8 -O2 -fomit-frame-pointer ref
gcc -march=k8 -O3 -fomit-frame-pointer ref
gcc -march=k8 -O -fomit-frame-pointer ref
gcc -march=k8 -Os -fomit-frame-pointer ref
gcc -march=native -mtune=native -O2 -fomit-frame-pointer -fwrapv ref
gcc -march=native -mtune=native -O3 -fomit-frame-pointer -fwrapv ref
gcc -march=native -mtune=native -O -fomit-frame-pointer -fwrapv ref
gcc -march=native -mtune=native -Os -fomit-frame-pointer -fwrapv ref
gcc -march=nocona -O2 -fomit-frame-pointer ref
gcc -march=nocona -O3 -fomit-frame-pointer ref
gcc -march=nocona -O -fomit-frame-pointer ref
gcc -march=nocona -Os -fomit-frame-pointer ref

Compiler output

Implementation: crypto_sign/pflash1/ref
Compiler: gcc -m64 -march=barcelona -O2 -fomit-frame-pointer
PFLASH.c: PFLASH.c:152:16: warning: '_Z' is static but used in inline function 'polyMul' which is not static
PFLASH.c: memcpy( outZ ,_Z,37);
PFLASH.c: ^~
PFLASH.c: PFLASH.c:149:4: warning: '_Z' is static but used in inline function 'polyMul' which is not static
PFLASH.c: _Z[i-(37- 0)] ^= temp;
PFLASH.c: ^~
PFLASH.c: PFLASH.c:148:4: warning: '_Z' is static but used in inline function 'polyMul' which is not static
PFLASH.c: _Z[i-(37- 2)] ^= temp;
PFLASH.c: ^~
PFLASH.c: PFLASH.c:147:4: warning: '_Z' is static but used in inline function 'polyMul' which is not static
PFLASH.c: _Z[i-(37-10)] ^= temp;
PFLASH.c: ^~
PFLASH.c: PFLASH.c:146:4: warning: '_Z' is static but used in inline function 'polyMul' which is not static
PFLASH.c: _Z[i-(37-12)] ^= temp;
PFLASH.c: ^~
PFLASH.c: PFLASH.c:143:10: warning: '_Z' is static but used in inline function 'polyMul' which is not static
PFLASH.c: temp = _Z[i];
PFLASH.c: ^~
PFLASH.c: PFLASH.c:136:15: warning: '_Z' is static but used in inline function 'polyMul' which is not static
PFLASH.c: if( logY ) _Z[i+j] ^= alogtab[logX+logY];
PFLASH.c: ^~
PFLASH.c: PFLASH.c:128:11: warning: '_Z' is static but used in inline function 'polyMul' which is not static
PFLASH.c: memset(_Z,0,73);
PFLASH.c: ^~
PFLASH.c: PFLASH.c:122:16: warning: '_Z' is static but used in inline function 'polySqu' which is not static
PFLASH.c: ...
SignScheme.c: SignScheme.c: In function 'signatureofshorthash':
SignScheme.c: SignScheme.c:211:19: warning: passing argument 1 of 'SignScheme_sign' discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
SignScheme.c: SignScheme_sign( sk , h , mlen , sm );
SignScheme.c: ^~
SignScheme.c: SignScheme.c:95:5: note: expected 'byte * {aka unsigned char *}' but argument is of type 'const unsigned char *'
SignScheme.c: int SignScheme_sign( byte * pri , byte * Y , int Ylen , byte * outX )
SignScheme.c: ^~~~~~~~~~~~~~~
SignScheme.c: SignScheme.c: In function 'verification':
SignScheme.c: SignScheme.c:227:19: warning: passing argument 1 of 'SignScheme_GMap' discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
SignScheme.c: SignScheme_GMap( pk , sm , h );
SignScheme.c: ^~
SignScheme.c: SignScheme.c:152:5: note: expected 'byte * {aka unsigned char *}' but argument is of type 'const unsigned char *'
SignScheme.c: int SignScheme_GMap( byte * pub , byte * X , byte * outY )
SignScheme.c: ^~~~~~~~~~~~~~~
SignScheme.c: SignScheme.c:227:24: warning: passing argument 2 of 'SignScheme_GMap' discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
SignScheme.c: SignScheme_GMap( pk , sm , h );
SignScheme.c: ^~
SignScheme.c: SignScheme.c:152:5: note: expected 'byte * {aka unsigned char *}' but argument is of type 'const unsigned char *'
SignScheme.c: int SignScheme_GMap( byte * pub , byte * X , byte * outY )
SignScheme.c: ^~~~~~~~~~~~~~~
try.c: /scratch_lustre_na/bdolbeaur/supercop-20170228/supercop-data/robin281/amd64/lib/libsupercop.a(crypto_hash_sha256_sphlib-sha2.o): In function `sph_sha224':
try.c: sha2.c:(.text+0x...): undefined reference to `__intel_ssse3_rep_memcpy'
try.c: sha2.c:(.text+0x...): undefined reference to `__intel_ssse3_rep_memcpy'
try.c: sha2.c:(.text+0x...): undefined reference to `__intel_ssse3_rep_memcpy'
try.c: /scratch_lustre_na/bdolbeaur/supercop-20170228/supercop-data/robin281/amd64/lib/libsupercop.a(crypto_hash_sha256_sphlib-sha2.o): In function `sph_sha224_close':
try.c: sha2.c:(.text+0x...): undefined reference to `_intel_fast_memset'
try.c: sha2.c:(.text+0x...): undefined reference to `_intel_fast_memset'
try.c: /scratch_lustre_na/bdolbeaur/supercop-20170228/supercop-data/robin281/amd64/lib/libsupercop.a(crypto_hash_sha256_sphlib-sha2.o): In function `sph_sha224_addbits_and_close':
try.c: sha2.c:(.text+0x...): undefined reference to `_intel_fast_memset'
try.c: sha2.c:(.text+0x...): undefined reference to `_intel_fast_memset'
try.c: /scratch_lustre_na/bdolbeaur/supercop-20170228/supercop-data/robin281/amd64/lib/libsupercop.a(crypto_hash_sha256_sphlib-sha2.o): In function `sph_sha256_close':
try.c: sha2.c:(.text+0x...): undefined reference to `_intel_fast_memset'
try.c: /scratch_lustre_na/bdolbeaur/supercop-20170228/supercop-data/robin281/amd64/lib/libsupercop.a(crypto_hash_sha256_sphlib-sha2.o):sha2.c:(.text+0x...): more undefined references to `_intel_fast_memset' follow
try.c: collect2: error: ld returned 1 exit status
PFLASH.c: PFLASH.c:152:16: warning: '_Z' is static but used in inline function 'polyMul' which is not static
PFLASH.c: memcpy( outZ ,_Z,37);
PFLASH.c: ^~
PFLASH.c: PFLASH.c:149:4: warning: '_Z' is static but used in inline function 'polyMul' which is not static
PFLASH.c: _Z[i-(37- 0)] ^= temp;
PFLASH.c: ^~
PFLASH.c: PFLASH.c:148:4: warning: '_Z' is static but used in inline function 'polyMul' which is not static
PFLASH.c: _Z[i-(37- 2)] ^= temp;
PFLASH.c: ^~
PFLASH.c: PFLASH.c:147:4: warning: '_Z' is static but used in inline function 'polyMul' which is not static
PFLASH.c: _Z[i-(37-10)] ^= temp;
PFLASH.c: ^~
PFLASH.c: PFLASH.c:146:4: warning: '_Z' is static but used in inline function 'polyMul' which is not static
PFLASH.c: _Z[i-(37-12)] ^= temp;
PFLASH.c: ^~
PFLASH.c: PFLASH.c:143:10: warning: '_Z' is static but used in inline function 'polyMul' which is not static
PFLASH.c: temp = _Z[i];
PFLASH.c: ^~
PFLASH.c: PFLASH.c:136:15: warning: '_Z' is static but used in inline function 'polyMul' which is not static
PFLASH.c: if( logY ) _Z[i+j] ^= alogtab[logX+logY];
PFLASH.c: ^~
PFLASH.c: PFLASH.c:128:11: warning: '_Z' is static but used in inline function 'polyMul' which is not static
PFLASH.c: memset(_Z,0,73);
PFLASH.c: ^~
PFLASH.c: PFLASH.c:122:16: warning: '_Z' is static but used in inline function 'polySqu' which is not static
PFLASH.c: ...
SignScheme.c: SignScheme.c: In function 'signatureofshorthash':
SignScheme.c: SignScheme.c:211:19: warning: passing argument 1 of 'SignScheme_sign' discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
SignScheme.c: SignScheme_sign( sk , h , mlen , sm );
SignScheme.c: ^~
SignScheme.c: SignScheme.c:95:5: note: expected 'byte * {aka unsigned char *}' but argument is of type 'const unsigned char *'
SignScheme.c: int SignScheme_sign( byte * pri , byte * Y , int Ylen , byte * outX )
SignScheme.c: ^~~~~~~~~~~~~~~
SignScheme.c: SignScheme.c: In function 'verification':
SignScheme.c: SignScheme.c:227:19: warning: passing argument 1 of 'SignScheme_GMap' discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
SignScheme.c: SignScheme_GMap( pk , sm , h );
SignScheme.c: ^~
SignScheme.c: SignScheme.c:152:5: note: expected 'byte * {aka unsigned char *}' but argument is of type 'const unsigned char *'
SignScheme.c: int SignScheme_GMap( byte * pub , byte * X , byte * outY )
SignScheme.c: ^~~~~~~~~~~~~~~
SignScheme.c: SignScheme.c:227:24: warning: passing argument 2 of 'SignScheme_GMap' discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
SignScheme.c: SignScheme_GMap( pk , sm , h );
SignScheme.c: ^~
SignScheme.c: SignScheme.c:152:5: note: expected 'byte * {aka unsigned char *}' but argument is of type 'const unsigned char *'
SignScheme.c: int SignScheme_GMap( byte * pub , byte * X , byte * outY )
SignScheme.c: ^~~~~~~~~~~~~~~
try.c: /scratch_lustre_na/bdolbeaur/supercop-20170228/supercop-data/robin281/amd64/lib/libsupercop.a(crypto_hash_sha256_sphlib-sha2.o): In function `sph_sha224':
try.c: sha2.c:(.text+0x...): undefined reference to `__intel_ssse3_rep_memcpy'
try.c: sha2.c:(.text+0x...): undefined reference to `__intel_ssse3_rep_memcpy'
try.c: sha2.c:(.text+0x...): undefined reference to `__intel_ssse3_rep_memcpy'
try.c: /scratch_lustre_na/bdolbeaur/supercop-20170228/supercop-data/robin281/amd64/lib/libsupercop.a(crypto_hash_sha256_sphlib-sha2.o): In function `sph_sha224_close':
try.c: sha2.c:(.text+0x...): undefined reference to `_intel_fast_memset'
try.c: sha2.c:(.text+0x...): undefined reference to `_intel_fast_memset'
try.c: /scratch_lustre_na/bdolbeaur/supercop-20170228/supercop-data/robin281/amd64/lib/libsupercop.a(crypto_hash_sha256_sphlib-sha2.o): In function `sph_sha224_addbits_and_close':
try.c: sha2.c:(.text+0x...): undefined reference to `_intel_fast_memset'
try.c: sha2.c:(.text+0x...): undefined reference to `_intel_fast_memset'
try.c: /scratch_lustre_na/bdolbeaur/supercop-20170228/supercop-data/robin281/amd64/lib/libsupercop.a(crypto_hash_sha256_sphlib-sha2.o): In function `sph_sha256_close':
try.c: sha2.c:(.text+0x...): undefined reference to `_intel_fast_memset'
try.c: /scratch_lustre_na/bdolbeaur/supercop-20170228/supercop-data/robin281/amd64/lib/libsupercop.a(crypto_hash_sha256_sphlib-sha2.o):sha2.c:(.text+0x...): more undefined references to `_intel_fast_memset' follow
try.c: collect2: error: ld returned 1 exit status

Number of similar (compiler,implementation) pairs: 4, namely:
CompilerImplementations
gcc -m64 -march=barcelona -O2 -fomit-frame-pointer ref
gcc -m64 -march=barcelona -O3 -fomit-frame-pointer ref
gcc -m64 -march=barcelona -O -fomit-frame-pointer ref
gcc -m64 -march=barcelona -Os -fomit-frame-pointer ref

Compiler output

Implementation: crypto_sign/pflash1/ref
Compiler: icc
SignScheme.c: SignScheme.c(211): warning #2330: argument of type "const unsigned char *" is incompatible with parameter of type "byte={unsigned char} *" (dropping qualifiers)
SignScheme.c: SignScheme_sign( sk , h , mlen , sm );
SignScheme.c: ^
SignScheme.c:
SignScheme.c: SignScheme.c(227): warning #2330: argument of type "const unsigned char *" is incompatible with parameter of type "byte={unsigned char} *" (dropping qualifiers)
SignScheme.c: SignScheme_GMap( pk , sm , h );
SignScheme.c: ^
SignScheme.c:
SignScheme.c: SignScheme.c(227): warning #2330: argument of type "const unsigned char *" is incompatible with parameter of type "byte={unsigned char} *" (dropping qualifiers)
SignScheme.c: SignScheme_GMap( pk , sm , h );
SignScheme.c: ^
SignScheme.c:

Number of similar (compiler,implementation) pairs: 4, namely:
CompilerImplementations
icc ref
icc -no-vec ref
icc -xAVX -O2 -fomit-frame-pointer ref
icc -xAVX -O3 -fomit-frame-pointer ref

Compiler output

Implementation: crypto_sign/pflash1/ref
Compiler: icc -O1 -static
SignScheme.c: SignScheme.c(211): warning #2330: argument of type "const unsigned char *" is incompatible with parameter of type "byte={unsigned char} *" (dropping qualifiers)
SignScheme.c: SignScheme_sign( sk , h , mlen , sm );
SignScheme.c: ^
SignScheme.c:
SignScheme.c: SignScheme.c(227): warning #2330: argument of type "const unsigned char *" is incompatible with parameter of type "byte={unsigned char} *" (dropping qualifiers)
SignScheme.c: SignScheme_GMap( pk , sm , h );
SignScheme.c: ^
SignScheme.c:
SignScheme.c: SignScheme.c(227): warning #2330: argument of type "const unsigned char *" is incompatible with parameter of type "byte={unsigned char} *" (dropping qualifiers)
SignScheme.c: SignScheme_GMap( pk , sm , h );
SignScheme.c: ^
SignScheme.c:
try.c: ld: cannot find -lcrypto

Number of similar (compiler,implementation) pairs: 16, namely:
CompilerImplementations
icc -O1 -static ref
icc -O1 -static -no-vec ref
icc -O2 -static ref
icc -O2 -static -no-vec ref
icc -O3 -static ref
icc -O3 -static -no-vec ref
icc -Os -static ref
icc -Os -static -no-vec ref
icc -m64 -O1 -static ref
icc -m64 -O1 -static -no-vec ref
icc -m64 -O2 -static ref
icc -m64 -O2 -static -no-vec ref
icc -m64 -O3 -static ref
icc -m64 -O3 -static -no-vec ref
icc -m64 -Os -static ref
icc -m64 -Os -static -no-vec ref

Compiler output

Implementation: crypto_sign/pflash1/ref
Compiler: icc -O1 -xB -static
BLAS.c: icc: command line warning #10131: extension 'B' not supported ignored in option '-x'
GF.c: icc: command line warning #10131: extension 'B' not supported ignored in option '-x'
GF16.c: icc: command line warning #10131: extension 'B' not supported ignored in option '-x'
GF256.c: icc: command line warning #10131: extension 'B' not supported ignored in option '-x'
GFword.c: icc: command line warning #10131: extension 'B' not supported ignored in option '-x'
PFLASH.c: icc: command line warning #10131: extension 'B' not supported ignored in option '-x'
SignScheme.c: icc: command line warning #10131: extension 'B' not supported ignored in option '-x'
SignScheme.c: SignScheme.c(211): warning #2330: argument of type "const unsigned char *" is incompatible with parameter of type "byte={unsigned char} *" (dropping qualifiers)
SignScheme.c: SignScheme_sign( sk , h , mlen , sm );
SignScheme.c: ^
SignScheme.c:
SignScheme.c: SignScheme.c(227): warning #2330: argument of type "const unsigned char *" is incompatible with parameter of type "byte={unsigned char} *" (dropping qualifiers)
SignScheme.c: SignScheme_GMap( pk , sm , h );
SignScheme.c: ^
SignScheme.c:
SignScheme.c: SignScheme.c(227): warning #2330: argument of type "const unsigned char *" is incompatible with parameter of type "byte={unsigned char} *" (dropping qualifiers)
SignScheme.c: SignScheme_GMap( pk , sm , h );
SignScheme.c: ^
SignScheme.c:
usehash.c: icc: command line warning #10131: extension 'B' not supported ignored in option '-x'
try.c: icc: command line warning #10131: extension 'B' not supported ignored in option '-x'
try.c: ld: cannot find -lcrypto

Number of similar (compiler,implementation) pairs: 8, namely:
CompilerImplementations
icc -O1 -xB -static ref
icc -O1 -xB -static -no-vec ref
icc -O2 -xB -static ref
icc -O2 -xB -static -no-vec ref
icc -O3 -xB -static ref
icc -O3 -xB -static -no-vec ref
icc -Os -xB -static ref
icc -Os -xB -static -no-vec ref

Compiler output

Implementation: crypto_sign/pflash1/ref
Compiler: icc -O1 -xK -static
BLAS.c: icc: command line warning #10131: extension 'K' not supported ignored in option '-x'
GF.c: icc: command line warning #10131: extension 'K' not supported ignored in option '-x'
GF16.c: icc: command line warning #10131: extension 'K' not supported ignored in option '-x'
GF256.c: icc: command line warning #10131: extension 'K' not supported ignored in option '-x'
GFword.c: icc: command line warning #10131: extension 'K' not supported ignored in option '-x'
PFLASH.c: icc: command line warning #10131: extension 'K' not supported ignored in option '-x'
SignScheme.c: icc: command line warning #10131: extension 'K' not supported ignored in option '-x'
SignScheme.c: SignScheme.c(211): warning #2330: argument of type "const unsigned char *" is incompatible with parameter of type "byte={unsigned char} *" (dropping qualifiers)
SignScheme.c: SignScheme_sign( sk , h , mlen , sm );
SignScheme.c: ^
SignScheme.c:
SignScheme.c: SignScheme.c(227): warning #2330: argument of type "const unsigned char *" is incompatible with parameter of type "byte={unsigned char} *" (dropping qualifiers)
SignScheme.c: SignScheme_GMap( pk , sm , h );
SignScheme.c: ^
SignScheme.c:
SignScheme.c: SignScheme.c(227): warning #2330: argument of type "const unsigned char *" is incompatible with parameter of type "byte={unsigned char} *" (dropping qualifiers)
SignScheme.c: SignScheme_GMap( pk , sm , h );
SignScheme.c: ^
SignScheme.c:
usehash.c: icc: command line warning #10131: extension 'K' not supported ignored in option '-x'
try.c: icc: command line warning #10131: extension 'K' not supported ignored in option '-x'
try.c: ld: cannot find -lcrypto

Number of similar (compiler,implementation) pairs: 8, namely:
CompilerImplementations
icc -O1 -xK -static ref
icc -O1 -xK -static -no-vec ref
icc -O2 -xK -static ref
icc -O2 -xK -static -no-vec ref
icc -O3 -xK -static ref
icc -O3 -xK -static -no-vec ref
icc -Os -xK -static ref
icc -Os -xK -static -no-vec ref

Compiler output

Implementation: crypto_sign/pflash1/ref
Compiler: icc -O1 -xN -static
BLAS.c: icc: command line warning #10131: extension 'N' not supported ignored in option '-x'
GF.c: icc: command line warning #10131: extension 'N' not supported ignored in option '-x'
GF16.c: icc: command line warning #10131: extension 'N' not supported ignored in option '-x'
GF256.c: icc: command line warning #10131: extension 'N' not supported ignored in option '-x'
GFword.c: icc: command line warning #10131: extension 'N' not supported ignored in option '-x'
PFLASH.c: icc: command line warning #10131: extension 'N' not supported ignored in option '-x'
SignScheme.c: icc: command line warning #10131: extension 'N' not supported ignored in option '-x'
SignScheme.c: SignScheme.c(211): warning #2330: argument of type "const unsigned char *" is incompatible with parameter of type "byte={unsigned char} *" (dropping qualifiers)
SignScheme.c: SignScheme_sign( sk , h , mlen , sm );
SignScheme.c: ^
SignScheme.c:
SignScheme.c: SignScheme.c(227): warning #2330: argument of type "const unsigned char *" is incompatible with parameter of type "byte={unsigned char} *" (dropping qualifiers)
SignScheme.c: SignScheme_GMap( pk , sm , h );
SignScheme.c: ^
SignScheme.c:
SignScheme.c: SignScheme.c(227): warning #2330: argument of type "const unsigned char *" is incompatible with parameter of type "byte={unsigned char} *" (dropping qualifiers)
SignScheme.c: SignScheme_GMap( pk , sm , h );
SignScheme.c: ^
SignScheme.c:
usehash.c: icc: command line warning #10131: extension 'N' not supported ignored in option '-x'
try.c: icc: command line warning #10131: extension 'N' not supported ignored in option '-x'
try.c: ld: cannot find -lcrypto

Number of similar (compiler,implementation) pairs: 8, namely:
CompilerImplementations
icc -O1 -xN -static ref
icc -O1 -xN -static -no-vec ref
icc -O2 -xN -static ref
icc -O2 -xN -static -no-vec ref
icc -O3 -xN -static ref
icc -O3 -xN -static -no-vec ref
icc -Os -xN -static ref
icc -Os -xN -static -no-vec ref

Compiler output

Implementation: crypto_sign/pflash1/ref
Compiler: icc -O1 -xP -static
BLAS.c: icc: command line remark #10279: option '-xP' is deprecated and will be removed in a future release. See '-help deprecated'
GF.c: icc: command line remark #10279: option '-xP' is deprecated and will be removed in a future release. See '-help deprecated'
GF16.c: icc: command line remark #10279: option '-xP' is deprecated and will be removed in a future release. See '-help deprecated'
GF256.c: icc: command line remark #10279: option '-xP' is deprecated and will be removed in a future release. See '-help deprecated'
GFword.c: icc: command line remark #10279: option '-xP' is deprecated and will be removed in a future release. See '-help deprecated'
PFLASH.c: icc: command line remark #10279: option '-xP' is deprecated and will be removed in a future release. See '-help deprecated'
SignScheme.c: icc: command line remark #10279: option '-xP' is deprecated and will be removed in a future release. See '-help deprecated'
SignScheme.c: SignScheme.c(211): warning #2330: argument of type "const unsigned char *" is incompatible with parameter of type "byte={unsigned char} *" (dropping qualifiers)
SignScheme.c: SignScheme_sign( sk , h , mlen , sm );
SignScheme.c: ^
SignScheme.c:
SignScheme.c: SignScheme.c(227): warning #2330: argument of type "const unsigned char *" is incompatible with parameter of type "byte={unsigned char} *" (dropping qualifiers)
SignScheme.c: SignScheme_GMap( pk , sm , h );
SignScheme.c: ^
SignScheme.c:
SignScheme.c: SignScheme.c(227): warning #2330: argument of type "const unsigned char *" is incompatible with parameter of type "byte={unsigned char} *" (dropping qualifiers)
SignScheme.c: SignScheme_GMap( pk , sm , h );
SignScheme.c: ^
SignScheme.c:
usehash.c: icc: command line remark #10279: option '-xP' is deprecated and will be removed in a future release. See '-help deprecated'
try.c: icc: command line remark #10279: option '-xP' is deprecated and will be removed in a future release. See '-help deprecated'
try.c: ld: cannot find -lcrypto

Number of similar (compiler,implementation) pairs: 8, namely:
CompilerImplementations
icc -O1 -xP -static ref
icc -O1 -xP -static -no-vec ref
icc -O2 -xP -static ref
icc -O2 -xP -static -no-vec ref
icc -O3 -xP -static ref
icc -O3 -xP -static -no-vec ref
icc -Os -xP -static ref
icc -Os -xP -static -no-vec ref

Compiler output

Implementation: crypto_sign/pflash1/ref
Compiler: icc -O1 -xW -static
BLAS.c: icc: command line warning #10131: extension 'W' not supported ignored in option '-x'
GF.c: icc: command line warning #10131: extension 'W' not supported ignored in option '-x'
GF16.c: icc: command line warning #10131: extension 'W' not supported ignored in option '-x'
GF256.c: icc: command line warning #10131: extension 'W' not supported ignored in option '-x'
GFword.c: icc: command line warning #10131: extension 'W' not supported ignored in option '-x'
PFLASH.c: icc: command line warning #10131: extension 'W' not supported ignored in option '-x'
SignScheme.c: icc: command line warning #10131: extension 'W' not supported ignored in option '-x'
SignScheme.c: SignScheme.c(211): warning #2330: argument of type "const unsigned char *" is incompatible with parameter of type "byte={unsigned char} *" (dropping qualifiers)
SignScheme.c: SignScheme_sign( sk , h , mlen , sm );
SignScheme.c: ^
SignScheme.c:
SignScheme.c: SignScheme.c(227): warning #2330: argument of type "const unsigned char *" is incompatible with parameter of type "byte={unsigned char} *" (dropping qualifiers)
SignScheme.c: SignScheme_GMap( pk , sm , h );
SignScheme.c: ^
SignScheme.c:
SignScheme.c: SignScheme.c(227): warning #2330: argument of type "const unsigned char *" is incompatible with parameter of type "byte={unsigned char} *" (dropping qualifiers)
SignScheme.c: SignScheme_GMap( pk , sm , h );
SignScheme.c: ^
SignScheme.c:
usehash.c: icc: command line warning #10131: extension 'W' not supported ignored in option '-x'
try.c: icc: command line warning #10131: extension 'W' not supported ignored in option '-x'
try.c: ld: cannot find -lcrypto

Number of similar (compiler,implementation) pairs: 8, namely:
CompilerImplementations
icc -O1 -xW -static ref
icc -O1 -xW -static -no-vec ref
icc -O2 -xW -static ref
icc -O2 -xW -static -no-vec ref
icc -O3 -xW -static ref
icc -O3 -xW -static -no-vec ref
icc -Os -xW -static ref
icc -Os -xW -static -no-vec ref

Compiler output

Implementation: crypto_sign/pflash1/ref
Compiler: icc -fast
SignScheme.c: SignScheme.c(211): warning #2330: argument of type "const unsigned char *" is incompatible with parameter of type "byte={unsigned char} *" (dropping qualifiers)
SignScheme.c: SignScheme_sign( sk , h , mlen , sm );
SignScheme.c: ^
SignScheme.c:
SignScheme.c: SignScheme.c(227): warning #2330: argument of type "const unsigned char *" is incompatible with parameter of type "byte={unsigned char} *" (dropping qualifiers)
SignScheme.c: SignScheme_GMap( pk , sm , h );
SignScheme.c: ^
SignScheme.c:
SignScheme.c: SignScheme.c(227): warning #2330: argument of type "const unsigned char *" is incompatible with parameter of type "byte={unsigned char} *" (dropping qualifiers)
SignScheme.c: SignScheme_GMap( pk , sm , h );
SignScheme.c: ^
SignScheme.c:
try.c: ipo: warning #11003: no IR in object file /scratch_lustre_na/bdolbeaur/supercop-20170228/supercop-data/robin281/amd64/lib/cpucycles.o; was the source file compiled with -ipo
try.c: ipo: warning #11021: unresolved zError
try.c: Referenced in /usr/lib/../lib64/libcrypto.so
try.c: ipo: warning #11021: unresolved inflateEnd
try.c: Referenced in /usr/lib/../lib64/libcrypto.so
try.c: ipo: warning #11021: unresolved deflate
try.c: Referenced in /usr/lib/../lib64/libcrypto.so
try.c: ipo: warning #11021: unresolved deflateInit_
try.c: Referenced in /usr/lib/../lib64/libcrypto.so
try.c: ipo: warning #11021: unresolved inflate
try.c: Referenced in /usr/lib/../lib64/libcrypto.so
try.c: ipo: warning #11021: unresolved deflateEnd
try.c: Referenced in /usr/lib/../lib64/libcrypto.so
try.c: ipo: warning #11021: unresolved inflateInit_
try.c: Referenced in /usr/lib/../lib64/libcrypto.so
try.c: ld: cannot find -lcrypto

Number of similar (compiler,implementation) pairs: 1, namely:
CompilerImplementations
icc -fast ref

Compiler output

Implementation: crypto_sign/pflash1/ref
Compiler: icc -m64 -xHost -vec-report0 -static
BLAS.c: icc: command line remark #10148: option '-vec-report0' not supported
GF.c: icc: command line remark #10148: option '-vec-report0' not supported
GF16.c: icc: command line remark #10148: option '-vec-report0' not supported
GF256.c: icc: command line remark #10148: option '-vec-report0' not supported
GFword.c: icc: command line remark #10148: option '-vec-report0' not supported
PFLASH.c: icc: command line remark #10148: option '-vec-report0' not supported
SignScheme.c: icc: command line remark #10148: option '-vec-report0' not supported
SignScheme.c: SignScheme.c(211): warning #2330: argument of type "const unsigned char *" is incompatible with parameter of type "byte={unsigned char} *" (dropping qualifiers)
SignScheme.c: SignScheme_sign( sk , h , mlen , sm );
SignScheme.c: ^
SignScheme.c:
SignScheme.c: SignScheme.c(227): warning #2330: argument of type "const unsigned char *" is incompatible with parameter of type "byte={unsigned char} *" (dropping qualifiers)
SignScheme.c: SignScheme_GMap( pk , sm , h );
SignScheme.c: ^
SignScheme.c:
SignScheme.c: SignScheme.c(227): warning #2330: argument of type "const unsigned char *" is incompatible with parameter of type "byte={unsigned char} *" (dropping qualifiers)
SignScheme.c: SignScheme_GMap( pk , sm , h );
SignScheme.c: ^
SignScheme.c:
usehash.c: icc: command line remark #10148: option '-vec-report0' not supported
try.c: icc: command line remark #10148: option '-vec-report0' not supported
try.c: ld: cannot find -lcrypto

Number of similar (compiler,implementation) pairs: 1, namely:
CompilerImplementations
icc -m64 -xHost -vec-report0 -static ref