|
|
|
|
|
by funkychicken
871 days ago
|
|
I just helped a coworker get his remote vscode working on RHEL7. If you compile glibc from source and install it in some local directory, you can run patchelf —set-interpreter —set-path on ~/.vscode-server/bin/*/node and write to a special “skip requirements file” touch /tmp/vscode-skip-server-requirements-check patchelf --set-interpreter /opt/glibc/lib/ld-linux-x86-64.so.2 --set-rpath /opt/glibc/lib:/opt/glibc/lib64 ~/.vscode-server/bin/*/node
Warning: you’ll need gmake and all the gnu tools for building, make sure to ../configure with —disable-werror |
|