ObjFW  Check-in [4c6a978a19]

Overview
Comment:-framework has to be before -f* in objfw-compile.
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | 0.5
Files: files | file ages | folders
SHA3-256: 4c6a978a1918421485878e49391243a554289956e183663a44be1077b84cec27
User & Date: js on 2011-07-07 18:07:27
Other Links: branch diff | manifest | tags
Context
2011-07-10
03:19
Include objc/runtime.h when using the new GNU runtime. check-in: 5c6e2b3362 user: js tags: 0.5
2011-07-07
18:07
-framework has to be before -f* in objfw-compile. check-in: 4c6a978a19 user: js tags: 0.5
2011-07-06
22:40
Documentation fixes. check-in: c92627ff31 user: js tags: 0.5
Changes

Modified utils/objfw-compile from [7b180ee5b0] to [b75d583b48].

103
104
105
106
107
108
109
110
111
112
113
114
115
116



117
118
119
120
121
122
123
		-D)
			shift
			CPPFLAGS="$CPPFLAGS -D$1"
			;;
		-D*)
			CPPFLAGS="$CPPFLAGS $1"
			;;
		-f*)
			OBJCFLAGS="$OBJCFLAGS $1"
			;;
		-framework)
			shift
			LIBS="$LIBS -framework $1"
			;;



		-g*)
			OBJCFLAGS="$OBJCFLAGS $1"
			;;
		-I)
			shift
			CPPFLAGS="$CPPFLAGS -I$1"
			;;







<
<
<




>
>
>







103
104
105
106
107
108
109



110
111
112
113
114
115
116
117
118
119
120
121
122
123
		-D)
			shift
			CPPFLAGS="$CPPFLAGS -D$1"
			;;
		-D*)
			CPPFLAGS="$CPPFLAGS $1"
			;;



		-framework)
			shift
			LIBS="$LIBS -framework $1"
			;;
		-f*)
			OBJCFLAGS="$OBJCFLAGS $1"
			;;
		-g*)
			OBJCFLAGS="$OBJCFLAGS $1"
			;;
		-I)
			shift
			CPPFLAGS="$CPPFLAGS -I$1"
			;;