Re: beginner's xcode question
Re: beginner's xcode question
- Subject: Re: beginner's xcode question
- From: Chris Espinosa <email@hidden>
- Date: Mon, 8 Dec 2003 17:47:08 -0800
On Dec 8, 2003, at 4:08 PM, Simon P wrote:
I just started using XCode development tools.
I am trying to build an xcode project for static
libraries that I've been using for a long time.
I created multiple targets within the project: each
target is a static library. There are some
dependencies between the libraries. For example, if I
have a library called Math and a library called
Geometry, I am including some Math files in my
Geometry library.
I am having major problems getting to compile targets.
I am using default settings set by xcode. I have
isolated problem to the following option:
-Wp,-header-mapfile,<some path>/<some file>.hmap
If I remove this line from the compiler option, the
code compiles just fine. Inclusion of this option
gives a numerous syntax error and parse errors, and
numerous undefined functions errors. I am including
the exact command line below.
This is all a mystery. Can anybody explain why this
happens and how to get around it?
Do you have header files in your project that happen to have identical
names to system header files? If so, Xcode may be finding the wrong
header files in its headermap cache, which would account for both the
errors and the fact that omitting the headermap causes the build to
work.
Chris Espinosa
Apple
_______________________________________________
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.