File tree 4 files changed +12
-2
lines changed
4 files changed +12
-2
lines changed Original file line number Diff line number Diff line change 24
24
if BUILD_MACOS
25
25
SUBDIRS += zed os
26
26
endif
27
+
28
+ PHONY = cppcheck
29
+ cppcheck : $(CPPCHECKDIRS )
30
+ set -e ; for dir in $( CPPCHECKDIRS) ; do \
31
+ $(MAKE ) -C $$ dir cppcheck ; \
32
+ done
Original file line number Diff line number Diff line change @@ -219,7 +219,7 @@ enum zio_flag {
219
219
ZIO_FLAG_NOPWRITE = 1 << 28 ,
220
220
ZIO_FLAG_REEXECUTED = 1 << 29 ,
221
221
ZIO_FLAG_DELEGATED = 1 << 30 ,
222
- ZIO_FLAG_FASTWRITE = 1 << 31 ,
222
+ ZIO_FLAG_FASTWRITE = 1ULL << 31 ,
223
223
};
224
224
225
225
#define ZIO_FLAG_MUSTSUCCEED 0
Original file line number Diff line number Diff line change @@ -83,3 +83,4 @@ nodist_libicp_la_SOURCES = \
83
83
$(KERNEL_C ) \
84
84
$(KERNEL_ASM )
85
85
86
+ include $(top_srcdir ) /config/CppCheck.am
Original file line number Diff line number Diff line change 15
15
clean clean-Linux clean-FreeBSD \
16
16
modules_install modules_install-Linux modules_install-FreeBSD \
17
17
modules_uninstall modules_uninstall-Linux modules_uninstall-FreeBSD \
18
- cppcheck cppcheck-Linux cppcheck-FreeBSD
18
+ cppcheck cppcheck-Linux cppcheck-FreeBSD cppcheck-macOS
19
19
20
20
# For FreeBSD, use debug options from ./configure if not overridden.
21
21
export WITH_DEBUG ?= @WITH_DEBUG@
@@ -144,6 +144,9 @@ cppcheck-Linux:
144
144
cppcheck-FreeBSD :
145
145
@true
146
146
147
+ cppcheck-macOS :
148
+ @true
149
+
147
150
cppcheck : cppcheck-@ac_system@
148
151
149
152
distdir :
You can’t perform that action at this time.
0 commit comments