#
Building in CLI
Warning
Camoufox's build system is designed to be used in Linux. WSL will not work!
First, clone this repository with Git:
git clone --depth 1 https://github.com/daijro/camoufox
cd camoufox
Next, build the Camoufox source code with the following command:
make dir
After that, you have to bootstrap your system to be able to build Camoufox. You only have to do this one time. It is done by running the following command:
make bootstrap
Finally you can build and package Camoufox the following command:
python3 multibuild.py --target linux windows macos --arch x86_64 arm64 i686
Options:
-h, --help show this help message and exit
--target {linux,windows,macos} [{linux,windows,macos} ...]
Target platforms to build
--arch {x86_64,arm64,i686} [{x86_64,arm64,i686} ...]
Target architectures to build for each platform
--bootstrap Bootstrap the build system
--clean Clean the build directory before starting
Example:
$ python3 multibuild.py --target linux windows macos --arch x86_64 arm64