mirror of
https://github.com/Zenithsiz/ftmemsim-valgrind.git
synced 2026-02-06 11:41:34 +00:00
it to setup vsyscall redirects on amd64 and the _dl_sysinfo_int80 redirect on x86. git-svn-id: svn://svn.valgrind.org/valgrind/trunk@3503
24 lines
432 B
Makefile
24 lines
432 B
Makefile
include $(top_srcdir)/Makefile.all.am
|
|
include $(top_srcdir)/Makefile.core-AM_CPPFLAGS.am
|
|
|
|
AM_CFLAGS = $(WERROR) -Winline -Wall -Wshadow -O -fomit-frame-pointer -g
|
|
|
|
noinst_HEADERS = \
|
|
core_platform.h \
|
|
vki_unistd.h
|
|
|
|
noinst_LIBRARIES = libplatform.a
|
|
|
|
|
|
libplatform_a_SOURCES = \
|
|
core_platform.c \
|
|
ldt.c \
|
|
syscall.S \
|
|
syscalls.c
|
|
|
|
if USE_PIE
|
|
libplatform_a_CFLAGS = $(AM_CFLAGS) -fpie
|
|
else
|
|
libplatform_a_CFLAGS = $(AM_CFLAGS)
|
|
endif
|