1
0
mirror of https://github.com/bebbo/amiga-gcc.git synced 2025-11-19 23:50:55 +00:00

automate building windows setup

This commit is contained in:
bebbo
2018-10-03 20:10:13 +02:00
parent dc24cd8170
commit 3ccd3d777d
4 changed files with 16 additions and 0 deletions

10
setup/cmdline.bat Normal file
View File

@ -0,0 +1,10 @@
@for /f %%i in ('cd') do @path %path%;%%i\bin
@echo *******************************************************************************
@echo * Welcome to amiga-gcc *
@echo *******************************************************************************
@dir bin\*.exe /w
m68k-amigaos-gcc hello.c -o hello -Os -noixemul
@cmd /k

6
setup/hello.c Normal file
View File

@ -0,0 +1,6 @@
#include <stdio.h>
int main(int argc, char ** argv) {
printf("hello world - with %d args\n", argc);
return 0;
}

View File

Before

Width:  |  Height:  |  Size: 23 KiB

After

Width:  |  Height:  |  Size: 23 KiB