This is a fork containing Microsoft's vscode
software with manually expunged telemetry, experimentation, surveys and update service.
Unlike the VSCodium project, it does not use scripts to automatically build vscode
into freely-licensed binaries with a community-driven default configuration.
This source code is available to everyone under the standard MIT license.
In order to build VSCodius, you'll need the necessary tools:
- Git
- Node.js
- Python (required for
node-gyp
) - Cargo (optional: command-line tools)
- A C/C++ compiler tool chain for your platform:
- Windows
- Install the Visual C++ Build Environment by either installing the Visual Studio Build Tools or the Visual Studio Community Edition. The minimum workload to install is "Desktop Development with C++". But there are additional components from "Individual components":
C++ x64/x86 Spectre-mitigated libs (Latest)
(useARM64
for Windows on ARM)C++ ATL for latest build tools with Spectre Mitigations
C++ MFC for latest build tools with Spectre Mitigations
- Open a command prompt and run
npm config set msvs_version [version]
. - If the Visual C++ Build Tools are installed in a non-default directory, set the following environment variable
set vs[version]_install=[path]
.
- Install the Visual C++ Build Environment by either installing the Visual Studio Build Tools or the Visual Studio Community Edition. The minimum workload to install is "Desktop Development with C++". But there are additional components from "Individual components":
- Mac OS
- XCode and the Command Line Tools, which will install
gcc
and the related toolchain containingmake
. - Run
xcode-select --install
to install the Command Line Tools.
- XCode and the Command Line Tools, which will install
- Linux
- On Debian-based Linux:
sudo apt-get install build-essential libx11-dev libxkbfile-dev libsecret-1-dev libkrb5-dev python-is-python3
. - On Red Hat-based Linux:
sudo yum groupinstall "Development Tools" && sudo yum install libX11-devel.x86_64 libxkbfile-devel.x86_64 libsecret-devel krb5-devel # or .i686
. - Others:
make
pkg-config
gcc
(or another compile toolchain)
- Building deb and rpm packages requires
fakeroot
andrpm
; run:sudo apt-get install fakeroot rpm
- On Debian-based Linux:
- Windows
Install and build all of the dependencies using npm
:
npm install
Then to build from a terminal:
npm run compile
The incremental builder will do an initial full build and will display a message that includes the phrase "Finished compilation" once the initial build is complete.
Running on Electron with extensions run in Node.js:
./scripts/code.sh
./scripts/code-cli.sh # for running CLI commands (eg --version)
Where extensions and UI run in the browser:
./scripts/code-web.sh
Where UI run in the browser but extensions run in code server (Node.js):
./scripts/code-server.sh --launch
VSCodius can be packaged for the following platforms: win32-ia32 | win32-x64 | darwin-x64 | darwin-arm64 | linux-ia32 | linux-x64 | linux-arm
.
These gulp
tasks are available:
vscode-[platform]
: Builds a packaged version for[platform]
.vscode-[platform]-min
: Builds a packaged and minified version for[platform]
.
Run gulp
via npm
to avoid potential out of memory issues, for example: npm run gulp vscode-linux-x64
The command-line tools can are optional, and can be built using cargo
, from the "cli" directory:
cargo build --release
To package for Linux, after having build both the main package and the CLI tools, run the following tasks:
# Debian...
npm run gulp vscode-linux-x64-prepare-deb
npm run gulp vscode-linux-x64-build-deb
# Red Hat...
npm run gulp vscode-linux-x64-prepare-rpm
npm run gulp vscode-linux-x64-build-rpm
# Snap...
npm run gulp vscode-linux-x64-prepare-snap
npm run gulp vscode-linux-x64-build-snap
This will output files in the ".build" sub-directory.
Note on Windows: sometimes the default ElectronJS
resources will remain on the packaged executable. In order to fix this, run the following command:
node build\win32-resources-patch.js [exe path]
This project still remain under the Microsoft Open Source Code of Conduct. For more information see the Code of Conduct FAQ or contact [email protected] with any additional questions or comments.
Copyright (c) Microsoft Corporation. All rights reserved.
Licensed under the MIT license.