ObjFW  Check-in [74f283ce2a]

Overview
Comment:objfw-compile: Allow -std=*.
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 74f283ce2a02b97b1eae88215a879141160ccbf4aaf4b7eaaf39103a595d5c9d
User & Date: js on 2012-04-25 09:15:02
Other Links: manifest | tags
Context
2012-05-18
15:59
Add -[OFThreadPool size]. check-in: 6729a18ba0 user: js tags: trunk
2012-04-25
09:15
objfw-compile: Allow -std=*. check-in: 74f283ce2a user: js tags: trunk
2012-04-21
11:02
Fix __has_feature check. check-in: 66db4586f7 user: js tags: trunk
Changes

Modified utils/objfw-compile from [950c191148] to [efa64bfec9].

152
153
154
155
156
157
158



159
160
161
162
163
164
165
			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"
			;;
		-*)







>
>
>







152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
			LDFLAGS="$LDFLAGS $($OBJFW_CONFIG --plugin-ldflags)"
			out_suffix="$($OBJFW_CONFIG --plugin-suffix)"
			;;
		-pthread)
			OBJCFLAGS="$OBJCFLAGS $1"
			LDFLAGS="$LDFLAGS $1"
			;;
		-std=*)
			OBJCFLAGS="$OBJCFLAGS $1"
			;;
		-Wl,*)
			LDFLAGS="$LDFLAGS $1"
			;;
		-W*)
			OBJCFLAGS="$OBJCFLAGS $1"
			;;
		-*)