Unable to load terminal and extensions #7416
Unanswered
lavanyaburlagadda1807
asked this question in
General
Replies: 1 comment
-
Looks like wherever it is being ran does not have a new enough glibc. You will either need to update glibc or compile with a lower version. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
I cloned the repo and attempted to generate the release using the following commands:
`
#!/bin/bash
quilt pop -a
Exit immediately if a command exits with a non-zero status
set -e
Update git submodules
git submodule update --init
Apply quilt patches
quilt push -a
Install npm dependencies
npm install
Build vscode version
VERSION=1.0.6 npm run build:vscode
General build
VERSION=1.0.6 npm run build
Create release
npm run release
Create standalone release
npm run release:standalone
Package the project
VERSION=1.0.6 npm run package
echo "✅ All steps completed successfully."
`
However, the terminal is not working:

Additionally, I’m seeing multiple error logs in the console:

While running the build, I encountered a memory heap error. To try and resolve it, I updated the following line in lib/vscode/package.json:
"gulp": "node --max-old-space-size=8192 ./node_modules/gulp/bin/gulp.js",
with
"gulp": "node --max-old-space-size=8192 --optimize-for-size ./node_modules/gulp/bin/gulp.js",
That’s the only change I made.
Can someone please help me resolve this ASAP?
Cloned Code Server at commit - bd34cd5
VS Code's latest commit is at 18e3a1ec544e6907be1e944a94c496e302073435
Beta Was this translation helpful? Give feedback.
All reactions