ObjFW  Check-in [0b6d60ee75]

Overview
Comment:configure: Add -g for m68k AmigaOS

Unfortunately, it still needs to remain at -O0, as Amiga GCC is still
buggy.

Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 0b6d60ee750ee5c747ea487dcb56125c6627305ce92d7228bb92f78c223ea0f0
User & Date: js on 2023-08-01 18:06:19
Other Links: manifest | tags
Context
2023-08-01
22:23
+[OFSystemInfo networkInterfaces]: IPX on Linux check-in: da63fcc9b0 user: js tags: trunk
18:06
configure: Add -g for m68k AmigaOS check-in: 0b6d60ee75 user: js tags: trunk
08:13
README.md: Update instructions for AmigaOS check-in: f3f45bd5f2 user: js tags: trunk
Changes

Modified configure.ac from [23d3514770] to [47dc4b89ca].

33
34
35
36
37
38
39
40
41
42
43
44
45
46
47

	enable_shared="no"
	enable_threads="no"
	enable_sockets="no"
	enable_files="no"
	;;
m68k-*-amigaos*)
	AS_IF([test x"$OBJCFLAGS" = x""], [OBJCFLAGS="-O0"])
	OBJCFLAGS="$OBJCFLAGS -noixemul"
	OBJFW_OBJCFLAGS="$OBJFW_OBJCFLAGS -noixemul"
	CPPFLAGS="$CPPFLAGS -D__NO_NET_API"
	LDFLAGS="$LDFLAGS -noixemul"
	LIBS="$LIBS -ldebug"

	enable_files="yes"	# Required for reading ENV:







|







33
34
35
36
37
38
39
40
41
42
43
44
45
46
47

	enable_shared="no"
	enable_threads="no"
	enable_sockets="no"
	enable_files="no"
	;;
m68k-*-amigaos*)
	AS_IF([test x"$OBJCFLAGS" = x""], [OBJCFLAGS="-O0 -g"])
	OBJCFLAGS="$OBJCFLAGS -noixemul"
	OBJFW_OBJCFLAGS="$OBJFW_OBJCFLAGS -noixemul"
	CPPFLAGS="$CPPFLAGS -D__NO_NET_API"
	LDFLAGS="$LDFLAGS -noixemul"
	LIBS="$LIBS -ldebug"

	enable_files="yes"	# Required for reading ENV: