Rename ${SRCS.{alpha,arm,...}.gen} to ${LSRCS.{alpha,arm,...}.gen} becausethey ended up in ${LSRCS}, not ${SRCS}. ${SRCS.*} namespace will be usedfor more useful things. No functional changes int
Rename ${SRCS.{alpha,arm,...}.gen} to ${LSRCS.{alpha,arm,...}.gen} becausethey ended up in ${LSRCS}, not ${SRCS}. ${SRCS.*} namespace will be usedfor more useful things. No functional changes intended.
show more ...
Rework how dependency generation is performed:* DPSRCS contains extra dependencies, but is _NOT_ added to CLEANFILES. This is a change of behaviour. If a Makefile wants the clean semantics it
Rework how dependency generation is performed:* DPSRCS contains extra dependencies, but is _NOT_ added to CLEANFILES. This is a change of behaviour. If a Makefile wants the clean semantics it must specifically append to CLEANFILES. Resolves PR toolchain/5204.* To recap: .d (depend) files are generated for all files in SRCS and DPSRCS that have a suffix of: .c .m .s .S .C .cc .cpp .cxx* If YHEADER is set, automatically add the .y->.h to DPSRCS & CLEANFILES* Ensure that ${OBJS} ${POBJS} ${LOBJS} ${SOBJS} *.d depend upon ${DPSRCS}* Deprecate the (short lived) DEPENDSRCSUpdate the various Makefiles to these new semantics; generally eitheradding to CLEANFILES (because DPSRCS doesn't do that anymore), or replacingspecific .o dependencies with DPSRCS entries.Tested with "make -j 8 distribution" and "make distribution".
Move the bswap functions from libutil to libc (this bups theminor of libc and the major of libutil). For little-endian architecturesmerge the bnswap() assembly versions with nto* and hton* using sy
Move the bswap functions from libutil to libc (this bups theminor of libc and the major of libutil). For little-endian architecturesmerge the bnswap() assembly versions with nto* and hton* using symbolsaliasing. Use symbol renaming for the bswap function in this case to avoidnamespace pollution.Declare bswap* in machine/bswap.h, not machine/endian.h. For little-endianmachines, common code for inline macros go in machine/byte_swap.hSync libkern with libc.Adjust #include in kernel sources for machine/bswap.h.
remove these, they are no longer necessary or appropriate
File which provides lint stubs for the functions defined bymachine-dependent assembly code, whose source files live in its directory.(Not necessarily complete yet.)
catch up with <machine/asm.h> changes, SYS.h changes, and the removalof DEFS.h
add assembler versions of the byte swap macros (only compile ntoh andhton variants, not byte_swap variants, which are just included), andcopy them to libkern when appropriate.
need these now, with new net Makefile.inc