Skip to content

Commit cf1460b

Browse files
committed
undo getInternalDefines function for armcc
1 parent 75d2771 commit cf1460b

3 files changed

Lines changed: 8 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,13 @@
44

55
***
66

7-
### [v3.5.2]
7+
### [v3.5.3]
88

99
**Fixed**:
1010
- Duplicated include path items: `.eide/deps` in project.
1111
- Can not parse old version `JLinkDevices.xml`.
1212

1313
**Optimized**:
14-
- Auto provide internal macros for `armcc` compiler by `--list_macros` command.
1514
- Optimize cpptools config provider for `gcc` family compilers.
1615

1716
***

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
"homepage": "https://github.com/github0null/eide/blob/master/README.md",
3333
"license": "MIT",
3434
"description": "A mcu development environment for 8051/AVR/STM8/Cortex-M/RISC-V",
35-
"version": "3.5.2",
35+
"version": "3.5.3",
3636
"preview": false,
3737
"engines": {
3838
"vscode": "^1.63.0"

src/ToolchainManager.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1088,6 +1088,12 @@ class AC5 implements IToolchian {
10881088
//
10891089
getInternalDefines<T extends BuilderConfigData>(builderCfg: T, builderOpts: ICompileOptions): string[] {
10901090

1091+
return [];
1092+
1093+
//
1094+
// 暂时禁用,c/c++ 插件暂时无法解析某些宏定义
1095+
//
1096+
10911097
const cpuMap: { [key: string]: string } = {
10921098
"cortex-m0": "Cortex-M0",
10931099
"cortex-m0+": "Cortex-M0+",

0 commit comments

Comments
 (0)