Search found 17 matches

by Fabrizio
Fri Jul 13, 2018 12:20 pm
Forum: Software & Programming
Topic: Cross-Chase
Replies: 24
Views: 14455

Re: Cross-Chase

Hi I would like to compile my game for the Sinclair QL with QDOS-GCC but I have not understood how to run the compiler inside the docker. Who could help me on this? Let us say I have put a trivial "Hello World" hello.c file into /c/Retro/hello.c, then I get: $ docker run xora/qdos-gcc qdos...
by Fabrizio
Tue Jul 10, 2018 10:27 pm
Forum: Software & Programming
Topic: QDOS gcc made easy (docker stylee)
Replies: 25
Views: 19786

Re: QDOS gcc made easy (docker stylee)

Hi I am not using Cygwin. I just want to compile a simple hello world program. What is my top level directory? /c/ ? Let us say I have put the hello.c file into /c/Retro/hello.c, then I get: $ docker run xora/qdos-gcc qdos-gcc -v /c/Retro/hello.c qdos-gcc: /c/Retro/hello.c: No such file or directory...
by Fabrizio
Tue Jun 12, 2018 9:28 am
Forum: Software & Programming
Topic: QDOS gcc made easy (docker stylee)
Replies: 25
Views: 19786

Re: QDOS gcc made easy (docker stylee)

How? Could you please give me an example on how to build a hello world program? I have tried the suggested command but I get: C:\Program Files\Docker Toolbox\docker.exe: invalid reference format: repository name must be lowercase. See 'C:\Program Files\Docker Toolbox\docker.exe run --help'. Fabrizio
by Fabrizio
Sun Jun 10, 2018 11:31 pm
Forum: Software & Programming
Topic: Cross-Chase
Replies: 24
Views: 14455

Re: Cross-Chase

Hi everyone, I would like to try qdos-gcc but so far I have not been able to get it to compile a simple hello world file. Ideally I would like to run it under Cygwin. To just see if it is capable of compiling my game, I have tried the dockerized version but with not much luck. I have managed to inst...
by Fabrizio
Sun Jun 10, 2018 11:17 pm
Forum: Software & Programming
Topic: GitHub - QL Sources
Replies: 26
Views: 11286

Re: GitHub - QL Sources

Hi everyone, I would like to try qdos-gcc or any other available C cross-compiler for the QL. If possible I would like to run it from Cygwin. I have not been able to compile with the dockerized version. The suggested commands do not work. A simple docker run ... will run the compiler but the compile...
by Fabrizio
Sun Jun 10, 2018 11:09 pm
Forum: Software & Programming
Topic: QDOS gcc made easy (docker stylee)
Replies: 25
Views: 19786

Re: QDOS gcc made easy (docker stylee)

Hi! I would like to compile my universal game CROSS CHASE for the QL. Ideally I would like to use it within Cygwin. To get me started as fast as possible I have tried the docker version but I cannot get to compile the hello world code. I don't have much experience with docker. I have managed to pull...
by Fabrizio
Thu Apr 19, 2018 1:00 pm
Forum: Software & Programming
Topic: Cross-Chase
Replies: 24
Views: 14455

Re: Cross-Chase

Hi everyone! My game does not rely on anything for graphics, sound and input (keyboard/joystick). The game code is hardware-agnostic. It depends on CROSS LIB (my abstraction layer) where I implement the graphics, sound and input. For graphics I have many "plug-ins" and I can implement one ...