#gnucompilercollection — Public Fediverse posts
Live and recent posts from across the Fediverse tagged #gnucompilercollection, aggregated by home.social.
-
Commentary: AI bans in open-source projects cannot stop AI
An AI ban, like the one GCC has now issued, cannot prevent AI contributions – but it can channel them.
#GNUCompilerCollection #IT #KünstlicheIntelligenz #Sprachverarbeitung #OpenSource #Programmierung #Softwareentwicklung #Urheberrecht #news
-
Kommentar: KI-Verbote in Open-Source-Projekten können KI nicht stoppen
Ein KI-Verbot, wie es das GCC jetzt ausgesprochen hat, kann KI-Beiträge nicht verhindern – aber kanalisieren.
#GNUCompilerCollection #IT #KünstlicheIntelligenz #Sprachverarbeitung #OpenSource #Programmierung #Softwareentwicklung #Urheberrecht #news
-
Commentary: AI bans in open-source projects cannot stop AI
An AI ban, like the one GCC has now issued, cannot prevent AI contributions – but it can channel them.
#GNUCompilerCollection #IT #KünstlicheIntelligenz #Sprachverarbeitung #OpenSource #Programmierung #Softwareentwicklung #Urheberrecht #news
-
Kommentar: KI-Verbote in Open-Source-Projekten können KI nicht stoppen
Ein KI-Verbot, wie es das GCC jetzt ausgesprochen hat, kann KI-Beiträge nicht verhindern – aber kanalisieren.
#GNUCompilerCollection #IT #KünstlicheIntelligenz #Sprachverarbeitung #OpenSource #Programmierung #Softwareentwicklung #Urheberrecht #news
-
AI Slop or better code: GCC working group for AI guidelines launched
The Working Group for GCC AI Policy shall determine to what extent contributors may use AI tools when developing the GNU Compiler Collection.
#GNU #GNUCompilerCollection #IT #KünstlicheIntelligenz #Softwareentwicklung #news
-
AI Slop or better code: GCC working group for AI guidelines launched
The Working Group for GCC AI Policy shall determine to what extent contributors may use AI tools when developing the GNU Compiler Collection.
#GNU #GNUCompilerCollection #IT #KünstlicheIntelligenz #Softwareentwicklung #news
-
AI Slop oder besserer Code: GCC-Arbeitsgruppe für KI-Richtlinien gestartet
Die Working Group for GCC AI Policy soll festlegen, inwiefern Contributors KI-Tools beim Entwickeln der GNU Compiler Collection nutzen dürfen.
#GNU #GNUCompilerCollection #IT #KünstlicheIntelligenz #Softwareentwicklung #news
-
AI Slop oder besserer Code: GCC-Arbeitsgruppe für KI-Richtlinien gestartet
Die Working Group for GCC AI Policy soll festlegen, inwiefern Contributors KI-Tools beim Entwickeln der GNU Compiler Collection nutzen dürfen.
#GNU #GNUCompilerCollection #IT #KünstlicheIntelligenz #Softwareentwicklung #news
-
Hype for the Future 139L → GNU Cross Compiler (GCC) System Architecture Matrix
Introduction The following table represents a matrix of x86-architecture system central processing units (CPUs) with respects to functionality, including both 32-bit and 64-bit system processors: Legacy Intel ProcessorArchitectureExtensionsi386i386--i486i486--i586 = pentiumi586--lakemont (Intel Lakemont MCU)i586--pentium-mmxi586MMXpentiumproi686--i686i686--pentium2i686MMXpentium3, pentium3mi686MMX, SSEpentium-mi686MMX, SSE, SSE2pentium4, pentium4mi686MMX, SSE, SSE2prescotti686MMX, SSE, […] -
Hype for the Future 140E → GNU Cross Compiler (GCC) System Architecture Matrix
Introduction The following table represents a matrix of x86-architecture system central processing units (CPUs) with respects to functionality, including both 32-bit and 64-bit system processors: Legacy Intel ProcessorArchitectureExtensionsi386i386--i486i486--i586 = pentiumi586--lakemont (Intel Lakemont MCU)i586--pentium-mmxi586MMXpentiumproi686--i686i686--pentium2i686MMXpentium3, pentium3mi686MMX, SSEpentium-mi686MMX, SSE, SSE2pentium4, pentium4mi686MMX, SSE, SSE2prescotti686MMX, SSE, […] -
Hype for the Future 140D: System Requirements for Instruction Set Extensions (Intel x86)
Introduction Different instruction set extensions require generally different generations of Intel x86 processors. Please note that AVX-512 is only available on select processors in the Intel 11th and 12th generations. Specifications MMX: Pentium MMX or later (except Pentium Pro) SSE: Pentium III SSE2: Pentium 4 SSE3: Pentium 4 “Prescott” (2004) SSSE3: Core 2 Solo/Duo/Quad/Extreme SSE4, SSE4.1: Core 2 “Penryn” (2007/08) SSE4.2: Core “Nehalem” AVX: Core “Sandy […] -
Hype for the Future 140D: System Requirements for Instruction Set Extensions (Intel x86)
Introduction Different instruction set extensions require generally different generations of Intel x86 processors. Please note that AVX-512 is only available on select processors in the Intel 11th and 12th generations. Specifications MMX: Pentium MMX or later (except Pentium Pro) SSE: Pentium III SSE2: Pentium 4 SSE3: Pentium 4 “Prescott” (2004) SSSE3: Core 2 Solo/Duo/Quad/Extreme SSE4, SSE4.1: Core 2 “Penryn” (2007/08) SSE4.2: Core “Nehalem” AVX: Core “Sandy […] -
Hype for the Future 139K → Generating Code for 16-, 32-, and 64-bit Systems
Overview With the GNU Cross Compiler (GCC), the proper commands for code generation are gcc -m16 for 32-bit mode with 16-bit compatibility; gcc -m32 for standard 32-bit mode; gcc -mx32 for 64-bit code with 32-bit int, long, and pointer types; and gcc -m64 for standard 64-bit code. -
Hype for the Future 139K → Generating Code for 16-, 32-, and 64-bit Systems
Overview With the GNU Cross Compiler (GCC), the proper commands for code generation are gcc -m16 for 32-bit mode with 16-bit compatibility; gcc -m32 for standard 32-bit mode; gcc -mx32 for 64-bit code with 32-bit int, long, and pointer types; and gcc -m64 for standard 64-bit code. -
Hype for the Future 139J → A Simple C Program
Introduction Perhaps the simplest programs in the C Programming Language are such programs that only require the puts() function in the entirety of the code. However, in the GNU dialect of C (and in POSIX more broadly), an additional requirement of a try-catch block with errno set is essential to creating proper code. Program #include int main(void) { int rc = puts("Hello!"); if (rc == EOF) perror("puts()") // errno must be set as POSIX requirement. }https://novatopflex.wordpress.com/2026/03/19/hype-for-the-future-139j-%e2%86%92-a-simple-c-program/
-
Hype for the Future 139I → The GNU C Compiler
Overview The GNU C Compiler, gcc, is part of the GNU Compiler Collection (GCC) and is identified as the primary system shell command based on build-essential in Ubuntu and the vast majority of Linux distributions otherwise based on Debian (.deb). The package names may vary, however slightly, on different types of kernel operating systems, but gcc remains an integral compiler for the vast majority of Linux, BSD, Solaris, and other UNIX-like implementations of operating systems containing GNU […]https://novatopflex.wordpress.com/2026/03/19/hype-for-the-future-139i-%e2%86%92-the-gnu-c-compiler/
-
Hype for the Future 139I → The GNU C Compiler
Overview The GNU C Compiler, gcc, is part of the GNU Compiler Collection (GCC) and is identified as the primary system shell command based on build-essential in Ubuntu and the vast majority of Linux distributions otherwise based on Debian (.deb). The package names may vary, however slightly, on different types of kernel operating systems, but gcc remains an integral compiler for the vast majority of Linux, BSD, Solaris, and other UNIX-like implementations of operating systems containing GNU […]https://novatopflex.wordpress.com/2026/03/19/hype-for-the-future-139i-%e2%86%92-the-gnu-c-compiler/
-
C++ Compiler Support Status for C++26
https://cppstat.dev/?tags=cpp26,gcc
#cc
#cpp
#compiler
#gcc
#gnucompilercollection
#cplusplus
#isocpp
#isocplusplus
#safetyprofile
#typesafety
#resourcesafety
#programming
#cplusplusprogramming
#software -
#GCC 15.2.0 has been released (#GNU / #GNUCompiler / #GNUCompilerCollection) https://gcc.gnu.org/
-
#GCC 15.2.0 has been released (#GNU / #GNUCompiler / #GNUCompilerCollection) https://gcc.gnu.org/
-
#GCC 12.5.0 has been released (#GNU / #GNUCompiler / #GNUCompilerCollection) https://gcc.gnu.org/
-
#GCC 12.5.0 has been released (#GNU / #GNUCompiler / #GNUCompilerCollection) https://gcc.gnu.org/
-
#GCC 14.3.0 has been released (#GNU / #GNUCompiler / #GNUCompilerCollection) https://gcc.gnu.org/
-
#GCC 14.3.0 has been released (#GNU / #GNUCompiler / #GNUCompilerCollection) https://gcc.gnu.org/
-
#GCC 15.1.0 has been released (#GNU / #GNUCompiler / #GNUCompilerCollection) https://gcc.gnu.org/
-
#GCC 15.1.0 has been released (#GNU / #GNUCompiler / #GNUCompilerCollection) https://gcc.gnu.org/
-
GCC, the GNU Compiler Collection 15.1 released
#HackerNews #GCC #GNUCompilerCollection #Release #15.1 #OpenSource #SoftwareDevelopment
-
GCC, the GNU Compiler Collection 15.1 released
#HackerNews #GCC #GNUCompilerCollection #Release #15.1 #OpenSource #SoftwareDevelopment
-
Dienstag: Japans Milliarden-Plan für Halbleiter, Carl Zeiss investiert in Indien
Japan fördert Chipherstellung + Carl Zeiss eröffnet Technologiezentrum + Vorschläge an EU-Kommission + Broadcom lenkt ein + Vorschlag an VW-Vorstand
#Broadcom #Halbleiterindustrie #EU #GNUCompilerCollection #hoDaily #KünstlicheIntelligenz #VMware #VW #news
-
Dienstag: Japans Milliarden-Plan für Halbleiter, Carl Zeiss investiert in Indien
Japan fördert Chipherstellung + Carl Zeiss eröffnet Technologiezentrum + Vorschläge an EU-Kommission + Broadcom lenkt ein + Vorschlag an VW-Vorstand
#Broadcom #Halbleiterindustrie #EU #GNUCompilerCollection #hoDaily #KünstlicheIntelligenz #VMware #VW #news
-
Carl Zeiss opens technology center in India
The German manufacturer is expanding its presence in India and plans to double its workforce there by 2028.
#CloudComputing #Cybersecurity #GNUCompilerCollection #ITBranche #Softwareentwicklung #news
-
Carl Zeiss opens technology center in India
The German manufacturer is expanding its presence in India and plans to double its workforce there by 2028.
#CloudComputing #Cybersecurity #GNUCompilerCollection #ITBranche #Softwareentwicklung #news
-
Carl Zeiss eröffnet Technologiezentrum in Indien
Der deutsche Hersteller baut seine Präsenz in Indien aus und will seine Belegschaft dort bis zum Jahr 2028 verdoppeln.
#CloudComputing #Cybersecurity #GNUCompilerCollection #ITBranche #Softwareentwicklung #news
-
Carl Zeiss eröffnet Technologiezentrum in Indien
Der deutsche Hersteller baut seine Präsenz in Indien aus und will seine Belegschaft dort bis zum Jahr 2028 verdoppeln.
#CloudComputing #Cybersecurity #GNUCompilerCollection #ITBranche #Softwareentwicklung #news
-
#GCC 12.4.0 has been released (#GNU / #GNUCompiler / #GNUCompilerCollection) https://gcc.gnu.org/
-
#GCC 12.4.0 has been released (#GNU / #GNUCompiler / #GNUCompilerCollection) https://gcc.gnu.org/
-
C++20: Modulunterstützung der großen drei Compiler
Module gehören zu den vier wichtigen Neuerungen in C++20. Zeit für einen Blick darauf, wie gut die Großen Drei (GCC, Clang und MSVC) mit Modulen arbeiten.
#CC #Compiler #GNUCompilerCollection #Softwareentwicklung #news
-
C++20: Modulunterstützung der großen drei Compiler
Module gehören zu den vier wichtigen Neuerungen in C++20. Zeit für einen Blick darauf, wie gut die Großen Drei (GCC, Clang und MSVC) mit Modulen arbeiten.
#CC #Compiler #GNUCompilerCollection #Softwareentwicklung #news
-
Respektvolles Miteinander: GCC-Projekt hat jetzt einen Code of Conduct
Die Richtlinien sollen den respektvollen Umgang untereinander sicherstellen. Die Gründung eines Komitees, das sich um die Umsetzung kümmert, steht noch aus.
-
Respektvolles Miteinander: GCC-Projekt hat jetzt einen Code of Conduct
Die Richtlinien sollen den respektvollen Umgang untereinander sicherstellen. Die Gründung eines Komitees, das sich um die Umsetzung kümmert, steht noch aus.
-
Programmieren: GCC Version 13.1 spricht SARIF bei der statischen Codeanalyse
Das neue GCC-Release kann Diagnosedaten auch im OASIS-Standardaustauschformat SARIF bereitstellen. Ein neues Modula-2-Frontend schafft die Basis für Rust.
-
Programmieren: GCC Version 13.1 spricht SARIF bei der statischen Codeanalyse
Das neue GCC-Release kann Diagnosedaten auch im OASIS-Standardaustauschformat SARIF bereitstellen. Ein neues Modula-2-Frontend schafft die Basis für Rust.
-
-O0 does not mean "let me write invalid code".
Simply brilliant !
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=108747#c4
#gcc #gnucompilercollection #gnu #toolchain #optimization #insight #freesoftware #community #fsf
-
Nun ist es offiziell: Der Lenkungsausschuss hat für GCC Rust gestimmt. Mit GCC 13 erhält die GNU-Compilersammlung eine vorläufige Betaversion des Frontends.
GCC Rust: Steering Committee der GNU-Compilersammlung sagt Ja zum neuen Frontend -
Seit November 2020 arbeitet ein Entwickler am neuen Rust-Frontend für GCC. Damit die Compilersammlung ab GCC 13 auch Rust kann, ist nun die Community gefragt.
Rust-Frontend im Werden: GNU-Compilersammlung GCC sammelt Feedback der Community -
Zum 35. Geburtstag räumt das neue GCC-Release auf: Ein älteres Debugging-Format landet beim Alteisen und die Interoperabilität mit Fortran ist erneut ausgebaut.
Programmieren: 35 Jahre GCC – Version 12.1 schneidet alte STABS-Zöpfe ab -
Als Frontend für die GNU Compiler Collection nutzt gcobol GCC, um native Binary Executables zu erzeugen.
Frischzellenkur für die Programmiersprache COBOL: Neuer FOSS-Compiler gcobol -
Das neue GCC Release fasst den nächsten C-Standard C2X in den Blick, unterstützt aktuelle Prozessoren und experimentell auch Intel Advanced Matrix Extensions. Programmieren: GCC 11.1 unterstützt C++17 und Linux Kernel Concurrency Sanitizer -
In der Organisation schließen sich zahlreiche GNU-Maintainer zusammen. Schon vor seiner Rückkehr zur FSF kritisierte Richard Stallman die Gründung. Freie Software: GNU Assembly will neue Heimat für Projekte und Betreiber sein