[BACK]Return to Makefile.rump CVS log [TXT][DIR] Up to [cvs.NetBSD.org] / src / sys / rump

Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.

Diff for /src/sys/rump/Makefile.rump between version 1.127 and 1.128

version 1.127, 2020/03/09 14:45:41 version 1.128, 2020/05/29 00:05:26
Line 24  CPPFLAGS+= -D_RUMPKERNEL -I${RUMPTOP}/li
Line 24  CPPFLAGS+= -D_RUMPKERNEL -I${RUMPTOP}/li
 # aborts after kern_assert on NULL pointer checks.  # aborts after kern_assert on NULL pointer checks.
 CFLAGS+=    ${${ACTIVE_CC} == "gcc":? -fno-delete-null-pointer-checks :}  CFLAGS+=    ${${ACTIVE_CC} == "gcc":? -fno-delete-null-pointer-checks :}
   
   # NULL + 0 arithmetic raises LLVM UBSan warnings, specially in sys/pslist.h
   # in the type-safe macros _PSLIST_VALIDATE_PTRS and _PSLIST_VALIDATE_CONTAINER.
   .if ${MKSANITIZER:Uno} == "yes" || ${MKLIBCSANITIZER:Uno} == "yes"
   CFLAGS+=    ${${ACTIVE_CC} == "clang":? -fno-delete-null-pointer-checks :}
   .endif
   
 # Define baseline cpu for mips ports, required for  # Define baseline cpu for mips ports, required for
 # rumpcomp_sync_icache() hypercall.  # rumpcomp_sync_icache() hypercall.
 .if !empty(MACHINE_ARCH:Mmips*)  .if !empty(MACHINE_ARCH:Mmips*)

Legend:
Removed from v.1.127  
changed lines
  Added in v.1.128

CVSweb <webmaster@jp.NetBSD.org>