m68k support
See original GitHub issueIssue Description
(Cross linking from https://github.com/mattgodbolt/compiler-explorer/issues/271)
Hi,
So after spending a bit of time fixing up my build script for m68k compilers I thought I’d take a look and see how it could be added to this repository. I have a few initial questions:
- From what I’ve seen from the other cross compiler build scripts (like for example gcc-cross\build\msp430-gcc453) only the compiler is being built without libraries. My script also builds quite a few libs - are those not needed? I’m asking this because if only the barebones compilers are required then the build script gets significantly smaller.
- I also asked this in the compiler-explorer issue - from what I understand the compilers are being installed in /opt - what would an accepted naming scheme be? @RabsRincon suggested
gcc-x-x-x-68k
, by default the compilers are namedm68k-x-x-x-elf
fwiw. - Can anyone help me figuring out how docker works? For my build I require a few versions of gcc to be present (4 through 7), the usual GMP/MPFR/MPC and a couple of others like flex and bison (if the libraries are being built). From what I understand there’s a repository of docker packages one can get and use the built-in tools but this is just dark arts for me right now 😃
Feedback welcome! George
Issue Analytics
- State:
- Created 5 years ago
- Comments:17 (5 by maintainers)
Top Results From Across the Web
Documentation/Platforms/m68k - QEMU
2 How to help; 3 Pictures; 4 Links; 5 Maintainer contact info. m68k emulator. The following machines are emulated through qemu-system-m68k: ...
Read more >Planet m68k
The IDE is in active development and free software (GPLv3). The programming languages supported are a Pascal dialect and support for assembler. The...
Read more >The Linux/m68k Home Pages
Everything you'd ever want to know about Linux/m68k, the Linux port for Motorola 680x0-based systems. Supported systems include the Amiga, Apple Macintosh, ...
Read more >Debian -- Motorola 680x0 Port
Currently, the Debian/m68k port supports Atari, Amiga, VMEbus, and some Macintosh systems. For further information on the current status of the ...
Read more >m68k-linux-gnu-as(1) - Linux man page
This may help debugging assembler code, if the debugger can handle it. Note---this option is only supported by some targets, not all of...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
@tomstorey If you need it right now, I do have an instance of compiler-explorer with m68k compilers running here: http://brownbot.mooo.com
Hi,
Just dropping a note here that I’m experimenting with docker a bit and I’m having some progress - hopefully I can have something working soon!