Adhemerval Zanella @adhemerval
Joined October 2020-
Tweets198
-
Followers97
-
Following305
-
Likes12K
@mu_chrinovic Unfortunately there is a reason glibc needs do use double underscore names for internal and some external symbols.
GNU Tools Weekly News Week 24 (February 8, 2026) Release updates for GNU toolchain: * binutils 2.46 was released * inbox.sourceware.org/binutils/87fr7… * gcc 16.0 regression status * P1: 29 * P1+P2+P3 total: 860 General/big GNU toolchain news: * GCC easy issue to tackle of the week: * New feature this week, This is a highlight of one bug report that would be a good issue for someone new to GCC to fix * If others want to sponsor an issue please let me know and I can add that one for the week (gdb, binutils and glibc issues welcome too) * lower mempcpy to memcpy when result is unused * gcc.gnu.org/bugzilla/show_… * Reach out to Andrew Pinski for mentoring on this issue GCC commits: * note most of the commits from now until the release are bug fixes which have not been listed here normally * doc: Move parameter docs to the GCC internals manual * Removal of CONST_CAST and related macros (C++ification cleanup) GCC discussion: * GCC bugzilla stats * 118 new issues filed * 136 issues closed glibc commits: * math: Order signed zeros in f{max,min}{,mag}{f,l,f128} * math: Optimize f{max,min}imum{,_num,_mag,_mag_num}{f,l,f128} * AArch64: Optimize memcpy for Kunpeng 950 processor * AArch64: Add if('fastmath') to math-vector-fortran.h binutils/gdb commits: * PowerPC: Support for Elliptic Curve Cryptography Instructions (RFC02669) * [gold] Note gold and dwp deprecation in NEWS * bpf: add may_goto instruction
The GNU C Library version 2.43 Released. ISO C23 Features. Linux mseal. Additional optimized and correctly rounded mathematical functions. Experimental Clang build support. AArch64 improvements. sourceware.org/pipermail/libc…
@spendergrsec @seanhn Are any of these applicable to upstream glibc or are PAX specific ? I would be interested to take a look if possible.
@spendergrsec @seanhn No afaik, I finally have added llvm build support on next 2.43 release and plan to check on enable its CFI support.
@itanium_guy Another problem is afaik DWARF unwinders are inherent slower than a SEH one (need to mmap and parse extra metadata).
@itanium_guy On glibc we can just force libgcc_s.so loading at startup, it would make async-signal in theory (old libgcc still calls malloc on unwind, but it was fixed a long time agora afaik). But you will still the have de extra runtime cost and semantic change.
@itanium_guy The pthread_cancel/pthread_exit C++unwind integration is a glibc extension; afaik other C runtimes do not implement it (musl, BSD).
@itanium_guy I would say not many in the C world where Linux/glibc was initially envisioned. On Windows you have SEH and C extensions where exceptions where designed as system primitive, which is not the case for Linux/glibc.
@itanium_guy And this semantic will be a versioned symbol (to avoid breaking programs that do not expect it), which add more maintanance and complexity. It think you might bring this up on glibc, but I think is unlikely other maintainer will want to change it.
@itanium_guy This would require to dlopen libgcc_s.so, similar to what pthread_cancel do; which would change the function to be not be async-signal-safe. It would also add some overhead on most of users that do not require it.
The entire world is running out of RAM and for once it’s not @googlechrome’s fault. 🙏
GNU Tools Weekly News Week 15 (December 7, 2025) Release updates for GNU toolchain: * GDB 17.1 release next weekend (Sat-Sun Dec 13-14) * inbox.sourceware.org/gdb-patches/aT… * glibc 2.43 release planning * inbox.sourceware.org/libc-alpha/f8f… * sourceware.org/glibc/wiki/Rel… General/big GNU toolchain news: * The GCC Steering Committee has a wiki page detailing their mission and current requests are listed ** gcc.gnu.org/wiki/gcc-steer… * What’s New in Oracle Solaris 11.4 SRU 87 ** GCC 15 included now ** blogs.oracle.com/solaris/whats-… GCC commits: * Fixes for aarch64 mingw support (long double and varargs) * MIPS: add support for mips allegrex cores * GCC rust: 12 patch sync * Ada: 7 patch sync * Sync libsanitizer from upstream * amdgcn: Implement Managed Memory * libstdc++: implement P3044R2 * libstdc++: Convertibility of rank == 0 layouts, LWG4272. * libstdc++: Implement P2655R3 * Add -ffuse-ops-with-volatile-access (enabled for x86 by default) * OpenMP: C/C++ parser support for dyn_groupprivate ** Fortran support was earlier GCC discussion: * injected class name vs. constructor reference (with templates) ** inbox.sourceware.org/gcc/280584618.… * "A: a new bug to old plain C" ** inbox.sourceware.org/gcc/CAKBShRQUB… * Bug in identical code folding? ** inbox.sourceware.org/gcc/aa96c8d9-e… * Question about ifcvt optimization * inbox.sourceware.org/gcc/CAPt2h2Ygx… GCC bugzilla stats * 113 new issues filed * 79 issues closed glibc commits: * aarch64: Optimise AdvSIMD log1pf, logf, log2f, log10f, log1p, log, log2, log10 * aarch64: Optimise AdvSIMD acoshf, asinhf, atanhf * aarch64: Implement AdvSIMD and SVE rsqrt(f) routines glibc discussion: * Deprecation of s390-32 in glibc * inbox.sourceware.org/libc-alpha/b1d… binutils/gdb commits: * gdb/guile: remove support for Guile < 2.2 * Add AMD znver6 processor support
GNU Tools Weekly News Week 14 (November 30, 2025) Release updates for GNU toolchain: * GDB 17.1 release update -- 2025-11-29 * inbox.sourceware.org/gdb-patches/aS… General/big GNU toolchain news: * The GCC Steering Committee has a wiki page detailing their mission and current requests are listed ** gcc.gnu.org/wiki/gcc-steer… * Reminder: GCC (GNU Toolchain) dev room at FOSDEM 2026, January 31-Februrary 1, Brussels, Belgium - Calls for proposals ** The deadline is tomorrow December 1, 2025 ** inbox.sourceware.org/gcc/87jyzizitk… * GDB: Christina Schimpe added as a x86-64 and i386 maintainer * Office Hours for the GNU Toolchain was held Thursday 2025-11-27 * Notes can be found at gcc.gnu.org/wiki/OfficeHou… * Next office hours is 2025-12-18 @ 1100h EST5EDT * Sourceware HW service migration successfully happened Friday 2025-11-28 * Please report if you notice anything wrong to [email protected] * The Algol 68 front-end for GCC was merged in * GCC's C++ front-end now defaults to C++20 if not supplied a -std= option GCC commits: * The Algol 68 front-end * Change the default C++ dialect to gnu++20 * c: Add _Maxof and _Minof operators * New g++ option --compile-std-module to compile the std module without any extra invocation of gcc * RISC-V profiles support was removed from GCC 16 due to issues * aarch64: Enable parsing of user-provided AArch64 CPU tuning parameters * aarch64: Better code generation for SVE/Adv. SIMD early break vectorization * libstdc++: Implement LWG 4366 for std::expected comparisons * libstdc++: Implement LWG 4370 for std::optional comparisons * gccrs: 12 commit sync * ada: 15 commit sync * RISC-V: Add Andes 23 and 45 series pipeline descriptions * RISC-V: Add SpacemiT extension xsmtvdot GCC discussion: * decimal floating point ** Moved from glibc discussion * inbox.sourceware.org/gcc/CAH6eHdRpX… * Refining _DEFAULT_SOURCE and _GNU_SOURCE ** Also glibc discussion * inbox.sourceware.org/gcc/8926a67d-1… GCC bugzilla stats * 113 new issues filed * 97 issues closed glibc commits: * math: New generic fmaf and fma implementation ** related to last week's `Remove ldbl-96 fma implementation` commit ** Also see zatrazz.substack.com/p/the-recent-g… * math: Sync atanh from CORE-MATH * Define C23 header version macros * stdlib: Remove longlong.h (usage and header) glibc discussion: * See gcc discussion too * glibc SFrame support for newer versions * inbox.sourceware.org/libc-alpha/lhu… * Is hppa64-linux-gnu an supported target? * inbox.sourceware.org/libc-alpha/CAM… binutils/gdb commits: * Obsolete support for Solaris < 10 gdb discussion: * What bugs/issues should I work on? * inbox.sourceware.org/gdb/CAB9PnCrXQ…
It seems some forum commenters got confused about the glibc's fma optimization from Phoronix article, let try to explain it better zatrazz.substack.com/p/the-recent-g…
Fangruin raises valid concerns about the SFrame design that creators unfortunately have not acknowledged yet. We reluctantly added this on glibc (it was added near the release) and I wonder if we should wait more.
Started a thread "Concerns about SFrame viability for userspace stack walking" lore.kernel.org/linux-perf-use… To: linux-toolchains, linux-perf-users, linux-kernel
Not so obvious I must say, but it is still interesting - zatrazz.substack.com/p/not-so-obvio…
Quick skill check. If you want to call yourself a Software Engineer, This code snippet should be obvious to you.
GNU Tools Weekly News Update Week 9 (October 26, 2025)
General/big GNU toolchain news:
* Valgrind 3.26.0 released
* Stabs debugging info support was removed from GDB
GCC discussion:
* Contributing the Algol 68 Front-End to GCC
** inbox.sourceware.org/gcc/87zf9kov10…
* Do people find the "Option Summary" in the GCC manual useful?
** inbox.sourceware.org/gcc/e9a10fd7-4…
GCC commits:
* C2y: Implement static assertions in expressions
* C2y: Allow unspecified arrays in generic association.
* Simplification of vec_perm chains implementing concat-and-extract
** Improves SIMDe code generation for non-x86 targets
* Simplification pattern of round semantics
** Improves SPEC 2017's 538.imagick_r by ~3%
* C++23: Implement P2674R1 - A trait for implicit lifetime types
* Implement bool reduction vectorization
** x86_64 and aarch64 (both SIMD and SVE)
* libstdc++: Implement optional
RISC-V BE support ... "Just because you can, doesn’t mean you should”
Chrinovic Mukanya @mu_chrinovic
11K Followers 504 Following Amateur Computer Architect . software/hardware co-design. Supporter of Denormals-Are-Zero
Igor Skokov @Lagrang10
27 Followers 825 Following
Bioinfhotep @pp0196
1K Followers 2K Following Sequences and consequences. @pp0196.bsky.social @[email protected]
Felipe O. Carvalho @_Felipe
5K Followers 2K Following @ApacheArrow / Databases / Compilers. (past @SDFLabs, VoDa, @Spotify). Rust/C++/TLA⁺🇧🇷 → 🇸🇪 → 🌎 https://t.co/vxbdByfADI
Shreeyash Pandey @b0jle
249 Followers 1K Following systems engineer, ml compilers, FPGAs, EDA, GPUs and fun
Corentin Kérisit @corentinanjuna
2K Followers 394 Following I work on toolchains and build engineering, mostly for the ML ecosystem. Focusing on @zml_ai. Formerly @zenly (eng) @amoamoamo (eng) and @anjunadeep (music).
tetsuo.cpp (no slop) @tetsuo_cpp
2K Followers 2K Following Not affiliated with *that* tetsuo. Building compilers for ML hardware. Senior Staff Supreme Engineer. The secret 3rd co-author of the Pi coding agent.
Dan "18pF flip-flop" @dcominottim
2K Followers 6K Following Passionate about computer HW and SW design & architecture. Walking the Way of the Fool.
Georgeee @GeorgeeeOs
62 Followers 2K Following
Israel Junior @israeljrs
689 Followers 3K Following Husband, father, DevOps, Open Source Enthusiast, Software Engineer, coding in #c / #cpp / #javascript / #python / #golang / #rust and Fan of #vim.
Anderson Nascimento @andersonc0d3
4K Followers 6K Following Director & Security Researcher @alleleintel
ponzi @ponziprogrammer
667 Followers 2K Following
Anton Blanchard @antonblanchard
847 Followers 177 Following Fellow @tenstorrent. Opinions are my own.
aeesz4 @aepau2
78 Followers 566 Following
Iteriteka Guy Fleury @guy_fleury86747
1 Followers 36 Following
Solar Designer @solardiz
13K Followers 1K Following @Openwall founder, @oss_security maintainer, @lkrg_org co-author, @CtrlIQ Linux security engineer. RTs don't imply agreement with points of view.
Diego Fernandez @diegofer_2011
20 Followers 435 Following
Saulius Krasuckas @sskras
832 Followers 2K Following I might get pro so-called-conspiracy-theories at frequent times so you might get annoyed by that. Otherwise I like *NIX, VMS + lower levels of the tech.Eduardo Lima @etrunko
279 Followers 249 Following
Nataw @NatawnqOpG1
160 Followers 4K Following
Maxim Kuvyrkov @maximkuv
28 Followers 57 Following
Serban Constantinescu @serbancon
135 Followers 1K Following https://t.co/hkrfOse6lp, x-google, x-arm
Rainbow Strawberry @debychintiya74
130 Followers 3K Following "Nothing is impossible, the word itself says, ‘I'm possible!'" -
Rebecca Wright @rebwrightfx07
511 Followers 7K Following Mindset | Trading | Psychology 💡 Empowering Minds & Mastering Market 📈
Marc-Antoine Ruel @marcaruel
1K Followers 1K Following Built https://t.co/QXR2gufta3 open source to manage a local coding agents fleet Before: Chrome: CI, window.print(), Sandbox, Fuchsia.
Jeroen Wiert Pluimers... @jpluimers
3K Followers 6K Following Makes things work in .NET/Win32/x64/C#/SQL/Delphi. Surviving rectal cancer. Married a cancer survivor. Responsible for brother with IQᐸ50. ex AdestMusica member
Pierrick @phymbert
262 Followers 2K Following
Jon Masters 🏴�... @jonmasters
16K Followers 7K Following Troublemaker | Computer Architect | @Arm Servers Architect @Google | Previously @RedHat, @Nuvia_Inc | Runner | Author | All views my own | #ArmServers
indygreg @indygreg
2K Followers 254 Following Open source maintainer. Infrastructure Performance at Airbnb. Views here are my own.
Edward Robinson @DonEddy1893
3 Followers 44 Following
Thomas Schwinge @schwinge_thomas
124 Followers 147 Following Free Software/Open Source software, primarily @GNUTools: maintainer of #GCC/@OpenACCorg and nvptx, contributor to @GCC_Rust. https://t.co/MvzGisXlUK
Like Xu @lkml_likexu
87 Followers 3K Following
Paulo Vital - @pvital... @prpvital
163 Followers 291 Following Senior Software Engineer @IBM @InstanaHQ. Passionate Pythonista and Gopher (@golang) aspirant, using #Linux since 2000. He/him/his. Opinions are my own.
Anderson Nascimento @andersonc0d3
4K Followers 6K Following Director & Security Researcher @alleleintel
The Brazilian Report @BrazilianReport
42K Followers 1K Following An insider view on Brazilian politics, business, and society - in English, for the world | Instagram: brazilianreport
Thiago Süssekind @ThiagoSussekind
43K Followers 891 Following Mestre em Políticas Públicas pela Universidade de Oxford (2024-2025). Advogado pela Uerj. Líder estadual do Acredito-RJ (2020-2022). Torcedor do Fluminense.
trish @TrisH0x2A
34K Followers 1K Following 24 • backend dev • building @devlogz • ex @Flipkart • building things that just work • learning systems & low level stuff • love video games & pixel art
Deena Mousa @deenamousa
3K Followers 538 Following Research & grantmaking @coeff_giving • Leave me anonymous feedback: https://t.co/0YmbLhC2dj
Raphael Nishimura @rnishimura
8K Followers 479 Following Survey methodologist and statistician @UM_SRC @umisr @Umich @MichPSM alum #survey | #sampling | #statistics | #rstats @rnishimura.bsky.social Posts 🇺🇸/🇧🇷
Jesús Fernández-Vil... @JesusFerna7026
59K Followers 171 Following Howard Marks Presidential Professor of Economics at @Penn and Senior Fellow at @AEI. Demographics, AI & macro. All opinions are my own.
Hoshino Lina / 星乃... @Lina_Hoshino
40K Followers 252 Following Hi! I'm a developer VTuber! EN/日本語|PFP @heripiro|💍 @CyanNyan6 🩵 🐘 @[email protected] 🦋 @lina.yt 💲 https://t.co/dsaZsWUANO
Boost C++ | Open Sour... @Boost_Libraries
3K Followers 185 Following Open source C++ libraries: algorithms, data structures, concurrency, networking & more. Peer-reviewed, portable, battle-tested since 1998. https://t.co/MhBwwXNH58
Mo @atmoio
69K Followers 18 Following Exploring what AI actually is. Building @shapeworkspace, prev @standardnotes. Talking at https://t.co/814DpgwSzr and https://t.co/vlHyF3gEjn.
Alice Evans @_alice_evans
62K Followers 2K Following Visiting Associate Professor @Stanford. Writing ‘The Great Gender Divergence’ with @PrincetonUPress. @BritishAcademy_ Mid-Career Fellow.
The Honest Broker @RogerPielkeJr
49K Followers 8K Following undisciplined scholar, recovering academic | @AEI | @DNVA1 | @UCL | @CUBoulder | @TheDispatch | The Honest Broker Substack ➡️ https://t.co/f7iRjp3abk
Andrea Allievi @aall86
5K Followers 372 Following Currently Senior Windows Core OS Engineer, Windows Internals Enthusiast and Book author, tennis lover, currently working for MS. Opinions and tweets are my own.
Chrinovic Mukanya @mu_chrinovic
11K Followers 504 Following Amateur Computer Architect . software/hardware co-design. Supporter of Denormals-Are-Zero
Alex Imas @alexolegimas
31K Followers 2K Following Director of AGI Economics @GoogleDeepMind. Professor at @ChicagoBooth. (on leave) Essays: https://t.co/9qSiQxvdja Opinions are my own.
Raul Juste Lores @rauljustelores
32K Followers 4K Following Autor de São Paulo nas Alturas. Ex-correspondente em Washington, Nova York, Pequim e Buenos Aires. 🏳️🌈
Arnaud Bertrand @RnaudBertrand
403K Followers 1K Following Entrepreneur. Previously HouseTrip (sold to TripAdvisor), now https://t.co/C4SmZQ8bl6 Subscribe if you like what I write
Felipe O. Carvalho @_Felipe
5K Followers 2K Following @ApacheArrow / Databases / Compilers. (past @SDFLabs, VoDa, @Spotify). Rust/C++/TLA⁺🇧🇷 → 🇸🇪 → 🌎 https://t.co/vxbdByfADI
Shreeyash Pandey @b0jle
249 Followers 1K Following systems engineer, ml compilers, FPGAs, EDA, GPUs and fun
Petr Skocik @pskocik
422 Followers 329 Following Interested in high performance software, systems, langs & making better tools. https://t.co/zsqhoMpOWB
Corentin Kérisit @corentinanjuna
2K Followers 394 Following I work on toolchains and build engineering, mostly for the ML ecosystem. Focusing on @zml_ai. Formerly @zenly (eng) @amoamoamo (eng) and @anjunadeep (music).
Ian Lukas @ianlukasdf
2K Followers 1K Following Corinthiano, Democrata e Republicano. Presidente do PSB/Plano Piloto. Sec. Relações Institucionais na JSB/DF. Cérebro cético com um coração romântico.
Israel Junior @israeljrs
689 Followers 3K Following Husband, father, DevOps, Open Source Enthusiast, Software Engineer, coding in #c / #cpp / #javascript / #python / #golang / #rust and Fan of #vim.
Georgeee @GeorgeeeOs
62 Followers 2K Following
Zophar @TheRealZophar
6K Followers 380 Following Founder of @ZopharsDomain (1996-2000), Partner of @Twitch, @YouTube & @Kick (2022-Present) focused on emulation & retrogaming content. Emulation Forever!
John Carmack @ID_AA_Carmack
2.1M Followers 285 Following AGI at Keen Technologies, former CTO Oculus VR, Founder Id Software and Armadillo Aerospace
Alessandro Riolo @aledeniz
6K Followers 1K Following Erice|Palermo|Venezia|Erice|Trapani|Palermo|Melegnano|Como|Istanbul|Trapani|Streatham Hill|Wandsworth|Antioch|Wimbledon|Basingstoke|Wimbledon
Daniel Sousa @Danielhrs
128K Followers 3K Following Comentarista da @GloboNews. Professor de Economia (@clipping_cacd & @ibmec). Criador do podcast @petit_journal_ 🇧🇷🇵🇹🇦🇴🇦🇺
Ryan Fleury @rfleury
23K Followers 129 Following RJF // @dgtlgrove // Making RAD Debugger at @radgametools in @epicgames (opinions my own)
Guilherme Vianna @DonVianna
5K Followers 2K Following Not an economist, but incoming pre-doc @columbia_econ, interested in #Econometrics, #Statistics and Cincinatti #Bengals.
Felippe Hermes @Felippe_Hermes
124K Followers 1K Following Co-founder: @Spotniks, @BRD_Capital e @Blocktrendsbr, parte do grupo @QrCapital. Bitcoin, Cripto, Economia, Finanças, Tech e Sport Club Internacional
Deborah Bizarria @DeborahBizarria
3K Followers 961 Following ✍🏻 Colunista na Folha 🌐Economista (UFPE) 🦊 Especialista em Gestão Pública (Insper) Views are My Own
Fake History Hunter @fakehistoryhunt
272K Followers 4K Following I hunt fake history and correct it, but also post amazing real history stuff. Rude, obscene, vulgar, racist people who can't act like grown-ups get blocked.
Ricardo Berezin @RicardoBerezin
13K Followers 2K Following Bacharel em Jornalismo (Cásper Líbero) e Filosofia (USP). Mestre em Administração (UFRJ). O Brasil seria o máximo se fizesse o mínimo.
Nilson_Teixeira @EconomicsArtBRL
8K Followers 110 Following Economia - PhD/University of Pennsylvania e Mestre/PUC-RJ Engenheiro/UFRJ Economista/UERJ Gestor/Macro Capital Economista/Credit Suisse e Chase Engenheiro/BNDES
Pete Cawley @corsix
2K Followers 213 Following
Solar Designer @solardiz
13K Followers 1K Following @Openwall founder, @oss_security maintainer, @lkrg_org co-author, @CtrlIQ Linux security engineer. RTs don't imply agreement with points of view.
Enders Thomas @projeto_enders
2K Followers 5K Following História (UFRJ). História da Ciência & Tecnologia, livros antigos que ninguém mais lê, métodos quantitativos aplicados às Ciências Sociais.
Falco Girgis @falco_girgis
14K Followers 1K Following Sega Dreamcast developer on a quest to correct the timeline of video gaming history. Working on the modern, open-source indie DC SDK and library OS, KallistiOS.
Luan Borelli @BorelliEcon
683 Followers 631 Following Econometrician. Pursuing a PhD at @UCBerkeley. Formerly: @FGV_EPGE and @ipeaonline.
Gary Marcus @GaryMarcus
226K Followers 7K Following OG GenAI Skeptic; spoke at US Senate. Warned about hallucinations in 2001. Advocating world models & neurosymbolic AI ever since. Author, Marcus on AI & 6 books
Yesbox - Metropolis 1... @YesboxStudios
10K Followers 111 Following Creating childlike wonder pixel by pixel. Wishlist on Steam: https://t.co/wv16rf7s6V
Mariekona🌸No PPV @Mary_Konopelka
95K Followers 27 Following Hi guys! ✨We are a hot couple and we obsessed with creating sexy and sensual content🔥👩🏼❤️💋👨🏻


























