@@ -, +, @@ --- configure.py | 3 +++ 1 file changed, 3 insertions(+) --- a/configure.py +++ a/configure.py @@ -1313,6 +1313,9 @@ def configure_node(o): raise Exception( 'The pgo option is supported only on linux.') + if gcc_version_ge((13,1,0)): + o['cflags'] += ['-fno-ipa-icf'] + if flavor == 'linux': if options.enable_pgo_generate or options.enable_pgo_use: version_checked = (5, 4, 1) --