but use normal references instead of weak. This makes the statically linked binaries to use fast gettimeofday(2) by forcing the linker to resolve references and providing the neccessary functions. Reported by: bde Tested by: marius (sparc64) MFC after: 2 weeks
16 lines
442 B
Makefile
16 lines
442 B
Makefile
# $FreeBSD$
|
|
|
|
SRCS+= __vdso_gettc.c
|
|
|
|
MDASM= Ovfork.S brk.S cerror.S exect.S \
|
|
fork.S pipe.S ptrace.S sbrk.S syscall.S
|
|
|
|
# Don't generate default code for these syscalls:
|
|
NOASM= break.o exit.o ftruncate.o getlogin.o lseek.o mmap.o \
|
|
openbsd_poll.o pread.o pwrite.o sstk.o truncate.o vfork.o yield.o
|
|
|
|
PSEUDO= _exit.o _getlogin.o
|
|
.if !defined(WITHOUT_SYSCALL_COMPAT)
|
|
PSEUDO+= _pread.o _pwrite.o _lseek.o _mmap.o _ftruncate.o _truncate.o
|
|
.endif
|