(1) Add --enable-uti option. The binary-patch library is
preloaded with this option.
(2) Binary-patching is done by syscall_intercept developed by Intel
This commit includes the following fixes:
(1) Fix do_exit() and terminate() handling
(2) Fix timing of killing mcexec threads when McKernel thread calls terminate()
Change-Id: Iad885e1e5540ed79f0808debd372463e3b8fecea
33 lines
726 B
Makefile
33 lines
726 B
Makefile
CC=@CC@
|
|
AR=ar
|
|
BINDIR=@BINDIR@
|
|
KDIR ?= @KDIR@
|
|
CFLAGS=-Wall -O -I.
|
|
VPATH=@abs_srcdir@
|
|
TARGET=../../libmcexec.a ../../libsyscall_intercept_arch.a
|
|
LIBS=@LIBS@
|
|
|
|
all: $(TARGET)
|
|
|
|
../../libmcexec.a: archdep.o arch_syscall.o
|
|
$(AR) cr ../../libmcexec.a archdep.o arch_syscall.o
|
|
|
|
archdep.o: archdep.S
|
|
$(CC) -c -I${KDIR} $(CFLAGS) $(EXTRA_CFLAGS) -fPIE -pie -pthread $<
|
|
|
|
arch_syscall.o: arch_syscall.c
|
|
$(CC) -c -I${KDIR} $(CFLAGS) $(EXTRA_CFLAGS) -fPIE -pie -pthread $<
|
|
|
|
../../libsyscall_intercept_arch.a: archdep_c.o
|
|
$(AR) cr ../../libsyscall_intercept_arch.a archdep_c.o
|
|
|
|
archdep_c.o: archdep_c.c
|
|
$(CC) -c -I${KDIR} $(CFLAGS) $(EXTRA_CFLAGS) -fPIE -pie -pthread $<
|
|
|
|
clean:
|
|
$(RM) $(TARGET) *.o
|
|
|
|
.PHONY: all clean install
|
|
|
|
install:
|