User Allen - Stack Overflowmost recent 30 from stackoverflow.com2010-03-21T00:57:47Zhttp://stackoverflow.com/feeds/user/134619http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1591384/libtool-vs-ar-for-creating-a-static-library-xcode-linker2libtool vs ar for creating a static library (xcode linker)Allenhttp://stackoverflow.com/users/1346192009-10-19T21:59:30Z2010-01-07T00:58:23Z
<p>Creating a static library on Mac 10.5 with xcode via libtool and with ar via the command line both generate a libMainProject.a file however, when trying to use the one generate by libtool to link into a xcode application I end up with multiple message like </p>
<p>"vtable for project1 referenced from:
_ZTV27project1$non _lazy _ ptr in libMainProject.a(project1.o)"</p>
<p>Using the ar one is totally fine and links correctly. I have tried the addition of the -c option to the libtool while linking but that does not seem to have an impact. So I guess my 2 options are </p>
<p>1) Figure out what is causing the differences in symbols between the ar and libtool version and make the libtool generate the same information.</p>
<p>2) Make xcode use ar instead of libtool to generate the static libs.</p>
<p>Any ideas or suggestions would be appreciated.</p>
<p>Thanks in advance. </p>
http://stackoverflow.com/questions/1694988/create-a-mac-application-installer-and-passing-arguments-on-launch1Create a Mac Application Installer and Passing Arguments on LaunchAllenhttp://stackoverflow.com/users/1346192009-11-08T01:06:03Z2009-11-08T01:33:43Z
<p>Couple questions on creating a mac installer.</p>
<p>1) Should any frameworks from /Developer/SDKs/ be included/packaged into the application file?</p>
<p>2) When we normally launch the executable we pass it an argument to point it at our servers, is there a way to encode this information into the Unix Executable File found in Contents/MacOS/?</p>
<p>Thanks for any help.</p>
http://stackoverflow.com/questions/1095535/link-multiply-small-xcode-projects1Link multiply small xcode projectsAllenhttp://stackoverflow.com/users/1346192009-07-08T00:26:10Z2009-07-08T01:03:35Z
<p>So I am working on a very large xcode project, with a lot of libraries, and sub directories which generates a huge pbxproj file, is there a way to generate smaller xcode projects or pbxproj files that can then be read into a main project. Similar to how visual studio has a main vcproj file and smaller vcproj files for each library/executable etc...</p>
<p>Thanks for any input. </p>
http://stackoverflow.com/questions/1694988/create-a-mac-application-installer-and-passing-arguments-on-launch/1695049#1695049Comment by Allen on Create a Mac Application Installer and Passing Arguments on LaunchAllenhttp://stackoverflow.com/users/1346192009-11-08T04:09:52Z2009-11-08T04:09:52ZI figure out it out, if you create an shell script in the MacOS directory, to execute the actual executable with the correct parameters. http://stackoverflow.com/questions/1694988/create-a-mac-application-installer-and-passing-arguments-on-launch/1695049#1695049Comment by Allen on Create a Mac Application Installer and Passing Arguments on LaunchAllenhttp://stackoverflow.com/users/1346192009-11-08T03:30:31Z2009-11-08T03:30:31ZBased on the link you sent, that would create a environmental variable. What I am trying to achieve is similar to when you edit an executable in xcode, and you can specify "Arguments to be passed on launch" I want to be able to pass those arguments into the application when I run it from the Finder. Very similar to how in windows you create a shortcut that points to an exe file and give it various flags example (-S 123.134.543.143)