...
- Upgrade default version of
g++
onSDCC
(node.js
requires at leastg++
>= 10.1). In order to do that you can load module withGCCcore
, for examle:Code Block module load GCCcore/13.2.0
- After loading module, execute following commands:
Code Block curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.7/install.sh | bash source ~/.nvm/nvm.sh
- To view available versions of
node.js
you can run:Code Block nvm ls--remote
execute following command:
Code Block nvm install <node-version>
- To verify installation of
node.js
you can check it's version with following command:Code Block npm --version
...