ac_add_options --enable-application=browser ac_add_options --enable-optimize="-Os -g0" #without bootstrap, we have to disable webassembly. tinycore clang dont support wasi #llc --version (expected: wasm32 - WebAssembly) #bootstrap is disabled for better control (it still compiles to /lib64. may consider using bootstrap afterall). #also many --with-system options dont work with bootstrap #this also forced me to push a updated to libvpx on the repo (minimum needed was version 1.10 but the repo available was 1.8) ac_add_options --without-wasm-sandboxed-libraries ac_add_options --enable-lto ac_add_options --disable-nodejs ac_add_options --disable-webspeech ac_add_options --disable-webrtc #for some reason, --disable-dbus is ignored. sad ac_add_options --disable-dbus ac_add_options --disable-necko-wifi ac_add_options --enable-strip ac_add_options --allow-addon-sideload ac_add_options --disable-crashreporter ac_add_options --disable-debug ac_add_options --disable-default-browser-agent ac_add_options --disable-tests ac_add_options --disable-updater ac_add_options --enable-alsa ac_add_options --enable-hardening ac_add_options --enable-jxl ac_add_options --enable-release ac_add_options --disable-rust-simd ac_add_options --enable-ffmpeg ac_add_options --disable-parental-controls ac_add_options --disable-debug-symbols ac_add_options --disable-accessibility ac_add_options --prefix=/usr/local ac_add_options --with-system-zlib ac_add_options --with-system-png ac_add_options --with-system-jpeg ac_add_options --with-system-libvpx #system-nss is causing errors on compilation #ac_add_options --with-system-nss ac_add_options --with-system-nspr ac_add_options --with-system-libevent ac_add_options --with-system-ffi ac_add_options --with-app-name=librewolf ac_add_options --with-branding=browser/branding/librewolf ac_add_options --with-unsigned-addon-scopes=app,system #ac_add_options --with-l10n-base=$PWD/browser/locales/l10n #ac_add_options --enable-bootstrap ac_add_options --disable-bootstrap export MOZ_REQUIRE_SIGNING= mk_add_options MOZ_CRASHREPORTER=0 mk_add_options MOZ_DATA_REPORTING=0 mk_add_options MOZ_SERVICES_HEALTHREPORT=0 mk_add_options MOZ_TELEMETRY_REPORTING=0 # Add your own stuff, libraries, architecture, etc.. # ex: `cat mozconfig.orig mozconfig.my > mozconfig`