[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.45 and 1.46

version 1.45, 2009/12/12 17:10:19 version 1.46, 2010/01/31 00:38:36
Line 60  DPSRCS+= ${RUMPTOP}/Makefile.rump
Line 60  DPSRCS+= ${RUMPTOP}/Makefile.rump
 # toolchain to toolchain.  The good news, however, is that this will  # toolchain to toolchain.  The good news, however, is that this will
 # be detected by a compile-time failure, so we can fairly easily manage  # be detected by a compile-time failure, so we can fairly easily manage
 # a quirktable here.  # a quirktable here.
   #
   # We also allow calling ourselves externally with e.g.:
   # make -f /sys/rump/Makefile.rump RUMP_SYMREN=ffs.kobj
   #
 .if ${MACHINE_CPU} == "mips"  .if ${MACHINE_CPU} == "mips"
 _SYMQUIRK='|_gp_disp'  _SYMQUIRK='|_gp_disp'
 .elif ${MACHINE_CPU} == "hppa"  .elif ${MACHINE_CPU} == "hppa"
 _SYMQUIRK='|\$$\$$'  _SYMQUIRK='|\$$\$$'
 .endif  .endif
   
   rump_symren: __archivebuild
   .if !defined(RUMP_SYMREN)
           @echo "Must supply RUMP_SYMREN for target rump_symren"
           @false
   .endif
   
   # if we are called from lib build (RUMP_SYMREN is not specified),
   # build the arrrrchive.  otherwise just rename symbols.
 __archivebuild: .USE  __archivebuild: .USE
   .if defined(RUMP_SYMREN) && defined(RUMPTOP)
           @echo "ERROR: RUMP_SYMREN can only be used standalone"
           @false
   .endif
   .if defined(RUMP_SYMREN)
           ${_MKMSG} " symbol rename " ${RUMP_SYMREN}
   .else
         ${_MKTARGET_BUILD}          ${_MKTARGET_BUILD}
         rm -f ${.TARGET}          rm -f ${.TARGET}
         ${AR} ${_ARFL} ${.TARGET} `NM=${NM} ${LORDER} ${.ALLSRC:M*o} | ${TSORT}`          ${AR} ${_ARFL} ${.TARGET} `NM=${NM} ${LORDER} ${.ALLSRC:M*o} | ${TSORT}`
         ${NM} -go ${.TARGET} | ${TOOL_AWK} '    \  .endif
           ${NM} -go ${RUMP_SYMREN:U${.TARGET}} | ${TOOL_AWK} '    \
             $$NF!~/^(rump|RUMP|__|_GLOBAL_OFFSET_TABLE'${_SYMQUIRK}')/ \              $$NF!~/^(rump|RUMP|__|_GLOBAL_OFFSET_TABLE'${_SYMQUIRK}')/ \
               {printf "%s rumpns_%s\n", $$NF, $$NF}' \                {printf "%s rumpns_%s\n", $$NF, $$NF}' \
             | sort | uniq  > renametab.${.TARGET}              | sort | uniq  > renametab.${.TARGET}
         ${OBJCOPY} --preserve-dates --redefine-syms \          ${OBJCOPY} --preserve-dates --redefine-syms \
             renametab.${.TARGET} ${.TARGET}              renametab.${.TARGET} ${RUMP_SYMREN:U${.TARGET}}
         rm -f renametab.${.TARGET}          rm -f renametab.${.TARGET}
   .if !defined(RUMP_SYMREN)
         ${AR} ${_ARRANFL} ${.TARGET}          ${AR} ${_ARRANFL} ${.TARGET}
   .endif
   
 .-include "${NETBSDSRCDIR}/sys/arch/${MACHINE_CPU}/include/Makefile.inc"  .-include "${NETBSDSRCDIR}/sys/arch/${MACHINE_CPU}/include/Makefile.inc"
 .-include "${NETBSDSRCDIR}/sys/arch/${MACHINE}/include/Makefile.inc"  .-include "${NETBSDSRCDIR}/sys/arch/${MACHINE}/include/Makefile.inc"

Legend:
Removed from v.1.45  
changed lines
  Added in v.1.46

CVSweb <webmaster@jp.NetBSD.org>