mirror of
https://github.com/Zenithsiz/ftmemsim-valgrind.git
synced 2026-02-08 04:55:52 +00:00
- one declarations from core.h removed, one moved to within m_syscalls. - all the x86 LDT stuff made local to m_syscalls. x86-linux/ldt.c removed as a result. x86/state.c slimmed down, too. x86/x86_private.h removed too. - all the AMD64 LDT stuff was deleted, since it was all commented out. It can be added back in later in the appropriate places if necessary. Thus amd64-linux/ldt.c and amd64/amd64_private.h were removed. - other minor naming changes I hope I didn't break AMD64 compilation. git-svn-id: svn://svn.valgrind.org/valgrind/trunk@3726
21 lines
396 B
Makefile
21 lines
396 B
Makefile
include $(top_srcdir)/Makefile.all.am
|
|
include $(top_srcdir)/Makefile.core-AM_CPPFLAGS.am
|
|
|
|
AM_CFLAGS = $(WERROR) -Wmissing-prototypes -Winline -Wall -Wshadow -O -g
|
|
|
|
noinst_HEADERS = \
|
|
core_platform.h \
|
|
vki_unistd.h
|
|
|
|
noinst_LIBRARIES = libplatform.a
|
|
|
|
|
|
libplatform_a_SOURCES = \
|
|
core_platform.c
|
|
|
|
if USE_PIE
|
|
libplatform_a_CFLAGS = $(AM_CFLAGS) -fpie
|
|
else
|
|
libplatform_a_CFLAGS = $(AM_CFLAGS)
|
|
endif
|