Check-in [50bee4e4c5]
Not logged in

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview
Comment:Fix configure problems
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: 50bee4e4c51ff3994bf7037526c5be7f8ca57f89
User & Date: bernd 2020-06-11 13:59:38.349
Context
2020-06-11
17:46
Update for newer Android toolchain check-in: a57b500ccd user: bernd tags: trunk
13:59
Fix configure problems check-in: 50bee4e4c5 user: bernd tags: trunk
11:38
Bump version number check-in: 80870ade76 user: bernd tags: trunk, 0.9.8-20200611
Changes
Unified Diff Ignore Whitespace Patch
Changes to keccakp/configure.ac.
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
    ;;
  8)
    ws=${ws-opt64}
    ;;
esac

flags="$CFLAGS"
nomflags="`echo $CFLAGS | sed -e 's/-m[[^ ]]* //g' -e 's/-fdebug[[^ ]]* //g'`"

# special optimizations for some plattforms
case "$host" in
#     aarch64*)
#	asmflags="-O3 $nomflags"
#	flags="-O3 $nomflags"
#	as="armv8a-neon-as"







|







21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
    ;;
  8)
    ws=${ws-opt64}
    ;;
esac

flags="$CFLAGS"
nomflags="`echo $CFLAGS | sed -e 's/-m[0-9]* //g'`"

# special optimizations for some plattforms
case "$host" in
#     aarch64*)
#	asmflags="-O3 $nomflags"
#	flags="-O3 $nomflags"
#	as="armv8a-neon-as"
Changes to threefish/configure.ac.
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23

AC_PROG_CC
AM_PROG_AS
m4_ifdef([AM_PROG_AR], [AM_PROG_AR])
LT_INIT

flags="$CFLAGS"
nomflags="`echo $CFLAGS | sed -e 's/-m[[^ ]]* //g'`"

# special optimizations for some plattforms
case "$host" in
    arm*-*linux*)
	flags="$CFLAGS"
	#may try with -mneon-for-64bits
	fastflags="-O3 -mfpu=neon $nomflags"







|







9
10
11
12
13
14
15
16
17
18
19
20
21
22
23

AC_PROG_CC
AM_PROG_AS
m4_ifdef([AM_PROG_AR], [AM_PROG_AR])
LT_INIT

flags="$CFLAGS"
nomflags="`echo $CFLAGS | sed -e 's/-m[0-9]* //g'`"

# special optimizations for some plattforms
case "$host" in
    arm*-*linux*)
	flags="$CFLAGS"
	#may try with -mneon-for-64bits
	fastflags="-O3 -mfpu=neon $nomflags"