Re: GNUstep make on MacOSX Sierra - application build fails
Ivan Vučica <[email protected]> Wed, 8 Nov 2017 20:41:23 +0000
| Newsgroups | gmane.comp.lib.gnustep.user |
|---|---|
| Message-ID | <CAGPLYoQbu6D40OMcQ9jQeVeBB7i5Cs4GeG2sEr5BZeHut8GONg@mail.gmail.com> |
--===============7306348474812561813== Content-Type: multipart/alternative; boundary="001a11c185a2c637b7055d7eb7c2" --001a11c185a2c637b7055d7eb7c2 Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable discuss-gnustep@ isn't bad either, I'd guess. If anything, more people follow it. On Tue, Nov 7, 2017 at 3:17 PM, Andreas H=C3=B6schler <[email protected]= > wrote: > Hi all, > > I mistakenly sent a request to the wrong list (discuss instead of > help-gnustep). Here it is again on the probably more appropriate list: > > I am trying to get gnustep-make-2.7.0 to work on MacOSX Sierra. After > > ./configure > make > make install > > and thus installing GNUstep make I try to build a minimal test app > > main.m: > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D > int main (int argc, const char **argv, char** env) > { > NSAutoreleasePool *pool =3D [[NSAutoreleasePool alloc] init]; > NSString *processName =3D [[NSProcessInfo processInfo] processName]; > Controller *controller; > > [NSApplication sharedApplication]; > NSImage *image =3D [NSImage imageNamed:[NSString stringWithFormat:@"%@= .tiff", > processName]]; > if (image) [NSApp setApplicationIconImage:image]; > > controller =3D [[Controller alloc] init]; > [NSApp setDelegate:controller]; > > [pool release]; > > return NSApplicationMain (argc, argv); > } > > Controller.m: > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D > #import <AppKit/AppKit.h> > #import "Controller.h" > > @implementation Controller > @end > > and get > > admins-iMac:Test ahoesch$ make messages=3Dyes > This is gnustep-make 2.7.0. Type 'gnumake print-gnustep-make-help' for > help. > Running in gnustep-make version 2 strict mode. > Making all for app Test... > gcc -m32 -shared-libgcc -pthread -fexceptions -fnext-runtime -o > /Build/Test/Test.app/Contents/MacOS/Test \ > /Build/Test/obj/Test.obj/Controller.m.o /Build/Test/obj/Test.obj/main.m.o > -F/Library/Frameworks/ -framework AppKit -framework Foundatio= n > -lobjc -lm > clang: *warning: *argument unused during compilation: '-pthread' > [-Wunused-command-line-argument] > Undefined symbols for architecture i386: > "_OBJC_CLASS_$_NSApplication", referenced from: > objc-class-ref in main.m.o > "_OBJC_CLASS_$_NSAutoreleasePool", referenced from: > objc-class-ref in main.m.o > "_OBJC_CLASS_$_NSImage", referenced from: > objc-class-ref in main.m.o > "_OBJC_CLASS_$_NSObject", referenced from: > _OBJC_CLASS_$_Controller in Controller.m.o > "_OBJC_CLASS_$_NSProcessInfo", referenced from: > objc-class-ref in main.m.o > "_OBJC_CLASS_$_NSString", referenced from: > objc-class-ref in main.m.o > "_OBJC_METACLASS_$_NSObject", referenced from: > _OBJC_METACLASS_$_Controller in Controller.m.o > "_objc_msgSendSuper2", referenced from: > -[Controller dealloc] in Controller.m.o > ld: symbol(s) not found for architecture i386 > clang: *error: *linker command failed with exit code 1 (use -v to see > invocation) > gnumake[3]: *** [/Build/Test/Test.app/Contents/MacOS/Test] Error 1 > gnumake[2]: *** [internal-app-run-compile-submake] Error 2 > gnumake[1]: *** [Test.all.app.variables] Error 2 > make: *** [internal-all] Error 2 > > > > I have also tried to build the app manually on the command line, now usin= g > clang instead of gcc and -arch i386 instead of -m32: > > cd /Build/Test; \ > /Library/GNUstep/Makefiles/mkinstalldirs ./obj/Test.obj/ > /Library/GNUstep/Makefiles/mkinstalldirs /Build/Test/Test.app/Contents/ > MacOS > > > cd /Users/ahoesch/Development/Test > > clang Controller.m -c \ > -MMD -MP -DNeXT_Foundation_LIBRARY=3D1 -DNeXT_GUI_LIBRARY=3D1 > -DNeXT_RUNTIME=3D1 -fno-strict-aliasing -fexceptions -fobjc-exceptions > -D_NATIVE_OBJC_EXCEPTIONS -fobjc-nonfragile-abi -D_NONFRAGILE_ABI -pthrea= d > -dynamic -fno-common -Wall -DGSWARN -DGSDIAGNOSE -Wno-import -g -O2 > -fnext-runtime -arch i386 -Wno-parentheses -Wno-import -I. > -I/usr/local/include/ -F/Library/Frameworks/ \ > -o /Build/Test/obj/Test.obj/Controller.m.o > > > clang main.m -c \ > -MMD -MP -DNeXT_Foundation_LIBRARY=3D1 -DNeXT_GUI_LIBRARY=3D1 > -DNeXT_RUNTIME=3D1 -fno-strict-aliasing -fexceptions -fobjc-exceptions > -D_NATIVE_OBJC_EXCEPTIONS -fobjc-nonfragile-abi -D_NONFRAGILE_ABI -pthrea= d > -dynamic -fno-common -Wall -DGSWARN -DGSDIAGNOSE -Wno-import -g -O2 > -fnext-runtime -arch i386 -Wno-parentheses -Wno-import -I. > -I/usr/local/include/ -F/Library/Frameworks/ \ > -o /Build/Test/obj/Test.obj/main.m.o > > clang -arch i386 -shared-libgcc -pthread -fexceptions > -fnext-runtime -o /Build/Test/Test.app/Contents/MacOS/Test \ > /Build/Test/obj/Test.obj/Controller.m.o /Build/Test/obj/Test.obj/main.m.o > -F/Library/Frameworks/ -framework AppKit -framework Foundatio= n > -lobjc -lm > > > but still get the same error!? > > admins-iMac:Test ahoesch$ clang -arch i386 -shared-libgcc -pthread > -fexceptions -fnext-runtime -o /Build/Test/Test.app/Contents/MacOS/Test > /Build/Test/obj/Test.obj/Controller.m.o /Build/Test/obj/Test.obj/main.m.o > -F/Library/Frameworks/ -framework AppKit -framework Foundatio= n > -lobjc -lm > clang: *warning: *argument unused during compilation: '-pthread' > [-Wunused-command-line-argument] > Undefined symbols for architecture i386: > "_OBJC_CLASS_$_NSApplication", referenced from: > objc-class-ref in main.m.o > "_OBJC_CLASS_$_NSAutoreleasePool", referenced from: > objc-class-ref in main.m.o > "_OBJC_CLASS_$_NSImage", referenced from: > objc-class-ref in main.m.o > "_OBJC_CLASS_$_NSObject", referenced from: > _OBJC_CLASS_$_Controller in Controller.m.o > "_OBJC_CLASS_$_NSProcessInfo", referenced from: > objc-class-ref in main.m.o > "_OBJC_CLASS_$_NSString", referenced from: > objc-class-ref in main.m.o > "_OBJC_METACLASS_$_NSObject", referenced from: > _OBJC_METACLASS_$_Controller in Controller.m.o > "_objc_msgSendSuper2", referenced from: > -[Controller dealloc] in Controller.m.o > ld: symbol(s) not found for architecture i386 > clang: *error: *linker command failed with exit code 1 (use -v to see > invocation) > > I am clueless! This used to work on earlier versions of MacOSX. Any idea? > > Thanks a lot in advance!! > > Andreas > > > > _______________________________________________ > Help-gnustep mailing list > [email protected] > https://lists.gnu.org/mailman/listinfo/help-gnustep > > --001a11c185a2c637b7055d7eb7c2 Content-Type: text/html; charset="UTF-8" Content-Transfer-Encoding: quoted-printable <div dir=3D"ltr">discuss-gnustep@ isn't bad either, I'd guess. If a= nything, more people follow it.</div><div class=3D"gmail_extra"><br><div cl= ass=3D"gmail_quote">On Tue, Nov 7, 2017 at 3:17 PM, Andreas H=C3=B6schler <= span dir=3D"ltr"><<a href=3D"mailto:[email protected]" target=3D"_bla= nk">[email protected]</a>></span> wrote:<br><blockquote class=3D"gmai= l_quote" style=3D"margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left= :1ex"><div style=3D"word-wrap:break-word">Hi all,<div><br></div><div>I mist= akenly sent a request to the wrong list (discuss instead of help-gnustep). = Here it is again on the probably more appropriate list:</div><div><div clas= s=3D"h5"><div><br></div><div>I am trying to get=C2=A0gnustep-make-2.7.0 to = work on MacOSX Sierra. After</div><div><br></div><div><div style=3D"margin:= 0px;font-size:11px;line-height:normal;font-family:Menlo;background-color:rg= b(255,255,255)"><span style=3D"font-variant-ligatures:no-common-ligatures">= ./configure=C2=A0</span></div><div style=3D"margin:0px;font-size:11px;line-= height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span st= yle=3D"font-variant-ligatures:no-common-ligatures">make</span></div><div st= yle=3D"margin:0px;font-size:11px;line-height:normal;font-family:Menlo;backg= round-color:rgb(255,255,255)"><span style=3D"font-variant-ligatures:no-comm= on-ligatures">make install</span></div></div><div><span style=3D"font-varia= nt-ligatures:no-common-ligatures"><br></span></div><div>and thus installing= GNUstep make I try to build a minimal test app</div><div><br></div><div>ma= in.m:</div><div>=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D</= div><div><div>int main (int argc, const char **argv, char** env)</div><div>= {</div><div>=C2=A0 =C2=A0NSAutoreleasePool *pool =3D [[NSAutoreleasePool al= loc] init];</div><div>=C2=A0 =C2=A0NSString *processName =3D [[NSProcessInf= o processInfo] processName];</div><div>=C2=A0 =C2=A0Controller *controller;= </div><div><br></div><div>=C2=A0 =C2=A0[NSApplication sharedApplication];</= div><div>=C2=A0 =C2=A0NSImage *image =3D [NSImage imageNamed:[NSString stri= ngWithFormat:@"%@.tiff", processName]];</div><div>=C2=A0 =C2=A0if= (image) [NSApp setApplicationIconImage:image]<wbr>;</div><div><br></div><d= iv>=C2=A0 =C2=A0controller =3D [[Controller =C2=A0alloc] init];</div><div>= =C2=A0 =C2=A0[NSApp setDelegate:controller];</div><div>=C2=A0 =C2=A0</div><= div>=C2=A0 =C2=A0[pool release];</div><div><br></div><div>=C2=A0 =C2=A0retu= rn NSApplicationMain (argc, argv);</div><div>}</div></div><div><br></div><d= iv>Controller.m:</div><div>=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D</div><div><div>#import <AppKit/AppKit.h></div><div>#i= mport "Controller.h"</div><div><br></div><div>@implementation Con= troller</div><div>@end</div></div><div><br></div><div>and get</div><div><br= ></div></div></div><div><div><div class=3D"h5"><div style=3D"margin:0px;fon= t-size:11px;line-height:normal;font-family:Menlo;background-color:rgb(255,2= 55,255)"><span style=3D"font-variant-ligatures:no-common-ligatures">admins-= iMac:Test ahoesch$ make messages=3Dyes</span></div><div style=3D"margin:0px= ;font-size:11px;line-height:normal;font-family:Menlo;background-color:rgb(2= 55,255,255)"><span style=3D"font-variant-ligatures:no-common-ligatures">Thi= s is gnustep-make 2.7.0. Type 'gnumake print-gnustep-make-help' for= help.</span></div><div style=3D"margin:0px;font-size:11px;line-height:norm= al;font-family:Menlo;background-color:rgb(255,255,255)"><span style=3D"font= -variant-ligatures:no-common-ligatures">Running in gnustep-make version 2 s= trict mode.</span></div><div style=3D"margin:0px;font-size:11px;line-height= :normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style=3D= "font-variant-ligatures:no-common-ligatures">Making all for app Test...</sp= an></div></div></div><div style=3D"margin:0px;font-size:11px;line-height:no= rmal;font-family:Menlo;background-color:rgb(255,255,255)"><span style=3D"fo= nt-variant-ligatures:no-common-ligatures">gcc=C2=A0 -m32 =C2=A0 =C2=A0 -sha= red-libgcc=C2=A0 -pthread=C2=A0 -fexceptions -fnext-runtime -o /Build/Test/= Test.app/Contents/<wbr>MacOS/Test \</span></div><span class=3D""><div style= =3D"margin:0px;font-size:11px;line-height:normal;font-family:Menlo;backgrou= nd-color:rgb(255,255,255)"><span style=3D"font-variant-ligatures:no-common-= ligatures"><span class=3D"m_3210666423881850679Apple-tab-span" style=3D"whi= te-space:pre-wrap"> </span>/Build/Test/obj/Test.obj/<wbr>Controller.m.o /Bu= ild/Test/obj/Test.obj/main.<wbr>m.o =C2=A0 =C2=A0 =C2=A0 -F/Library/Framewo= rks/=C2=A0 =C2=A0 -framework AppKit=C2=A0 =C2=A0 -framework Foundation=C2= =A0 =C2=A0 -lobjc =C2=A0 -lm</span></div><div style=3D"margin:0px;font-size= :11px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255= )"><span style=3D"font-variant-ligatures:no-common-ligatures">clang:=C2=A0<= /span><span style=3D"font-variant-ligatures:no-common-ligatures;color:rgb(2= 13,59,211)"><b>warning:=C2=A0</b></span><span style=3D"font-variant-ligatur= es:no-common-ligatures">argument unused during compilation: '-pthread&#= 39; [-Wunused-command-line-<wbr>argument]</span></div><div style=3D"margin:= 0px;font-size:11px;line-height:normal;font-family:Menlo;background-color:rg= b(255,255,255)"><span style=3D"font-variant-ligatures:no-common-ligatures">= Undefined symbols for architecture i386:</span></div><div style=3D"margin:0= px;font-size:11px;line-height:normal;font-family:Menlo;background-color:rgb= (255,255,255)"><span style=3D"font-variant-ligatures:no-common-ligatures">= =C2=A0 "_OBJC_CLASS_$_NSApplication", referenced from:</span></di= v><div style=3D"margin:0px;font-size:11px;line-height:normal;font-family:Me= nlo;background-color:rgb(255,255,255)"><span style=3D"font-variant-ligature= s:no-common-ligatures">=C2=A0 =C2=A0 =C2=A0 objc-class-ref in main.m.o</spa= n></div><div style=3D"margin:0px;font-size:11px;line-height:normal;font-fam= ily:Menlo;background-color:rgb(255,255,255)"><span style=3D"font-variant-li= gatures:no-common-ligatures">=C2=A0 "_OBJC_CLASS_$_<wbr>NSAutoreleaseP= ool", referenced from:</span></div><div style=3D"margin:0px;font-size:= 11px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)= "><span style=3D"font-variant-ligatures:no-common-ligatures">=C2=A0 =C2=A0 = =C2=A0 objc-class-ref in main.m.o</span></div><div style=3D"margin:0px;font= -size:11px;line-height:normal;font-family:Menlo;background-color:rgb(255,25= 5,255)"><span style=3D"font-variant-ligatures:no-common-ligatures">=C2=A0 &= quot;_OBJC_CLASS_$_NSImage", referenced from:</span></div><div style= =3D"margin:0px;font-size:11px;line-height:normal;font-family:Menlo;backgrou= nd-color:rgb(255,255,255)"><span style=3D"font-variant-ligatures:no-common-= ligatures">=C2=A0 =C2=A0 =C2=A0 objc-class-ref in main.m.o</span></div><div= style=3D"margin:0px;font-size:11px;line-height:normal;font-family:Menlo;ba= ckground-color:rgb(255,255,255)"><span style=3D"font-variant-ligatures:no-c= ommon-ligatures">=C2=A0 "_OBJC_CLASS_$_NSObject", referenced from= :</span></div><div style=3D"margin:0px;font-size:11px;line-height:normal;fo= nt-family:Menlo;background-color:rgb(255,255,255)"><span style=3D"font-vari= ant-ligatures:no-common-ligatures">=C2=A0 =C2=A0 =C2=A0 _OBJC_CLASS_$_Contr= oller in Controller.m.o</span></div><div style=3D"margin:0px;font-size:11px= ;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><s= pan style=3D"font-variant-ligatures:no-common-ligatures">=C2=A0 "_OBJC= _CLASS_$_NSProcessInfo", referenced from:</span></div><div style=3D"ma= rgin:0px;font-size:11px;line-height:normal;font-family:Menlo;background-col= or:rgb(255,255,255)"><span style=3D"font-variant-ligatures:no-common-ligatu= res">=C2=A0 =C2=A0 =C2=A0 objc-class-ref in main.m.o</span></div><div style= =3D"margin:0px;font-size:11px;line-height:normal;font-family:Menlo;backgrou= nd-color:rgb(255,255,255)"><span style=3D"font-variant-ligatures:no-common-= ligatures">=C2=A0 "_OBJC_CLASS_$_NSString", referenced from:</spa= n></div><div style=3D"margin:0px;font-size:11px;line-height:normal;font-fam= ily:Menlo;background-color:rgb(255,255,255)"><span style=3D"font-variant-li= gatures:no-common-ligatures">=C2=A0 =C2=A0 =C2=A0 objc-class-ref in main.m.= o</span></div><div style=3D"margin:0px;font-size:11px;line-height:normal;fo= nt-family:Menlo;background-color:rgb(255,255,255)"><span style=3D"font-vari= ant-ligatures:no-common-ligatures">=C2=A0 "_OBJC_METACLASS_$_NSObject&= quot;, referenced from:</span></div><div style=3D"margin:0px;font-size:11px= ;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><s= pan style=3D"font-variant-ligatures:no-common-ligatures">=C2=A0 =C2=A0 =C2= =A0 _OBJC_METACLASS_$_Controller in Controller.m.o</span></div><div style= =3D"margin:0px;font-size:11px;line-height:normal;font-family:Menlo;backgrou= nd-color:rgb(255,255,255)"><span style=3D"font-variant-ligatures:no-common-= ligatures">=C2=A0 "_objc_msgSendSuper2", referenced from:</span><= /div><div style=3D"margin:0px;font-size:11px;line-height:normal;font-family= :Menlo;background-color:rgb(255,255,255)"><span style=3D"font-variant-ligat= ures:no-common-ligatures">=C2=A0 =C2=A0 =C2=A0 -[Controller dealloc] in Con= troller.m.o</span></div><div style=3D"margin:0px;font-size:11px;line-height= :normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style=3D= "font-variant-ligatures:no-common-ligatures">ld: symbol(s) not found for ar= chitecture i386</span></div><div style=3D"margin:0px;font-size:11px;line-he= ight:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span styl= e=3D"font-variant-ligatures:no-common-ligatures">clang:=C2=A0</span><span s= tyle=3D"font-variant-ligatures:no-common-ligatures;color:rgb(195,55,32)"><b= >error:=C2=A0</b></span><span style=3D"font-variant-ligatures:no-common-lig= atures">linker command failed with exit code 1 (use -v to see invocation)</= span></div></span><span class=3D""><div style=3D"margin:0px;font-size:11px;= line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><sp= an style=3D"font-variant-ligatures:no-common-ligatures">gnumake[3]: *** [/B= uild/Test/Test.app/<wbr>Contents/MacOS/Test] Error 1</span></div><div style= =3D"margin:0px;font-size:11px;line-height:normal;font-family:Menlo;backgrou= nd-color:rgb(255,255,255)"><span style=3D"font-variant-ligatures:no-common-= ligatures">gnumake[2]: *** [internal-app-run-compile-<wbr>submake] Error 2<= /span></div><div style=3D"margin:0px;font-size:11px;line-height:normal;font= -family:Menlo;background-color:rgb(255,255,255)"><span style=3D"font-varian= t-ligatures:no-common-ligatures">gnumake[1]: *** [Test.all.app.variables] E= rror 2</span></div><div style=3D"margin:0px;font-size:11px;line-height:norm= al;font-family:Menlo;background-color:rgb(255,255,255)"><span style=3D"font= -variant-ligatures:no-common-ligatures">make: *** [internal-all] Error 2</s= pan></div></span></div><div><span style=3D"font-variant-ligatures:no-common= -ligatures"><br></span></div><div><br></div><div><br></div><div>I have also= tried to build the app manually on the command line, now using clang inste= ad of gcc and=C2=A0<font face=3D"Courier" size=3D"2">-arch i386=C2=A0instea= d of -m32:</font></div><div><div class=3D"h5"><div><font face=3D"Courier" s= ize=3D"2"><br></font></div><div><div style=3D"margin:0px;font-size:11px;lin= e-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span = style=3D"font-variant-ligatures:no-common-ligatures">cd /Build/Test; \</spa= n></div><div style=3D"margin:0px;font-size:11px;line-height:normal;font-fam= ily:Menlo;background-color:rgb(255,255,255)"><span style=3D"font-variant-li= gatures:no-common-ligatures"><span class=3D"m_3210666423881850679Apple-tab-= span" style=3D"white-space:pre-wrap"> </span>/Library/GNUstep/Makefiles/<wb= r>mkinstalldirs ./obj/Test.obj/</span></div><div style=3D"margin:0px;font-s= ize:11px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,= 255)"><span style=3D"font-variant-ligatures:no-common-ligatures">/Library/G= NUstep/Makefiles/<wbr>mkinstalldirs /Build/Test/Test.app/Contents/<wbr>MacO= S</span></div><div style=3D"margin:0px;font-size:11px;line-height:normal;fo= nt-family:Menlo;background-color:rgb(255,255,255);min-height:13px"><span st= yle=3D"font-variant-ligatures:no-common-ligatures"></span><br></div><div st= yle=3D"margin:0px;font-size:11px;line-height:normal;font-family:Menlo;backg= round-color:rgb(255,255,255);min-height:13px"><span style=3D"font-variant-l= igatures:no-common-ligatures"></span><br></div><div style=3D"margin:0px;fon= t-size:11px;line-height:normal;font-family:Menlo;background-color:rgb(255,2= 55,255)"><span style=3D"font-variant-ligatures:no-common-ligatures">cd /Use= rs/ahoesch/Development/<wbr>Test</span></div><div style=3D"margin:0px;font-= size:11px;line-height:normal;font-family:Menlo;background-color:rgb(255,255= ,255);min-height:13px"><span style=3D"font-variant-ligatures:no-common-liga= tures"></span><br></div><div style=3D"margin:0px;font-size:11px;line-height= :normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style=3D= "font-variant-ligatures:no-common-ligatures">clang Controller.m -c \</span>= </div><div style=3D"margin:0px;font-size:11px;line-height:normal;font-famil= y:Menlo"><span style=3D"font-variant-ligatures:no-common-ligatures;backgrou= nd-color:rgb(255,255,255)"><span class=3D"m_3210666423881850679Apple-tab-sp= an" style=3D"white-space:pre-wrap"> </span>=C2=A0 =C2=A0 =C2=A0 -MMD -MP -D= NeXT_Foundation_LIBRARY=3D1 -DNeXT_GUI_LIBRARY=3D1 -DNeXT_RUNTIME=3D1 -fno-= strict-aliasing -fexceptions -fobjc-exceptions -D_NATIVE_OBJC_EXCEPTIONS -f= objc-nonfragile-abi -D_NONFRAGILE_ABI -pthread -dynamic -fno-common -Wall -= DGSWARN -DGSDIAGNOSE -Wno-import -g -O2 -fnext-runtime=C2=A0</span><span st= yle=3D"font-size:13px;line-height:normal;font-family:Courier">-arch i386</s= pan><span style=3D"font-variant-ligatures:no-common-ligatures;background-co= lor:rgb(255,255,255)">=C2=A0-Wno-parentheses -Wno-import -I. -I/usr/local/i= nclude/ -F/Library/Frameworks/ \</span></div><div style=3D"margin:0px;font-= size:11px;line-height:normal;font-family:Menlo;background-color:rgb(255,255= ,255)"><span style=3D"font-variant-ligatures:no-common-ligatures"><span cla= ss=3D"m_3210666423881850679Apple-tab-span" style=3D"white-space:pre-wrap"> = </span>=C2=A0=C2=A0 =C2=A0 =C2=A0 -o /Build/Test/obj/Test.obj/<wbr>Controll= er.m.o</span></div><div style=3D"margin:0px;font-size:11px;line-height:norm= al;font-family:Menlo;background-color:rgb(255,255,255);min-height:13px"><sp= an style=3D"font-variant-ligatures:no-common-ligatures"><b></b></span><br><= /div><div style=3D"margin:0px;font-size:11px;line-height:normal;font-family= :Menlo;background-color:rgb(255,255,255);min-height:13px"><span style=3D"fo= nt-variant-ligatures:no-common-ligatures"><b></b></span><br></div><div styl= e=3D"margin:0px;font-size:11px;line-height:normal;font-family:Menlo;backgro= und-color:rgb(255,255,255)"><span style=3D"font-variant-ligatures:no-common= -ligatures">clang main.m -c \</span></div><div style=3D"margin:0px;font-siz= e:11px;line-height:normal;font-family:Menlo"><span style=3D"font-variant-li= gatures:no-common-ligatures;background-color:rgb(255,255,255)"><span class= =3D"m_3210666423881850679Apple-tab-span" style=3D"white-space:pre-wrap"> </= span>=C2=A0 =C2=A0 =C2=A0 -MMD -MP -DNeXT_Foundation_LIBRARY=3D1 -DNeXT_GUI= _LIBRARY=3D1 -DNeXT_RUNTIME=3D1 -fno-strict-aliasing -fexceptions -fobjc-ex= ceptions -D_NATIVE_OBJC_EXCEPTIONS -fobjc-nonfragile-abi -D_NONFRAGILE_ABI = -pthread -dynamic -fno-common -Wall -DGSWARN -DGSDIAGNOSE -Wno-import -g -O= 2 -fnext-runtime=C2=A0</span><span style=3D"font-size:13px;line-height:norm= al;font-family:Courier">-arch i386</span><span style=3D"font-variant-ligatu= res:no-common-ligatures;background-color:rgb(255,255,255)">=C2=A0-Wno-paren= theses -Wno-import -I. -I/usr/local/include/ -F/Library/Frameworks/ \</span= ></div><div style=3D"margin:0px;font-size:11px;line-height:normal;font-fami= ly:Menlo;background-color:rgb(255,255,255)"><span style=3D"font-variant-lig= atures:no-common-ligatures"><span class=3D"m_3210666423881850679Apple-tab-s= pan" style=3D"white-space:pre-wrap"> </span>=C2=A0=C2=A0 =C2=A0 =C2=A0 -o /= Build/Test/obj/Test.obj/main.<wbr>m.o</span></div><div style=3D"margin:0px;= font-size:11px;line-height:normal;font-family:Menlo;background-color:rgb(25= 5,255,255);min-height:13px"><span style=3D"font-variant-ligatures:no-common= -ligatures"></span><br></div><div style=3D"margin:0px;font-size:11px;line-h= eight:normal;font-family:Menlo"><span style=3D"font-variant-ligatures:no-co= mmon-ligatures;background-color:rgb(255,255,255)">clang=C2=A0=C2=A0</span><= span style=3D"font-size:13px;line-height:normal;font-family:Courier">-arch = i386</span><span style=3D"font-variant-ligatures:no-common-ligatures;backgr= ound-color:rgb(255,255,255)">=C2=A0=C2=A0 =C2=A0 -shared-libgcc=C2=A0 -pthr= ead=C2=A0 -fexceptions -fnext-runtime -o /Build/Test/Test.app/Contents/<wbr= >MacOS/Test \</span></div><div style=3D"margin:0px;font-size:11px;line-heig= ht:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style= =3D"font-variant-ligatures:no-common-ligatures"><span class=3D"m_3210666423= 881850679Apple-tab-span" style=3D"white-space:pre-wrap"> </span>/Build/Test= /obj/Test.obj/<wbr>Controller.m.o /Build/Test/obj/Test.obj/main.<wbr>m.o = =C2=A0 =C2=A0 =C2=A0 -F/Library/Frameworks/=C2=A0 =C2=A0 -framework AppKit= =C2=A0 =C2=A0 -framework Foundation=C2=A0 =C2=A0 -lobjc =C2=A0 -lm</span></= div></div><div><br></div><div><font face=3D"Courier" size=3D"2"><br></font>= </div><div><font face=3D"Courier" size=3D"2">but still get the same error!?= </font></div><div><font face=3D"Courier" size=3D"2"><br></font></div><div><= div style=3D"margin:0px;font-size:11px;line-height:normal;font-family:Menlo= ;background-color:rgb(255,255,255)"><span style=3D"font-variant-ligatures:n= o-common-ligatures">admins-iMac:Test ahoesch$ clang=C2=A0 -arch i386 =C2=A0= =C2=A0 -shared-libgcc=C2=A0 -pthread=C2=A0 -fexceptions -fnext-runtime -o = /Build/Test/Test.app/Contents/<wbr>MacOS/Test /Build/Test/obj/Test.obj/<wbr= >Controller.m.o /Build/Test/obj/Test.obj/main.<wbr>m.o =C2=A0 =C2=A0 =C2=A0= -F/Library/Frameworks/=C2=A0 =C2=A0 -framework AppKit=C2=A0 =C2=A0 -framew= ork Foundation=C2=A0 =C2=A0 -lobjc =C2=A0 -lm</span></div><div style=3D"mar= gin:0px;font-size:11px;line-height:normal;font-family:Menlo;background-colo= r:rgb(255,255,255)"><span style=3D"font-variant-ligatures:no-common-ligatur= es">clang:=C2=A0</span><span style=3D"font-variant-ligatures:no-common-liga= tures;color:rgb(213,59,211)"><b>warning:=C2=A0</b></span><span style=3D"fon= t-variant-ligatures:no-common-ligatures">argument unused during compilation= : '-pthread' [-Wunused-command-line-<wbr>argument]</span></div><div= style=3D"margin:0px;font-size:11px;line-height:normal;font-family:Menlo;ba= ckground-color:rgb(255,255,255)"><span style=3D"font-variant-ligatures:no-c= ommon-ligatures">Undefined symbols for architecture i386:</span></div><div = style=3D"margin:0px;font-size:11px;line-height:normal;font-family:Menlo;bac= kground-color:rgb(255,255,255)"><span style=3D"font-variant-ligatures:no-co= mmon-ligatures">=C2=A0 "_OBJC_CLASS_$_NSApplication", referenced = from:</span></div><div style=3D"margin:0px;font-size:11px;line-height:norma= l;font-family:Menlo;background-color:rgb(255,255,255)"><span style=3D"font-= variant-ligatures:no-common-ligatures">=C2=A0 =C2=A0 =C2=A0 objc-class-ref = in main.m.o</span></div><div style=3D"margin:0px;font-size:11px;line-height= :normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style=3D= "font-variant-ligatures:no-common-ligatures">=C2=A0 "_OBJC_CLASS_$_<wb= r>NSAutoreleasePool", referenced from:</span></div><div style=3D"margi= n:0px;font-size:11px;line-height:normal;font-family:Menlo;background-color:= rgb(255,255,255)"><span style=3D"font-variant-ligatures:no-common-ligatures= ">=C2=A0 =C2=A0 =C2=A0 objc-class-ref in main.m.o</span></div><div style=3D= "margin:0px;font-size:11px;line-height:normal;font-family:Menlo;background-= color:rgb(255,255,255)"><span style=3D"font-variant-ligatures:no-common-lig= atures">=C2=A0 "_OBJC_CLASS_$_NSImage", referenced from:</span></= div><div style=3D"margin:0px;font-size:11px;line-height:normal;font-family:= Menlo;background-color:rgb(255,255,255)"><span style=3D"font-variant-ligatu= res:no-common-ligatures">=C2=A0 =C2=A0 =C2=A0 objc-class-ref in main.m.o</s= pan></div><div style=3D"margin:0px;font-size:11px;line-height:normal;font-f= amily:Menlo;background-color:rgb(255,255,255)"><span style=3D"font-variant-= ligatures:no-common-ligatures">=C2=A0 "_OBJC_CLASS_$_NSObject", r= eferenced from:</span></div><div style=3D"margin:0px;font-size:11px;line-he= ight:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span styl= e=3D"font-variant-ligatures:no-common-ligatures">=C2=A0 =C2=A0 =C2=A0 _OBJC= _CLASS_$_Controller in Controller.m.o</span></div><div style=3D"margin:0px;= font-size:11px;line-height:normal;font-family:Menlo;background-color:rgb(25= 5,255,255)"><span style=3D"font-variant-ligatures:no-common-ligatures">=C2= =A0 "_OBJC_CLASS_$_NSProcessInfo", referenced from:</span></div><= div style=3D"margin:0px;font-size:11px;line-height:normal;font-family:Menlo= ;background-color:rgb(255,255,255)"><span style=3D"font-variant-ligatures:n= o-common-ligatures">=C2=A0 =C2=A0 =C2=A0 objc-class-ref in main.m.o</span><= /div><div style=3D"margin:0px;font-size:11px;line-height:normal;font-family= :Menlo;background-color:rgb(255,255,255)"><span style=3D"font-variant-ligat= ures:no-common-ligatures">=C2=A0 "_OBJC_CLASS_$_NSString", refere= nced from:</span></div><div style=3D"margin:0px;font-size:11px;line-height:= normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style=3D"= font-variant-ligatures:no-common-ligatures">=C2=A0 =C2=A0 =C2=A0 objc-class= -ref in main.m.o</span></div><div style=3D"margin:0px;font-size:11px;line-h= eight:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span sty= le=3D"font-variant-ligatures:no-common-ligatures">=C2=A0 "_OBJC_METACL= ASS_$_NSObject", referenced from:</span></div><div style=3D"margin:0px= ;font-size:11px;line-height:normal;font-family:Menlo;background-color:rgb(2= 55,255,255)"><span style=3D"font-variant-ligatures:no-common-ligatures">=C2= =A0 =C2=A0 =C2=A0 _OBJC_METACLASS_$_Controller in Controller.m.o</span></di= v><div style=3D"margin:0px;font-size:11px;line-height:normal;font-family:Me= nlo;background-color:rgb(255,255,255)"><span style=3D"font-variant-ligature= s:no-common-ligatures">=C2=A0 "_objc_msgSendSuper2", referenced f= rom:</span></div><div style=3D"margin:0px;font-size:11px;line-height:normal= ;font-family:Menlo;background-color:rgb(255,255,255)"><span style=3D"font-v= ariant-ligatures:no-common-ligatures">=C2=A0 =C2=A0 =C2=A0 -[Controller dea= lloc] in Controller.m.o</span></div><div style=3D"margin:0px;font-size:11px= ;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><s= pan style=3D"font-variant-ligatures:no-common-ligatures">ld: symbol(s) not = found for architecture i386</span></div><div style=3D"margin:0px;font-size:= 11px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)= "><span style=3D"font-variant-ligatures:no-common-ligatures">clang:=C2=A0</= span><span style=3D"font-variant-ligatures:no-common-ligatures;color:rgb(19= 5,55,32)"><b>error:=C2=A0</b></span><span style=3D"font-variant-ligatures:n= o-common-ligatures">linker command failed with exit code 1 (use -v to see i= nvocation)</span></div></div><div><span style=3D"font-variant-ligatures:no-= common-ligatures"><br></span></div></div></div><div>I am clueless! This use= d to work on earlier versions of MacOSX. Any idea?</div><div><br></div><div= >Thanks a lot in advance!!</div><span class=3D"HOEnZb"><font color=3D"#8888= 88"><div><br></div><div>Andreas</div><div><br></div><div><br></div></font><= /span></div><br>______________________________<wbr>_________________<br> Help-gnustep mailing list<br> <a href=3D"mailto:[email protected]">[email protected]</a><br> <a href=3D"https://lists.gnu.org/mailman/listinfo/help-gnustep" rel=3D"nore= ferrer" target=3D"_blank">https://lists.gnu.org/mailman/<wbr>listinfo/help-= gnustep</a><br> <br></blockquote></div><br></div> --001a11c185a2c637b7055d7eb7c2-- --===============7306348474812561813== Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Disposition: inline _______________________________________________ Help-gnustep mailing list [email protected] https://lists.gnu.org/mailman/listinfo/help-gnustep --===============7306348474812561813==--