m68k-atari-mint-gcc icon indicating copy to clipboard operation
m68k-atari-mint-gcc copied to clipboard

Fork of GNU's gcc with support for the m68k-atari-mint target

Results 16 m68k-atari-mint-gcc issues
Sort by recently updated
recently updated
newest added

While compiling a newer version of opensll, i stumbled upon the problem that stdatomic.h was used, and caused compile errors. Reason is that our port did not define the builtin...

All TT have 68030 and FPU. Falcon computers have 68030, but not all of them have FPU. We already have the -m68020-60 target which generates efficient code for 68020/68030/68040/68060 but...

Making m68030 soft-float and m68060 hard-float by default required some creative thinking. This MR enables following multilib paths: ``` m68k-atari-mint-gcc -print-file-name=libgcc.a libgcc.a m68k-atari-mint-gcc -m68000 -print-file-name=libgcc.a libgcc.a m68k-atari-mint-gcc -m68000 -msoft-float -print-file-name=libgcc.a...

I'm wondering whether there was some intention behind this. This FireBee uses the [MCF5474](https://en.wikipedia.org/wiki/Atari_Coldfire_Project#Specifications) and the only difference to the MCF5475 is the Cryptography/Encryption Accelerator (which is most likely not...

Accidentally, I have found this parameter in gcc's `--param` section (see `man gcc`): `--param "l1-cache-size=X"` (the size of L1 cache, in kilobytes) `--param "l1-cache-line-size=Y"` (the size of cache line in...

When building other languages like C++, supporting libraries like libstdc++, libsupc++ (and others for other languages) are installed to /usr/lib. In order to support multiple installations of different compiler versions,...

I always wondered why `_GLIBCXX_USE_C99_MATH_TR1` is not defined in our c++config.h. Reason is that the `float_t/double_t` types are not defined when configuring the libstdc++: ``` checking for ISO C99 support...

``` mikro@SK-WS-SROS1490:~/build-scripts$ m68k-atari-mintelf-gcc -print-sysroot /build/gcc-m68k-atari-mintelf-FSofwz/gcc-m68k-atari-mintelf-13.2.0-mintelf-20240130/build/sys-root ``` It should be the path where gcc gets installed (/usr/m68k-atari-mintelf), not where it was built. :)

This issue is about padding at the end of a struct to reach a certain size. I guess this is related to https://github.com/dxx-rebirth/dxx-rebirth/issues/695 (unverified). Not to be confused with #20...

Something that i recently noticed while grepping through config.log: ``` configure:71667: zoneinfo data directory: none configure:71682: static tzdata.zi file will be compiled into the library ``` I haven't checked yes,...