GCC trunk build is broken, and has been since 7th January. Investigating. godbolt.org/admin/logs/gcc has logs.
Any binutils folks able to shed light, seems to be libdecnumber.a failing with "ar: no operation specified"
Seemingly an issue building with `--plugin`. Earlier `ar` invocations succeed, but ones involving LTO/`--plugin` fail, for no reason I can see. The `configure` thinks `--plugin` is ok (and it seems to be ok to me) -mg
Seems a false alarm. We did have a spike in response time (>4s 90%ile), but that might be one or two folks compiling big things with not many other things. Some other stats that bumped at the time were "just" us being crawled by bing :) All ok -mg
LLVM started 20 years ago today! From humble beginnings at UIUC, it has grown to include contributions from hundreds of people and powers countless products and impactful languages. How have you used LLVM, contributed to it, or been touched by a product using it? #CelebrateLLVM
One sweet day I'll get some help to make some of this information available publically! Until then, here's an average Wednesday afternoon (CT) on @CompileExplore
Yes; msvc likes to emit code for every function, even those from headers that are otherwise unused. Our filter assumes all functions output are "interesting", and follows symbols from there. We need to do extra work to guess which functions are interesting yet. Help welcomed! -mg