ObjFW  Check-in [7ab6d090a9]

Overview
Comment:configure: Don't use clang on MorphOS

clang does not support baserel, which is required for the .library.

Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 7ab6d090a95741880001a423f958584f9c21939553d963078727e990d348da28
User & Date: js on 2020-11-21 20:19:08
Other Links: manifest | tags
Context
2020-11-21
22:31
Update buildsys check-in: 3eb410d05b user: js tags: trunk
20:19
configure: Don't use clang on MorphOS check-in: 7ab6d090a9 user: js tags: trunk
19:51
forwarding-powerpc-elf.S: Support non-PIC targets check-in: a9fff5c987 user: js tags: trunk
Changes

Modified configure.ac from [0d76ebba9d] to [c2763df7ae].

146
147
148
149
150
151
152







153


154
155
156
157
158
159
160
	dnl Hack to make configure find these on DOS.
	: ${AR:=ar.exe}
	: ${GREP:=grep.exe}
	: ${RANLIB:=ranlib.exe}
])

AC_LANG([Objective C])







AC_PROG_OBJC([clang egcc gcc])


AC_PROG_OBJCPP
AC_PROG_LN_S
AC_PROG_INSTALL
AC_PROG_EGREP

BUILDSYS_CHECK_IOS








>
>
>
>
>
>
>
|
>
>







146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
	dnl Hack to make configure find these on DOS.
	: ${AR:=ar.exe}
	: ${GREP:=grep.exe}
	: ${RANLIB:=ranlib.exe}
])

AC_LANG([Objective C])
case "$host_os" in
	morphos*)
		dnl Don't use clang on MorphOS - it does not support baserel,
		dnl which is required for the .library.
		AC_PROG_OBJC(gcc)
		;;
	*)
		AC_PROG_OBJC([clang egcc gcc])
		;;
esac
AC_PROG_OBJCPP
AC_PROG_LN_S
AC_PROG_INSTALL
AC_PROG_EGREP

BUILDSYS_CHECK_IOS