From 442f0bdf1cca6365d7902a036252b1d72393ee48 Mon Sep 17 00:00:00 2001 From: Jonathan <74002342+jd-imi@users.noreply.github.com> Date: Fri, 4 Oct 2024 20:43:41 +0200 Subject: [PATCH] gcc.yml : Add LEGACY flag to make bip-apps with GNU99 (#795) Otherwise, there were a lot of warnings --- .github/workflows/gcc.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/gcc.yml b/.github/workflows/gcc.yml index 5c911f49..63e6faa9 100644 --- a/.github/workflows/gcc.yml +++ b/.github/workflows/gcc.yml @@ -22,15 +22,15 @@ jobs: gcc --version make clean make LEGACY=true CSTANDARD="-std=gnu89" all - - name: Build Demo Apps GNU99 + - name: LEGACY=true Build Demo Apps GNU99 run: | make clean - make CSTANDARD="-std=gnu99" all + make LEGACY=true CSTANDARD="-std=gnu99" all - name: LEGACY=true Build Demo Apps GNU11 run: | make clean make LEGACY=true CSTANDARD="-std=gnu11" all - - name: Build Demo Apps GNU17 + - name: LEGACY=true Build Demo Apps GNU17 run: | make clean make LEGACY=true CSTANDARD="-std=gnu17" all