ObjFW  Check-in [bcae0e5054]

Overview
Comment:objfw-compile: Allow -pthread.
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: bcae0e5054cb0148392ba0243546dc650f6304e278007bb9bb71862b7bc07fdb
User & Date: js on 2011-12-12 22:55:11
Other Links: manifest | tags
Context
2011-12-13
13:43
Work around a bug affecting only Clang 2.9 + libobjc from GCC 4.6. check-in: 0c427ebb0a user: js tags: trunk
2011-12-12
22:55
objfw-compile: Allow -pthread. check-in: bcae0e5054 user: js tags: trunk
20:17
Remove imports from ObjFW.h that don't exist anymore. check-in: 3df0629692 user: js tags: trunk
Changes

Modified utils/objfw-compile from [d1a68f7d66] to [a3e6a7fd23].

148
149
150
151
152
153
154




155
156
157
158
159
160
161
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165







+
+
+
+







			fi

			plugin="yes"
			OBJCFLAGS="$OBJCFLAGS $($OBJFW_CONFIG --plugin-cflags)"
			LDFLAGS="$LDFLAGS $($OBJFW_CONFIG --plugin-ldflags)"
			out_suffix="$($OBJFW_CONFIG --plugin-suffix)"
			;;
		-pthread)
			OBJCFLAGS="$OBJCFLAGS $1"
			LDFLAGS="$LDFLAGS $1"
			;;
		-Wl,*)
			LDFLAGS="$LDFLAGS $1"
			;;
		-W*)
			OBJCFLAGS="$OBJCFLAGS $1"
			;;
		-*)