-
VS Code Version:
Version: 1.54.1
Commit: f30a9b7
Date: 2021-03-04T22:45:03.974Z
Electron: 11.3.0
Chrome: 87.0.4280.141
Node.js: 12.18.3
V8: 8.7.220.31-electron.0
OS: Darwin arm64 20.2.0
-
OS Version: macOS 11.1 Big Sur
Pre-requisite:
- clang++ is installed on macOS ARM64 (or install xcode)
Steps to Reproduce:
- Create a simple cpp source file that crashes.
Example code that crashes:
#include <iostream>
int main()
{
#if __arm64
std::cout << "arm64" << std::endl;
#endif
std::cout << "test crash" << std::endl;
long *p = 0;
*p = 0xFFFFFFFF;
return 0;
}
- compile cpp source file with clang++
- run compiled executable from VS Code terminal shell zsh.
- executable should crash and crash dump should be reported under
~/Library/Logs/DiagnosticReports
Actual result:
no crash dump reported under ~/Library/Logs/DiagnosticReports
Expected result:
crash dump reported under ~/Library/Logs/DiagnosticReports
Note:
When running the sample executable from regular macOS terminal, crash dumps are reported.
Does this issue occur when all extensions are disabled?: Yes
VS Code Version:
Version: 1.54.1
Commit: f30a9b7
Date: 2021-03-04T22:45:03.974Z
Electron: 11.3.0
Chrome: 87.0.4280.141
Node.js: 12.18.3
V8: 8.7.220.31-electron.0
OS: Darwin arm64 20.2.0
OS Version: macOS 11.1 Big Sur
Pre-requisite:
Steps to Reproduce:
Example code that crashes:
~/Library/Logs/DiagnosticReportsActual result:
no crash dump reported under
~/Library/Logs/DiagnosticReportsExpected result:
crash dump reported under
~/Library/Logs/DiagnosticReportsNote:
When running the sample executable from regular macOS terminal, crash dumps are reported.
Does this issue occur when all extensions are disabled?: Yes