diff --git a/.github/workflows/build_clang_windows.yml b/.github/workflows/build_clang_windows.yml index 4848cdbc0..53f1e7364 100644 --- a/.github/workflows/build_clang_windows.yml +++ b/.github/workflows/build_clang_windows.yml @@ -9,4 +9,5 @@ jobs: - name: Build JuleC run: | - .\bin\julec --compiler clang src/julec \ No newline at end of file + .\bin\julec --compiler clang -t src/julec + clang++ "-Wl,-z,stack-size=0x800000" --std=c++17 -Wno-everything dist/ir.cpp \ No newline at end of file diff --git a/.github/workflows/build_gcc_windows.yml b/.github/workflows/build_gcc_windows.yml index c0b04c0c0..6f92552c9 100644 --- a/.github/workflows/build_gcc_windows.yml +++ b/.github/workflows/build_gcc_windows.yml @@ -9,4 +9,5 @@ jobs: - name: Build JuleC run: | - .\bin\julec --compiler gcc src/julec \ No newline at end of file + .\bin\julec --compiler gcc -t src/julec + g++ "-Wl,-z,stack-size=0x800000" --std=c++17 -w dist/ir.cpp \ No newline at end of file