ObjFW  Check-in [482c103268]

Overview
Comment:Use -Wno-deprecated-objc-isa-usage if available.
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | runtime
Files: files | file ages | folders
SHA3-256: 482c1032681f9c23efd01ef036839ce447357edd8e7eee51bd3f99bdc22b7ac0
User & Date: js on 2012-05-12 14:14:15
Other Links: branch diff | manifest | tags
Context
2012-06-01
21:48
jmp *(%foo) should be jmp *%foo. check-in: 97b7c01ddd user: js tags: runtime
2012-05-12
14:14
Use -Wno-deprecated-objc-isa-usage if available. check-in: 482c103268 user: js tags: runtime
10:22
Add ASM for AMD64/Mach-O. check-in: 965b8afeef user: js tags: runtime
Changes

Modified configure.ac from [6d931bb351] to [0661dee44a].

178
179
180
181
182
183
184


185
186
187
188
189
190
191
		OBJCFLAGS="$OBJCFLAGS -fgnu-runtime"
		RUNTIME_FLAGS="-fgnu-runtime"

		AX_CHECK_COMPILER_FLAGS(-fno-objc-nonfragile-abi, [
			OBJCFLAGS="$OBJCFLAGS -fno-objc-nonfragile-abi"
			GNU_RUNTIME="$GNU_RUNTIME -fno-objc-nonfragile-abi"
		])



		AC_SUBST(GNU_RUNTIME)

		AC_SUBST(RUNTIME, "runtime")
		if test x"$enable_shared" != x"no"; then
			AC_SUBST(RUNTIME_LIB_A, "runtime.lib.a")
			AC_SUBST(RUNTIME_RUNTIME_LIB_A, "runtime/runtime.lib.a")







>
>







178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
		OBJCFLAGS="$OBJCFLAGS -fgnu-runtime"
		RUNTIME_FLAGS="-fgnu-runtime"

		AX_CHECK_COMPILER_FLAGS(-fno-objc-nonfragile-abi, [
			OBJCFLAGS="$OBJCFLAGS -fno-objc-nonfragile-abi"
			GNU_RUNTIME="$GNU_RUNTIME -fno-objc-nonfragile-abi"
		])
		AX_CHECK_COMPILER_FLAGS(-Wno-deprecated-objc-isa-usage,
			[OBJCFLAGS="$OBJCFLAGS -Wno-deprecated-objc-isa-usage"])

		AC_SUBST(GNU_RUNTIME)

		AC_SUBST(RUNTIME, "runtime")
		if test x"$enable_shared" != x"no"; then
			AC_SUBST(RUNTIME_LIB_A, "runtime.lib.a")
			AC_SUBST(RUNTIME_RUNTIME_LIB_A, "runtime/runtime.lib.a")