Skip to content

Commit

Permalink
9.4.7
Browse files Browse the repository at this point in the history
  • Loading branch information
franneck94 committed Jan 20, 2024
1 parent 2d2e7a1 commit bca9c8b
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,16 @@
# C/C++ Runner Change Log

## Version 9.4.7: Jan 20, 2024

- **Info**: Another bugfix for system architecture validation

## Version 9.4.6: Jan 20, 2024

- **Info**: Bugfix for system architecture validation

## Version 9.4.5: Jan 19, 2024

- **Info**: Hotfix for lldb debugger selection in launch.json file
- **Info**: Another hotfix for lldb debugger selection in launch.json file

## Version 9.4.4: Jan 19, 2024

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "c-cpp-runner",
"displayName": "C/C++ Runner",
"description": "🚀 Compile, run and debug single or multiple C/C++ files with ease. 🚀",
"version": "9.4.6",
"version": "9.4.7",
"publisher": "franneck94",
"license": "MIT",
"icon": "icon.png",
Expand Down
5 changes: 4 additions & 1 deletion src/utils/systemUtils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,10 @@ export function getCompilerArchitecture(compiler: string) {
let architecture = Architectures.x64;
let isCygwin = false;

if (str.toLowerCase().includes('arm')) {
if (
str.toLowerCase().includes('arm') ||
str.toLowerCase().includes('aarch')
) {
architecture = Architectures.ARM64;
} else if (str.includes('64')) {
architecture = Architectures.x64;
Expand Down

0 comments on commit bca9c8b

Please sign in to comment.