Skip to content

Commit

Permalink
Merge pull request #1088 from riscv-software-src/werror
Browse files Browse the repository at this point in the history
Run CI with -Werror
  • Loading branch information
aswaterman authored Sep 22, 2022
2 parents 7c4cf01 + 7cf82d7 commit 2a7c33b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ default-CXXFLAGS := $(default-CFLAGS) -std=c++17

mcppbs-CPPFLAGS := @CPPFLAGS@
mcppbs-CFLAGS := $(default-CFLAGS) @CFLAGS@
mcppbs-CXXFLAGS := $(default-CXXFLAGS) @CXXFLAGS@
mcppbs-CXXFLAGS := $(mcppbs-CFLAGS) $(default-CXXFLAGS) @CXXFLAGS@

CC := @CC@
CXX := @CXX@
Expand Down
2 changes: 1 addition & 1 deletion ci-tests/test-spike
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
mkdir build
cd build
mkdir install
$DIR/../configure --prefix=`pwd`/install
CFLAGS="-Werror" $DIR/../configure --prefix=`pwd`/install
make -j4
make install

0 comments on commit 2a7c33b

Please sign in to comment.