XCode 3.0, external targets, recursive makefile, detecting directory changes
XCode 3.0, external targets, recursive makefile, detecting directory changes
- Subject: XCode 3.0, external targets, recursive makefile, detecting directory changes
- From: Alex Bligh <email@hidden>
- Date: Sat, 24 Nov 2007 00:18:08 +0000
I am trying to get an external target to work with XCode 3.0. The
external target has a makefile generated using automake/autoconf/configure
etc (standard unix) which is recursive. The target is built "out of tree"
so to build it at the CLI I would do (e.g.)
$ ( cd debug ; ../configure ; make )
When building in XCode 3.0, I set "debug" as the target directory, and
it correctly cd's to that directory, then executes make. However, the
problem is parsing filenames in standard output. XCode 3.0 unlike 2.5
correctly interprets the someone arcane compiler lines used by
automake/autoconf to process dependency output (hurray!) but clicking
on errors or warnings does not work. This appears to be because the
stdout parser does not spot the lines "Making all in somedir" and
realize that a reference to "../../thisdir/thisfile.cpp" needs to be
translated to "../thisdir/thisfile.cpp" when referencing relative to
builddir (at least I am presuming this is what the problem is).
kdevelop copes with this fine.
I am an XCode newbie; any ideas on how I can fix this?
Alex
_______________________________________________
Do not post admin requests to the list. They will be ignored.
Xcode-users mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden