[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
|
[news.eclipse.tools.cdt] Internal Builder failure - Linking to filesystem
|
- From: fstanley@xxxxxxxxxxxxx (Forrest)
- Date: Wed, 2 May 2007 18:18:44 +0000 (UTC)
- Newsgroups: eclipse.tools.cdt
- Organization: Eclipse
- User-agent: NewsPortal/0.36 (http://florian-amrhein.de/newsportal)
Hello,
Looking back through bugzilla, this appears to be an old bug that was
resolved, but appears to be back when using the Internal Builder available
for use in the latest CDT release.
When using standard builder, a full path is used in the build process...
Ex: g++ -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"fooo.d"
-MT"fooo.d" -o"fooo.o" "C:/eclipse3.2/eclipse/test/fooo.cpp"
(Workspace was "C:/eclipse3.2/eclipse/workspace/")
However, when using the internal builder, a relative path is used in the
build process. This relative path always assumes that the base in the
project directory. Ex: (Same as above, but switched to Internal Builder)
g++ -O0 -g3 -Wall -c -fmessage-length=0 -ofooo.o ..\fooo.cpp
Anyone else able to duplicate this?