Skip to content

step

step #1052

name: Build [GCC] - Windows
on: [push, pull_request]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- name: Compile Compiler
run: |
mkdir bin
clang++ -O0 --std=c++17 -Wno-everything -o bin/julec.exe ir.cpp -lws2_32 -lshell32
- name: Build JuleC
run: |
.\bin\julec -t --compiler gcc src/julec
g++ -w --std=c++17 -O0 "-Wa,-mbig-obj" -o test dist/ir.cpp -lws2_32 -lshell32