Re: xCode and external SW?????
Re: xCode and external SW?????
- Subject: Re: xCode and external SW?????
- From: email@hidden
- Date: Tue, 20 Jan 2004 14:59:53 -0800
On Jan 19, 2004, at 9:24 AM, Lewis, Ambrose J. wrote:
Hi All:
Sorry for the newbie question, but I'm really stuck and heading chin
first
towards a deadline!
I'm trying to merge code developed inside xCode with code from the
outside.
I used xCode to develop a C/C++ command line code based on the
"Accelerate.framework" and "vecLib.framework"
Now, I need to integrate this with the code that uses the MPICH
library/environment.
MPICH uses makefiles. Their makefile calls a 375 line script to build
the
parameters for gcc, something I'd like to avoid messing with.
Can I get xCode to use this makefile?
You can add a 'GNU Make Target' to your project and configure that. Use
the menu Project->Add Target... and select the 'GNU Make Target' in the
Special Targets heading. Double click this new target to configure it.
(See the Xcode help section on External Targets)
Or is there a way to convince xCode to give me the command line it is
passing to the compiler???
I should be able to add this info to the makefile and use the MPICH
script
to compile and link the code.
Thanks for all the help!!
You can see what the build command was by looking at the Build->Show
Detailed Build Results then move the split at the bottom of the window
up or click the 'Show/hide the textual build transcript' button to the
right of the "Show Warnings' checkbox , There isn't a way to export the
compiler arguments unless you changed the default compiler used to be
your own program/shell script and parsed the arguments....
Cheers,
ChrisF
_______________________________________________
xcode-users mailing list | email@hidden
Help/Unsubscribe/Archives: http://www.lists.apple.com/mailman/listinfo/xcode-users
Do not post admin requests to the list. They will be ignored.