File tree Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -68,18 +68,18 @@ jobs:
68
68
69
69
# gcc *and* clang are required to run-tests.py
70
70
# install it at this point since it has gcc as dependency which might interfere with the build
71
- - name : install compiler (test )
71
+ - name : install compiler (clang )
72
72
if : matrix.compiler == 'g++'
73
73
run : |
74
74
pacman -S --noconfirm clang
75
75
76
- - name : install compiler (test )
76
+ - name : install compiler (gcc )
77
77
if : matrix.compiler == 'clang++'
78
78
run : |
79
79
pacman -S --noconfirm gcc
80
80
81
81
- name : make test
82
- run : make -j$(nproc) CXXOPTS="-Werror" test
82
+ run : make -j$(nproc) test
83
83
84
84
- name : selfcheck
85
85
run : |
Original file line number Diff line number Diff line change @@ -48,6 +48,7 @@ elif [ "$cxx_type" = "clang" ]; then
48
48
defs=" $defs -D__STDC_HOSTED__"
49
49
defs=" $defs -D__CHAR_BIT__=8"
50
50
defs=" $defs -D__BYTE_ORDER__=1234"
51
+ defs=" $defs -D__SIZEOF_SIZE_T__=8"
51
52
if [ " ${MSYSTEM} " = " MINGW32" ] || [ " ${MSYSTEM} " = " MINGW64" ] || [ " ${MSYSTEM} " = " CLANG64" ]; then
52
53
defs=" $defs -D_WIN32"
53
54
fi
@@ -83,7 +84,7 @@ elif [ "$cxx_type" = "clang" ]; then
83
84
# done <<< "$($CXX -x c++ -stdlib=libc++ -v -c -S - 2>&1 < /dev/null | grep -e'^ [/A-Z]')"
84
85
elif [ " $cxx_type " = " Apple" ]; then
85
86
defs=
86
- defs=" $defs -D__BYTE_ORDER__=1234 "
87
+ defs=" $defs -D__BYTE_ORDER__"
87
88
defs=" $defs -D__APPLE__"
88
89
defs=" $defs -D__GNUC__=15"
89
90
defs=" $defs -D__x86_64__"
You can’t perform that action at this time.
0 commit comments