ObjFW  Check-in [83233fd8ee]

Overview
Comment:Use -O0 on m68k-amigaos

amiga-gcc miscompiles code with -O1 and above.

Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 83233fd8eec9ac4c388d2a113fabcebe0d45b84b8dc647fa047af4ae7f48adf7
User & Date: js on 2018-05-05 18:40:20
Other Links: manifest | tags
Context
2018-05-06
02:16
Update buildsys check-in: 8498ed3446 user: js tags: trunk
2018-05-05
18:40
Use -O0 on m68k-amigaos check-in: 83233fd8ee user: js tags: trunk
18:20
runtime: Re-add declarations for 2 glue functions check-in: 86863a8845 user: js tags: trunk
Changes

Modified configure.ac from [afe6666f22] to [da2115c40b].

24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
check_pedantic="yes"

case "$host" in
	m68k-*-amigaos*)
		AS_IF([test x"$OBJCFLAGS" != x""], [
			OBJCFLAGS="$OBJCFLAGS -noixemul"
		], [
			OBJCFLAGS="-O2 -g -noixemul"
		])
		LDFLAGS="$LDFLAGS -noixemul"

		enable_shared="no"
		enable_threads="no"
		enable_sockets="no"
		enable_files="yes"	# Required for reading ENV:







|







24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
check_pedantic="yes"

case "$host" in
	m68k-*-amigaos*)
		AS_IF([test x"$OBJCFLAGS" != x""], [
			OBJCFLAGS="$OBJCFLAGS -noixemul"
		], [
			OBJCFLAGS="-O0 -g -noixemul"
		])
		LDFLAGS="$LDFLAGS -noixemul"

		enable_shared="no"
		enable_threads="no"
		enable_sockets="no"
		enable_files="yes"	# Required for reading ENV: