From 6e253eff2be383861ae0bf44eccbf6bfef931bf8 Mon Sep 17 00:00:00 2001 From: Brecht Sanders Date: Fri, 28 Jul 2023 17:51:41 +0200 Subject: [PATCH] --- README.md | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 5f17a64..ff491cb 100644 --- a/README.md +++ b/README.md @@ -1,17 +1,22 @@ # MinGW-w64 - winlibs standalone build The winlibs standalone build of GCC compiler and MinGW-w64. GCC is a free and open source C/C++ compiler. -MinGW-w64 is a free and open source for targetting Windows 32-bit and 64-bit platforms with C/C++ compilers. +MinGW-w64 is a free and open source for targetting Windows Intel 32-bit and Intel 64-bit platforms with C/C++ compilers. The combination of both gives you a free C/C++ compiler for Windows. Additional tools are added to this build including: - GDB - the GNU Project debugger - GNU Binutils - GNU Make +- Assemblers: Yasm, NASM, JWasm +- CMake +- ninja +- ccache +- Doxygen Binary downloads are available for Windows only: -- The i686 download is the 32-bit version, which runs natively on and compiles for Windows 32-bit (of course it also runs on 64-bit). -- The x86_64 download is the 64-bit version, which runs natively on and compiles for Windows 64-bit. +- The i686 download is the Intel 32-bit version, which runs natively on and compiles for Windows 32-bit (of course it also runs on 64-bit). +- The x86_64 download is the Intel 64-bit version, which runs natively on and compiles for Windows 64-bit. Each build is built with itself, so optimizations included in newer GCC versions are also compiled into the compiler itself. @@ -19,3 +24,5 @@ The ultimate goal of winlibs is to also provide libraries built with this compil - provide both static and shared libraries where possible - focus on production quality (no debug versions of libraries and debugging information stripped from binaries) - useability from the MSYS 2 shell aswell as from IDEs like Code::Blocks + +In addition to building GCC there are also releases of LLVM (which include Clang/LLD/LLDB), which are built with GCC and linked agains GCC's standard libraries.