Page 3 of 3

Re: QDOS gcc made easy (docker stylee)

Posted: Fri Aug 20, 2021 11:48 am
by XorA
Derek_Stewart wrote:HI,

This looks great, I will have to get my RPIs out and start using them.

How hard would a version for Linux Mint be, as this is a Ubuntu based distro.

I am a beginner with Docker, but looks fairly straight forward, just finding the time to play with it...
So the advantage of Docker is it does not matter what your distro of choice is, everything is hidden in the container.

So I have found as per the other thread qdos-gcc is currently not working on arm, as the last post from @tcat seemed to indicate they had found a fix I have asked for details so I can add it. I still need to test xtc68 on arm.

Re: QDOS gcc made easy (docker stylee)

Posted: Sun Aug 22, 2021 10:14 pm
by XorA
Just pushed an updated image.

This should bring working arm support for xtc68 and qdos-gcc.

I also added qltools so you can make floppy images inside the container!

Re: QDOS gcc made easy (docker stylee)

Posted: Sun Aug 22, 2021 10:20 pm
by XorA
Oh and I forgot to say the build/build.sh script in the github repo will also build in local machine if you want to play without docker.

Although it will not handle compiling gcc on a 64bit OS (PRs greatefully received :D )

Re: QDOS gcc made easy (docker stylee)

Posted: Tue Aug 24, 2021 9:26 pm
by XorA
And now amd64 (x86_64) containers are included.

ARM64 doesnt support multilib though, so I don't think that will ever get gcc 2.95.3!

Re: QDOS gcc made easy (docker stylee)

Posted: Sat Oct 28, 2023 2:25 pm
by NormanDunbar
Hi XorA.

I'm messing with Docker and pulled your qdos-devel image. On the instructions page, https://hub.docker.com/r/xora/qdos-devel, is says this:

Code: Select all

docker run -v `pwd`/wander:qdos/wander -it qdos-devel:latest bash
But that gives an error:

Code: Select all

yada yada: invalid mount config for type "bind": invalid mount path: 'qdos/wander' mount path must be absolute.
The fix appears to be a leading '/' added to "-it qdos/wander" making it "-it /qdos/wander" .

Cheers,
Norm.

Re: QDOS gcc made easy (docker stylee)

Posted: Sat Oct 28, 2023 7:36 pm
by XorA
NormanDunbar wrote: Sat Oct 28, 2023 2:25 pm Hi XorA.

I'm messing with Docker and pulled your qdos-devel image. On the instructions page, https://hub.docker.com/r/xora/qdos-devel, is says this:

Code: Select all

docker run -v `pwd`/wander:qdos/wander -it qdos-devel:latest bash
But that gives an error:

Code: Select all

yada yada: invalid mount config for type "bind": invalid mount path: 'qdos/wander' mount path must be absolute.
The fix appears to be a leading '/' added to "-it qdos/wander" making it "-it /qdos/wander" .

Cheers,
Norm.
Feel free to send a PR to the github! Your right its a typo!