123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186 |
- #
- # Copyright (C) 2011-2017 Intel Corporation. All rights reserved.
- #
- # Redistribution and use in source and binary forms, with or without
- # modification, are permitted provided that the following conditions
- # are met:
- #
- # * Redistributions of source code must retain the above copyright
- # notice, this list of conditions and the following disclaimer.
- # * Redistributions in binary form must reproduce the above copyright
- # notice, this list of conditions and the following disclaimer in
- # the documentation and/or other materials provided with the
- # distribution.
- # * Neither the name of Intel Corporation nor the names of its
- # contributors may be used to endorse or promote products derived
- # from this software without specific prior written permission.
- #
- # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
- # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
- # LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
- # A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
- # OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
- # SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
- # LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
- # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
- # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- #
- #
- include ../../../../buildenv.mk
- SIM_DIR := $(LINUX_SDK_DIR)/simulation
- VTUNE_DIR = $(LINUX_EXTERNAL_DIR)/vtune/linux
- ifndef DEBUG
- CXXFLAGS += -DDISABLE_TRACE
- CFLAGS += -DDISABLE_TRACE
- endif
- CXXFLAGS += -fPIC -DSE_SIM -Werror -g
- CFLAGS += -fPIC -DSE_SIM -Werror -g
- CPPFLAGS += $(ADDED_INC) #for ubuntu 11 and later version
- CPPFLAGS += -I$(COMMON_DIR)/inc \
- -I$(COMMON_DIR)/inc/internal/linux \
- -I$(LINUX_PSW_DIR)/urts \
- -I$(LINUX_PSW_DIR)/urts/parser \
- -I$(VTUNE_DIR)/include \
- -I$(VTUNE_DIR)/sdk/src/ittnotify
- CPPFLAGS += -I$(COMMON_DIR)/inc/internal \
- -I$(LINUX_PSW_DIR)/urts/linux \
- -I$(SIM_DIR)/tinst \
- -I$(SIM_DIR)/uinst
- DIR1 := $(LINUX_PSW_DIR)/urts/
- DIR2 := $(LINUX_PSW_DIR)/urts/linux/
- DIR3 := $(LINUX_PSW_DIR)/urts/parser/
- DIR4 := ../
- DIR5 := $(LINUX_PSW_DIR)/../common/src/linux
- DIR6 := $(LINUX_PSW_DIR)/../common/src
- LDFLAGS += -L$(COMMON_DIR)/se_wrapper \
- -L$(SIM_DIR)/uae_service_sim/linux
- LDFLAGS += -L$(VTUNE_DIR)/sdk/src/ittnotify/ -littnotify -ldl
- OBJ1 := enclave.o \
- tcs.o \
- loader.o \
- se_detect.o \
- enclave_mutex.o \
- routine.o \
- urts_xsave.o \
- se_ocalls.o \
- cpu_features.o \
- node.o \
- launch_checker.o
- OBJ2 := urts.o \
- misc.o \
- sig_handler.o \
- debugger_support.o \
- get_thread_id.o \
- urts_trim.o \
- urts_emodpr.o
- OBJ3 := section.o \
- elfparser.o
- OBJ4 := enter_enclave.o \
- xsave_gnu.o
- OBJ5 := enclave_creator_sim.o \
- cpusvn_util.o \
- crypto_evp_digest.o
- OBJ6 := $(SIM_DIR)/driver_api/driver_api.o \
- $(SIM_DIR)/assembly/linux/lowlib.o \
- $(SIM_DIR)/assembly/linux/sgxsim.o \
- $(SIM_DIR)/uinst/u_instructions.o \
- $(SIM_DIR)/uinst/enclave_mngr.o \
- $(SIM_DIR)/uinst/linux/set_tls.o \
- $(SIM_DIR)/uinst/linux/restore_tls.o
- CPP_OBJ := $(OBJ1) $(OBJ2) $(OBJ3) $(OBJ5)
- OBJ := $(CPP_OBJ) $(OBJ4)
- vpath %.cpp .:$(DIR1):$(DIR2):$(DIR3):$(DIR4):$(DIR6)
- vpath %.S .:$(DIR2):$(DIR5)
- LDFLAGS += $(COMMON_LDFLAGS) -Wl,--version-script=$(LINUX_PSW_DIR)/urts/linux/urts.lds
- LIBURTSSIM_SHARED := libsgx_urts_sim.so
- LIBURTSSIM_DEBUG := libsgx_urts_sim.so.debug
- LIBURTS_DEPLOY := libsgx_urts_deploy.so
- LDLIBS += -lwrapper -lcrypto -Wl,-Bdynamic -Wl,-Bsymbolic -lsgx_uae_service_sim
- SONAME = $(LIBURTSSIM_SHARED)
- .PHONY: all
- all: $(LIBURTSSIM_SHARED) $(LIBURTSSIM_DEBUG) $(LIBURTS_DEPLOY)| $(BUILD_DIR)
- $(CP) $(LIBURTSSIM_SHARED) $|
- $(CP) $(LIBURTS_DEPLOY) $|
- ifndef DEBUG
- $(CP) $(LIBURTSSIM_DEBUG) $|
- endif
- $(LIBURTSSIM_SHARED): simasm uinst driver_api wrapper uae_service_sim $(OBJ) $(OBJ6) ittnotify
- $(CXX) $(CXXFLAGS) -shared -Wl,-soname=$(SONAME) $(OBJ) $(OBJ6) $(LDFLAGS) $(LDLIBS) -o $@
- $(LIBURTSSIM_DEBUG): $(LIBURTSSIM_SHARED)
- ifndef DEBUG
- $(CP) $(LIBURTSSIM_SHARED) $(LIBURTSSIM_SHARED).orig
- $(OBJCOPY) --only-keep-debug $(LIBURTSSIM_SHARED) $(LIBURTSSIM_DEBUG)
- $(STRIP) -g $(LIBURTSSIM_SHARED)
- $(OBJCOPY) --add-gnu-debuglink=$(LIBURTSSIM_DEBUG) $(LIBURTSSIM_SHARED)
- endif
- $(BUILD_DIR):
- @$(MKDIR) $@
- $(OBJ4): %.o: %.S
- $(CC) -c $(CFLAGS) $(CPPFLAGS) $< -o $@
- $(CPP_OBJ): %.o: %.cpp
- $(CXX) -c $(CXXFLAGS) $(CPPFLAGS) $< -o $@
- .PHONY: wrapper
- wrapper:
- $(MAKE) -C $(COMMON_DIR)/se_wrapper/
- .PHONY: driver_api
- driver_api:
- $(MAKE) -C $(SIM_DIR)/driver_api/
- .PHONY: simasm
- simasm:
- $(MAKE) -C $(SIM_DIR)/assembly/
- .PHONY: uinst
- uinst:
- $(MAKE) -C $(SIM_DIR)/uinst/
- .PHONY: uae_service_sim
- uae_service_sim:
- $(MAKE) -C $(SIM_DIR)/uae_service_sim/linux
- .PHONY: ittnotify
- ittnotify:
- $(MAKE) -C $(VTUNE_DIR)/sdk/src/ittnotify/
- $(LIBURTS_DEPLOY):../urts_deploy.c
- $(CC) -I$(COMMON_DIR)/inc -shared -fPIC -Wl,-soname=libsgx_urts.so $< -o $@
- .PHONY: clean
- clean::
- @$(RM) *.o $(LIBURTSSIM_SHARED) $(LIBURTS_DEPLOY) $(LIBURTSSIM_DEBUG) $(LIBURTSSIM_SHARED).orig
- @$(RM) $(BUILD_DIR)/$(LIBURTSSIM_SHARED) $(BUILD_DIR)/$(LIBURTS_DEPLOY) $(BUILD_DIR)/$(LIBURTSSIM_DEBUG)
- $(MAKE) -C $(COMMON_DIR)/se_wrapper clean
- $(MAKE) -C $(SIM_DIR)/driver_api/ clean
- $(MAKE) -C $(SIM_DIR)/assembly/ clean
- $(MAKE) -C $(SIM_DIR)/uinst/ clean
- $(MAKE) -C $(SIM_DIR)/uae_service_sim/linux clean
- $(MAKE) -C $(VTUNE_DIR)/sdk/src/ittnotify/ clean
|