Hi. nope same issue in
121.0.6115.2
trying without cflags/cxxflags :/
for the record. systemwide use:
#########################################################################
# ARCHITECTURE, COMPILE FLAGS
#########################################################################
#
CARCH="x86_64"
CHOST="x86_64-pc-linux-gnu"
#-- Compiler and Linker Flags
#CPPFLAGS=""
#CFLAGS="-march=x86-64 -mtune=generic -O2 -pipe -fno-plt -fexceptions \
CFLAGS="-march=native -O2 -pipe -fno-plt -fexceptions \
-Wp,-D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security \
-fstack-clash-protection -fcf-protection"
CXXFLAGS="$CFLAGS -Wp,-D_GLIBCXX_ASSERTIONS"
LDFLAGS="-Wl,-O1,--sort-common,--as-needed,-z,relro,-z,now"
LTOFLAGS="-flto=auto"
#RUSTFLAGS="-C opt-level=2"
#-- Make Flags: change this for DistCC/SMP systems
#MAKEFLAGS="-j2"
MAKEFLAGS="-j48"
#-- Debugging flags
DEBUG_CFLAGS="-g"
DEBUG_CXXFLAGS="$DEBUG_CFLAGS"
#DEBUG_RUSTFLAGS="-C debuginfo=2"
and chromium:
# Facilitate deterministic builds (taken from build/config/compiler/BUILD.gn).
CFLAGS+=' -Wno-builtin-macro-redefined'
CXXFLAGS+=' -Wno-builtin-macro-redefined'
CPPFLAGS+=' -D__DATE__= -D__TIME__= -D__TIMESTAMP__='
# Let Chromium set its own symbol level
CFLAGS=${CFLAGS/-g }
CXXFLAGS=${CXXFLAGS/-g }
#
https://github.com/ungoogled-software/ungoogled-chromium-archlinux/issues/123CFLAGS=${CFLAGS/-fexceptions}
CFLAGS=${CFLAGS/-fcf-protection}
CXXFLAGS=${CXXFLAGS/-fexceptions}
CXXFLAGS=${CXXFLAGS/-fcf-protection}
# This appears to cause random segfaults when combined with ThinLTO
#
https://bugs.archlinux.org/task/73518CFLAGS=${CFLAGS/-fstack-clash-protection}
CXXFLAGS=${CXXFLAGS/-fstack-clash-protection}
#
https://crbug.com/957519#c122CXXFLAGS=${CXXFLAGS/-Wp,-D_GLIBCXX_ASSERTIONS}
# Seems bundled clang don't like Debug flag -fvar-tracking-assignments.
DEBUG_CFLAGS=${DEBUG_CFLAGS/-fvar-tracking-assignments}
DEBUG_CXXFLAGS=${DEBUG_CXXFLAGS/-fvar-tracking-assignments}
gn settings:
use_gtk=false use_gio=false enable_remoting=false use_qt=true use_qt6=false moc_qt5_path="/usr/bin" custom_toolchain="//build/toolchain/linux/unbundle:default" host_toolchain="//build/toolchain/linux/unbundle:default" is_debug=false symbol_level=0 is_official_build=false chrome_pgo_phase=0 is_component_build=true enable_widevine=true enable_hangout_services_extension=true ffmpeg_branding="ChromeOS" proprietary_codecs=true google_api_key="AIzaSyDwr302FpOSkGRpLlUpPThNTDPbXcIn_FM" disable_fieldtrial_testing_config=true blink_enable_generated_code_formatting=false blink_symbol_level=0 use_cups=true use_kerberos=true use_pulseaudio=true link_pulseaudio=true use_vaapi=true rtc_use_pipewire=true rtc_link_pipewire=true use_dbus=true use_sysroot=false use_gold=false treat_warnings_as_errors=false enable_nacl=true use_custom_libcxx=true enable_platform_hevc=true enable_platform_ac3_eac3_audio=true enable_platform_mpeg_h_audio=true enable_platform_dolby_vision=true enable_mse_mpeg2ts_stream_parser=true is_clang=true clang_use_chrome_plugins=false enable_pseudolocales=false dcheck_always_on=false dcheck_is_configurable=false use_system_harfbuzz=true use_system_freetype=false use_system_lcms2=true use_system_libpng=true use_system_libsync=false use_system_libopenjpeg2=true use_system_libffi=true v8_use_libm_trig_functions=true angle_link_glx=true angle_enable_gl_desktop_frontend=true angle_enable_swiftshader=false angle_use_custom_libvulkan=false enable_swiftshader=false enable_swiftshader_vulkan=false dawn_use_swiftshader=false
greetings