Skip to content

Commit b2d4d47

Browse files
committed
v3.14.20240115 revision
1 parent 0c0629a commit b2d4d47

File tree

3 files changed

+10
-2
lines changed

3 files changed

+10
-2
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,14 @@ All notable version changes will be recorded in this file.
66

77
***
88

9+
### [v3.14.20240115] revision
10+
11+
**New**:
12+
- `Clangd Support`: Auto generate `.clangd` config for your project. (Only for gcc/clang compiler !)
13+
- `Library Generator Support`: Add libs generator, support archive your obj files after build done.
14+
15+
***
16+
917
### [v3.14.0] update
1018

1119
**New**:

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
"homepage": "https://em-ide.com",
3939
"license": "MIT",
4040
"description": "A mcu development environment for 8051/AVR/STM8/Cortex-M/MIPS/RISC-V",
41-
"version": "3.14.0",
41+
"version": "3.14.20240115",
4242
"preview": false,
4343
"engines": {
4444
"vscode": "^1.67.0"

src/EIDEProject.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1829,7 +1829,7 @@ export abstract class AbstractProject implements CustomConfigurationProvider, Pr
18291829

18301830
genLibsMakefileContent(makefileName: string): string | undefined {
18311831

1832-
const fcfg = this.getLibsGeneratorCfgFile();
1832+
const fcfg = this.getLibsGeneratorCfgFile(true);
18331833
if (!fcfg.IsFile())
18341834
return undefined;
18351835

0 commit comments

Comments
 (0)