Skip to content

Instantly share code, notes, and snippets.

@pragmasoft-ua
Last active June 9, 2023 10:10
Show Gist options
  • Save pragmasoft-ua/14e311812f511be190956cab762421c6 to your computer and use it in GitHub Desktop.
Save pragmasoft-ua/14e311812f511be190956cab762421c6 to your computer and use it in GitHub Desktop.
Graalvm native compilation: Open VSCode settings, search terminal.integrated.profiles.windows, add the following to allow native build tools shell
"x64 Native Tools VS 2019": {
"path": [
"${env:windir}\\Sysnative\\cmd.exe",
"${env:windir}\\System32\\cmd.exe"
],
"args": [
"/d",
"/k",
"C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\BuildTools\\VC\\Auxiliary\\Build\\vcvars64.bat",
"amd64"
],
"icon": "terminal-cmd"
},
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment