[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.61 and 1.61.4.2

version 1.61, 2011/05/10 00:33:58 version 1.61.4.2, 2013/01/16 05:33:51
Line 15  CPPFLAGS+= -D_RUMPKERNEL
Line 15  CPPFLAGS+= -D_RUMPKERNEL
 CPPFLAGS+=      -D_RUMP_NATIVE_ABI  CPPFLAGS+=      -D_RUMP_NATIVE_ABI
 .endif  .endif
   
   CPPFLAGS+=      -DMAXUSERS=32
   CPPFLAGS+=      -DCOMPAT_50=1
   
   CPPFLAGS+=      -nostdinc
 CFLAGS+=        -ffreestanding -fno-strict-aliasing  CFLAGS+=        -ffreestanding -fno-strict-aliasing
 .if defined(HAVE_GCC) && ${HAVE_GCC} >= 3  
 CFLAGS+=        -Wsign-compare  
 CFLAGS+=        -Wno-pointer-sign -Wno-attributes  
 CFLAGS+=        -std=gnu99  
 .endif  
 CWARNFLAGS+=    -Wno-format-zero-length -Wno-pointer-sign  CWARNFLAGS+=    -Wno-format-zero-length -Wno-pointer-sign
 CPPFLAGS+=      -D_KERNEL -DMULTIPROCESSOR -D_MODULE -DMODULAR  CPPFLAGS+=      -D_KERNEL -DMULTIPROCESSOR -D_MODULE -DMODULAR
 CPPFLAGS+=      -DMAXUSERS=32  
 CPPFLAGS+=      -DDIAGNOSTIC  
 CPPFLAGS+=      -DCOMPAT_50=1  
 CPPFLAGS+=      -DDEBUGPRINT  CPPFLAGS+=      -DDEBUGPRINT
 CPPFLAGS+=      -I${.CURDIR} -I.  CPPFLAGS+=      -I${.CURDIR} -I.
 CPPFLAGS+=      -I${RUMPTOP}/../../common/include -isystem ${RUMPTOP}/../arch  CPPFLAGS+=      -I${RUMPTOP}/../../common/include
 CPPFLAGS+=      -I${RUMPTOP}/include  CPPFLAGS+=      -I${RUMPTOP}/include
 CPPFLAGS+=      -I${RUMPTOP}/librump/rumpkern/opt  CPPFLAGS+=      -I${RUMPTOP}/librump/rumpkern/opt
 CPPFLAGS+=      -nostdinc -isystem ${RUMPTOP}/..  
 LDFLAGS+=       -T ${RUMPTOP}/ldscript.rump  .ifdef NEED_ISYSTEM
 #CPPFLAGS+=     -DDEBUG  CPPFLAGS+=      -isystem ${RUMPTOP}/../arch
   CPPFLAGS+=      -isystem ${RUMPTOP}/..
   .else
   CPPFLAGS+=      -I${RUMPTOP}/../arch
   CPPFLAGS+=      -I${RUMPTOP}/..
   .endif
   
   LDFLAGS+=       -Wl,-T ${RUMPTOP}/ldscript.rump
   
   RUMP_DIAGNOSTIC?=yes
   .if ${RUMP_DIAGNOSTIC} == "yes"
   CPPFLAGS+=      -DDIAGNOSTIC
   .endif
   
   .ifdef RUMP_DEBUG
   CPPFLAGS+=      -DDEBUG
   .endif
   
 .ifdef RUMP_LOCKDEBUG  .ifdef RUMP_LOCKDEBUG
 CPPFLAGS+=      -DLOCKDEBUG  CPPFLAGS+=      -DLOCKDEBUG
Line 46  CPPFLAGS+= -DLOCKDEBUG
Line 59  CPPFLAGS+= -DLOCKDEBUG
 #LDFLAGS+=      -nodefaultlibs  #LDFLAGS+=      -nodefaultlibs
   
 # make sure __NetBSD__ gets defined (for builds on non-NetBSD)  # make sure __NetBSD__ gets defined (for builds on non-NetBSD)
 CPPFLAGS+=      -D__NetBSD__  # also, give those builds a way to undef the local compiler's macros
   CPPFLAGS+=      -D__NetBSD__ ${RUMPKERN_UNDEF}
   
 RUMPKERNEL=     This is NetBSD and I am the rump.  Good evening.  RUMPKERNEL=     This is NetBSD and I am the rump.  Good evening.
   

Legend:
Removed from v.1.61  
changed lines
  Added in v.1.61.4.2

CVSweb <webmaster@jp.NetBSD.org>