Skip to content

Commit c9dbf46

Browse files
authored
Merge pull request #340 from github0null/dev
v3.17.1 revision
2 parents 4a7f3e9 + 14dee9e commit c9dbf46

12 files changed

+52
-16
lines changed

CHANGELOG.md

+10
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,16 @@ All notable version changes will be recorded in this file.
66

77
***
88

9+
### [v3.17.1] revision
10+
11+
**Fix**:
12+
- `Permission Error`: Fix Permission Denied when execute unify_builder on Unix-like system.
13+
14+
**Optimize**
15+
- `Armcc Memory Print`: Optimize ARMCC map memory information print.
16+
17+
***
18+
919
### [v3.17.0] update
1020

1121
**New**:

package.json

+1-1
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.17.0",
41+
"version": "3.17.1",
4242
"preview": false,
4343
"engines": {
4444
"vscode": "^1.67.0"

res/tools/darwin/unify_builder/arm64/unify_builder.deps.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"targets": {
88
".NETCoreApp,Version=v6.0": {},
99
".NETCoreApp,Version=v6.0/osx-arm64": {
10-
"unify_builder/3.7.2": {
10+
"unify_builder/3.7.3": {
1111
"dependencies": {
1212
"CommandLineParser": "2.9.1",
1313
"ConsoleTableExt": "3.1.9",
@@ -60,7 +60,7 @@
6060
}
6161
},
6262
"libraries": {
63-
"unify_builder/3.7.2": {
63+
"unify_builder/3.7.3": {
6464
"type": "project",
6565
"serviceable": false,
6666
"sha512": ""
Binary file not shown.

res/tools/darwin/unify_builder/x86_64/unify_builder.deps.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"targets": {
88
".NETCoreApp,Version=v6.0": {},
99
".NETCoreApp,Version=v6.0/osx-x64": {
10-
"unify_builder/3.7.2": {
10+
"unify_builder/3.7.3": {
1111
"dependencies": {
1212
"CommandLineParser": "2.9.1",
1313
"ConsoleTableExt": "3.1.9",
@@ -60,7 +60,7 @@
6060
}
6161
},
6262
"libraries": {
63-
"unify_builder/3.7.2": {
63+
"unify_builder/3.7.3": {
6464
"type": "project",
6565
"serviceable": false,
6666
"sha512": ""
Binary file not shown.

res/tools/linux/unify_builder/unify_builder.deps.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"targets": {
88
".NETCoreApp,Version=v6.0": {},
99
".NETCoreApp,Version=v6.0/linux-x64": {
10-
"unify_builder/3.7.2": {
10+
"unify_builder/3.7.3": {
1111
"dependencies": {
1212
"CommandLineParser": "2.9.1",
1313
"ConsoleTableExt": "3.1.9",
@@ -60,7 +60,7 @@
6060
}
6161
},
6262
"libraries": {
63-
"unify_builder/3.7.2": {
63+
"unify_builder/3.7.3": {
6464
"type": "project",
6565
"serviceable": false,
6666
"sha512": ""
512 Bytes
Binary file not shown.

res/tools/win32/unify_builder/unify_builder.deps.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"targets": {
88
".NETCoreApp,Version=v6.0": {},
99
".NETCoreApp,Version=v6.0/win-x64": {
10-
"unify_builder/3.7.2": {
10+
"unify_builder/3.7.3": {
1111
"dependencies": {
1212
"CommandLineParser": "2.9.1",
1313
"ConsoleTableExt": "3.1.9",
@@ -60,7 +60,7 @@
6060
}
6161
},
6262
"libraries": {
63-
"unify_builder/3.7.2": {
63+
"unify_builder/3.7.3": {
6464
"type": "project",
6565
"serviceable": false,
6666
"sha512": ""
512 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.

src/extension.ts

+33-7
Original file line numberDiff line numberDiff line change
@@ -697,8 +697,7 @@ function onBinariesInstallDone() {
697697
// get exe file list from folders
698698
for (const dir of [
699699
File.fromArray([resManager.GetBinDir().path, 'scripts']),
700-
File.fromArray([resManager.getLegacyBuilderDir().path, 'utils']),
701-
File.fromArray([resManager.getUnifyBuilderExe().dir])
700+
File.fromArray([resManager.getLegacyBuilderDir().path, 'utils'])
702701
]) {
703702
dir.GetList(undefined, File.EXCLUDE_ALL_FILTER)
704703
.forEach((f) => {
@@ -708,12 +707,17 @@ function onBinariesInstallDone() {
708707
});
709708
}
710709

710+
if (exeLi.length > 0)
711+
GlobalEvent.emit('globalLog.append', 'Setup binaries permissions -> ' + os.EOL);
712+
711713
for (const path of exeLi) {
712714
try {
713-
ChildProcess.execSync(`chmod +x "${path}"`);
714-
GlobalEvent.emit('globalLog', newMessage('Info', `chmod +x "${path}"`));
715+
const cmd = `chmod +x "${path}"`;
716+
GlobalEvent.emit('globalLog.append', cmd + os.EOL);
717+
ChildProcess.execSync(cmd);
715718
} catch (error) {
716719
GlobalEvent.emit('globalLog', ExceptionToMessage(error, 'Error'));
720+
GlobalEvent.emit('globalLog.show');
717721
}
718722
}
719723
}
@@ -1018,12 +1022,34 @@ async function InitComponents(context: vscode.ExtensionContext): Promise<boolean
10181022

10191023
LogDumper.getInstance();
10201024

1021-
// chmod +x for 7za
1025+
// set exec permission for built-in tools
10221026
if (os.platform() != 'win32') {
1027+
1028+
const exelist: string[] = [
1029+
resManager.Get7za().path,
1030+
];
1031+
1032+
new File(resManager.getUnifyBuilderExe().dir)
1033+
.GetList(undefined, File.EXCLUDE_ALL_FILTER)
1034+
.forEach((f) => {
1035+
if (!f.suffix) { // nosuffix file is an exe file
1036+
exelist.push(f.path);
1037+
}
1038+
});
1039+
10231040
try {
1024-
ChildProcess.execSync(`chmod +x "${resManager.Get7za().path}"`);
1041+
for (const exePath of exelist) {
1042+
try {
1043+
fs.accessSync(exePath, fs.constants.R_OK | fs.constants.X_OK);
1044+
} catch (error) {
1045+
const cmd = `chmod +x "${exePath}"`;
1046+
GlobalEvent.emit('globalLog.append', cmd + os.EOL);
1047+
ChildProcess.execSync(cmd);
1048+
}
1049+
}
10251050
} catch (error) {
1026-
GlobalEvent.emit('msg', ExceptionToMessage(error, 'Error'));
1051+
GlobalEvent.emit('globalLog', ExceptionToMessage(error, 'Error'));
1052+
GlobalEvent.emit('globalLog.show');
10271053
}
10281054
}
10291055

0 commit comments

Comments
 (0)