mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-03-28 14:56:28 +01:00
Bug 579756: Add support for prefixed toolchain binaries in parser
The GCCBuildCOmmandParser expects the compiler tool to be exactly what's included in the pattern, i.e. a prefixed toolchain (for example "arm-none-eabi-" would not match. Contributed by STMicroelectronics Change-Id: I9e6b83509ecac9c382f565e5c7b737d12398a196 Signed-off-by: Torbjörn Svensson <torbjorn.svensson@st.com>
This commit is contained in:
parent
0dfd824c4d
commit
6ae503fb16
4 changed files with 4 additions and 4 deletions
|
@ -2,7 +2,7 @@ Manifest-Version: 1.0
|
|||
Bundle-ManifestVersion: 2
|
||||
Bundle-Name: %Bundle-Name.0
|
||||
Bundle-SymbolicName: org.eclipse.cdt.autotools.core;singleton:=true
|
||||
Bundle-Version: 2.1.201.qualifier
|
||||
Bundle-Version: 2.1.202.qualifier
|
||||
Bundle-Activator: org.eclipse.cdt.autotools.core.AutotoolsPlugin
|
||||
Bundle-Localization: plugin
|
||||
Require-Bundle: org.eclipse.ui;bundle-version="3.4.0",
|
||||
|
|
|
@ -652,7 +652,7 @@
|
|||
class="org.eclipse.cdt.managedbuilder.language.settings.providers.GCCBuildCommandParser"
|
||||
id="org.eclipse.cdt.autotools.core.LibtoolGCCBuildCommandParser"
|
||||
name="%LibtoolGCCBuildOutputParser.name"
|
||||
parameter="(libtool:\s+compile:\s+)?((g?cc)|([gc]\+\+)|(clang))"
|
||||
parameter="(libtool:\s+compile:\s+)?([^/\\\\]*)((g?cc)|([gc]\+\+)|(clang))"
|
||||
prefer-non-shared="true">
|
||||
</provider>
|
||||
</extension>
|
||||
|
|
|
@ -2,7 +2,7 @@ Manifest-Version: 1.0
|
|||
Bundle-ManifestVersion: 2
|
||||
Bundle-Name: %pluginName
|
||||
Bundle-SymbolicName: org.eclipse.cdt.managedbuilder.core; singleton:=true
|
||||
Bundle-Version: 9.3.300.qualifier
|
||||
Bundle-Version: 9.3.301.qualifier
|
||||
Bundle-Activator: org.eclipse.cdt.managedbuilder.core.ManagedBuilderCorePlugin
|
||||
Bundle-Vendor: %providerName
|
||||
Bundle-Localization: plugin
|
||||
|
|
|
@ -629,7 +629,7 @@
|
|||
class="org.eclipse.cdt.managedbuilder.language.settings.providers.GCCBuildCommandParser"
|
||||
id="org.eclipse.cdt.managedbuilder.core.GCCBuildCommandParser"
|
||||
name="%GCCBuildOutputParser.name"
|
||||
parameter="(g?cc)|([gc]\+\+)|(clang)"
|
||||
parameter="([^/\\\\]*)((g?cc)|([gc]\+\+)|(clang))"
|
||||
prefer-non-shared="true">
|
||||
</provider>
|
||||
<provider
|
||||
|
|
Loading…
Add table
Reference in a new issue