summaryrefslogtreecommitdiffstats
path: root/org.rtems.cdt
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2009-11-26 10:22:41 +0000
committerSebastian Huber <sebastian.huber@embedded-brains.de>2009-11-26 10:22:41 +0000
commitca62f53b70af4fc52895c6eca3a1001b6bb431b1 (patch)
tree3208618a1698018ba960a261d98758079272f65a /org.rtems.cdt
parentWorkaround for tools with a long file names under Windows and the internal bu... (diff)
downloadrtems-eclipse-plug-in-ca62f53b70af4fc52895c6eca3a1001b6bb431b1.tar.bz2
Removed workaround since the tool commands use now absolute paths.
Diffstat (limited to 'org.rtems.cdt')
-rw-r--r--org.rtems.cdt/src/org/rtems/cdt/build/RunScannerInfoProvider.java9
1 files changed, 1 insertions, 8 deletions
diff --git a/org.rtems.cdt/src/org/rtems/cdt/build/RunScannerInfoProvider.java b/org.rtems.cdt/src/org/rtems/cdt/build/RunScannerInfoProvider.java
index 6408cda..93c67fd 100644
--- a/org.rtems.cdt/src/org/rtems/cdt/build/RunScannerInfoProvider.java
+++ b/org.rtems.cdt/src/org/rtems/cdt/build/RunScannerInfoProvider.java
@@ -59,15 +59,8 @@ public class RunScannerInfoProvider extends GCCSpecsRunSIProvider {
// Change platform
Storage.changePlatform( project, getPlatform());
- /*
- * FIXME: Added absolute path since it seams that the build
- * environment is ignored.
- */
+ // Set compile command
fCompileCommand = new Path(
- Storage.getProperty( project, Constants.BASE_PATH_KEY)
- );
- fCompileCommand = fCompileCommand.append( "bin");
- fCompileCommand = fCompileCommand.append(
Storage.getProperty( project, Constants.TOOL_COMPILER_C_KEY)
);