Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDoug Schaefer2010-12-08 21:46:13 +0000
committerDoug Schaefer2010-12-08 21:46:13 +0000
commitc42dcb755b87e4da1018f24e9fe3ef6b3bde8a43 (patch)
tree81ed814bc05dec72118e414368daacb217a89783 /windows
parent4080c880f12c16a42d0098eeb4232c6dd95ada20 (diff)
downloadorg.eclipse.cdt-c42dcb755b87e4da1018f24e9fe3ef6b3bde8a43.tar.gz
org.eclipse.cdt-c42dcb755b87e4da1018f24e9fe3ef6b3bde8a43.tar.xz
org.eclipse.cdt-c42dcb755b87e4da1018f24e9fe3ef6b3bde8a43.zip
Fixed up the command line pattern since someone changed the default for spaces between the output flag and the output.
Diffstat (limited to 'windows')
-rw-r--r--windows/org.eclipse.cdt.msw.build/plugin.xml7
1 files changed, 4 insertions, 3 deletions
diff --git a/windows/org.eclipse.cdt.msw.build/plugin.xml b/windows/org.eclipse.cdt.msw.build/plugin.xml
index 982f0a87212..c64ee3c012a 100644
--- a/windows/org.eclipse.cdt.msw.build/plugin.xml
+++ b/windows/org.eclipse.cdt.msw.build/plugin.xml
@@ -25,11 +25,12 @@
</builder>
<tool
command="cl /c"
+ commandLinePattern="${COMMAND} ${FLAGS} ${OUTPUT_FLAG}${OUTPUT_PREFIX}${OUTPUT} ${INPUTS}"
errorParsers="org.eclipse.cdt.core.VCErrorParser"
id="org.eclipse.cdt.msvc.cl"
name="%compiler.name"
natureFilter="both"
- outputFlag="/Fo">
+ outputFlag="/Fo:">
<supportedProperties>
<property
id="org.eclipse.cdt.build.core.buildType">
@@ -314,12 +315,12 @@
</tool>
<tool
command="link"
+ commandLinePattern="${COMMAND} ${FLAGS} ${OUTPUT_FLAG}${OUTPUT_PREFIX}${OUTPUT} ${INPUTS}"
errorParsers="org.eclipse.cdt.core.VCErrorParser"
id="org.eclipse.cdt.msvc.link"
name="%linker.name"
natureFilter="both"
- outputFlag="/OUT:"
- >
+ outputFlag="/OUT:">
<supportedProperties>
<property
id="org.eclipse.cdt.build.core.buildArtefactType">

Back to the top