diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml new file mode 100644 index 0000000..36ca6af --- /dev/null +++ b/.github/workflows/windows.yml @@ -0,0 +1,14 @@ +on: push +jobs: + build: + runs-on: windows-latest + steps: + - uses: msys2/setup-msys2@v2 + with: + msystem: msys + install: toolchain make + - uses: actions/checkout@v4 + - shell: msys2 {0} + run: | + ./configure + make all check bootstrap diff --git a/configure b/configure index 0d94402..390dc1c 100755 --- a/configure +++ b/configure @@ -122,7 +122,7 @@ case "$target" in endfiles='"-l", "c", "-l", ":crtn.o"' defines='"-D", "__builtin_stdarg_start(ap, last)=__builtin_va_start(ap, last)"' ;; -*-*msys*) +*-mingw*) startfiles='"-l", ":crt0.o"' endfiles='"-l", "c", "-l", "msys-2.0", "-l", "kernel32"' ;;