Makefile.opt_lib 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298
  1. #
  2. # Copyright (C) 2011-2017 Intel Corporation. All rights reserved.
  3. #
  4. # Redistribution and use in source and binary forms, with or without
  5. # modification, are permitted provided that the following conditions
  6. # are met:
  7. #
  8. # * Redistributions of source code must retain the above copyright
  9. # notice, this list of conditions and the following disclaimer.
  10. # * Redistributions in binary form must reproduce the above copyright
  11. # notice, this list of conditions and the following disclaimer in
  12. # the documentation and/or other materials provided with the
  13. # distribution.
  14. # * Neither the name of Intel Corporation nor the names of its
  15. # contributors may be used to endorse or promote products derived
  16. # from this software without specific prior written permission.
  17. #
  18. # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  19. # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  20. # LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  21. # A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  22. # OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  23. # SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  24. # LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  25. # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  26. # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  27. # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  28. # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  29. #
  30. #
  31. # This Makefile will compile SDK to generate various components
  32. # including:
  33. # - Trusted libraries
  34. # - tstdc: libsgx_tstdc.a
  35. # - tstdcxx: libsgx_tstdcxx.a
  36. # - tcxx: libsgx_tcxx.a
  37. # - tservice: libsgx_tservice.a
  38. # - trts: libsgx_trts.a
  39. # - tcrypto: libsgx_tcrypto.a
  40. # - tkey_exchange: libsgx_tkey_exchange.a
  41. # - tprotected_fs: libsgx_tprotected_fs.a
  42. # - tsetjmp: libsgx_tsetjmp.a
  43. # - tcmalloc: libsgx_tcmalloc.a
  44. # - Untrtusted libraries
  45. # - ukey_exchange: libsgx_ukey_exchange.a
  46. # - uprotected_fs: libsgx_uprotected_fs.a
  47. # - sample_crypto: libsample_crypto.so (for sample code use)
  48. # - ptrace: libsgx_ptrace.so, gdb-sgx-plugin
  49. # - Standalone, untrusted libraries
  50. # - libcapable: libsgx_capable.a libsgx_capable.so
  51. # - Tools
  52. # - signtool: sgx_sign
  53. # - edger8r: sgx_edger8r
  54. # - Simulation libraries and tools
  55. # - simulation: libsgx_trts_sim.a, libsgx_tservice_sim.a, libsgx_urts_sim.a, libsgx_uae_service_sim.a, sgx_config_cpusvn
  56. #
  57. include ../buildenv.mk
  58. LIBTLIBC := $(BUILD_DIR)/libsgx_tstdc.a
  59. LIBTLIBCXX := $(BUILD_DIR)/libsgx_tstdcxx.a
  60. LIBTCXX := $(BUILD_DIR)/libsgx_tcxx.a
  61. LIBTSE := $(BUILD_DIR)/libsgx_tservice.a
  62. CHECK_OPT :=
  63. ifeq ("$(wildcard $(LINUX_EXTERNAL_DIR)/ippcp_internal/inc)", "")
  64. CHECK_OPT := opt_check_failed
  65. endif
  66. .PHONY: opt_check_failed
  67. opt_check_failed:
  68. @echo "ERROR: Please run 'download_prebuilt.sh' to download the prebuilt optimized libraries before compiling."
  69. @echo "Exiting......"
  70. @exit -2
  71. .PHONY: all
  72. all: $(CHECK_OPT)
  73. $(MAKE) components
  74. .PHONY: components
  75. components: tstdc tstdcxx tcxx tservice trts tcrypto tkey_exchange ukey_exchange tprotected_fs uprotected_fs ptrace sample_crypto libcapable simulation signtool edger8r tsetjmp tcmalloc
  76. # ---------------------------------------------------
  77. # tstdc
  78. # includes: tlibc, tlibthread, compiler-rt
  79. # libimf, libirc, libsvml, etc.
  80. # ---------------------------------------------------
  81. .PHONY: tstdc
  82. tstdc: $(LIBTLIBC)
  83. ifeq ($(ARCH), x86_64)
  84. LIBM_PATH := $(LINUX_EXTERNAL_DIR)/libm/Libm_ct_Linux
  85. LIBIRC_PATH := $(LINUX_EXTERNAL_DIR)/libirc/efi2
  86. SVML_PATH := $(LINUX_EXTERNAL_DIR)/libm/SVML_Intel64_Linux
  87. else
  88. LIBM_PATH := $(LINUX_EXTERNAL_DIR)/libm/Libm_Linux
  89. LIBIRC_PATH := $(LINUX_EXTERNAL_DIR)/libirc/ia32
  90. SVML_PATH := $(LINUX_EXTERNAL_DIR)/libm/SVML_IA32_Linux
  91. endif
  92. LIBIRC_NAME := libirc.a
  93. $(LIBTLIBC): tlibthread compiler-rt $(LIBM_PATH)/libimf.a $(LIBIRC_PATH)/$(LIBIRC_NAME) $(SVML_PATH)/libsvml.a
  94. $(MAKE) -C tlibc/ -j4 2> /dev/null
  95. @$(MKDIR) $(BUILD_DIR)/.libimf $(BUILD_DIR)/.libirc $(BUILD_DIR)/.libsvml $(BUILD_DIR)/.tlibc $(BUILD_DIR)/.tlibthread
  96. @$(RM) -f $(BUILD_DIR)/.libimf/* $(BUILD_DIR)/.libirc/* $(BUILD_DIR)/.libsvml/* $(BUILD_DIR)/.tlibc/* $(BUILD_DIR)/.tlibthread/*
  97. @cd $(BUILD_DIR)/.libimf && $(AR) x $(LIBM_PATH)/libimf.a
  98. @cd $(BUILD_DIR)/.libirc && $(AR) x $(LIBIRC_PATH)/$(LIBIRC_NAME)
  99. @cd $(BUILD_DIR)/.libsvml && $(AR) x $(SVML_PATH)/libsvml.a
  100. @cd $(BUILD_DIR)/.tlibc && $(AR) x $(LINUX_SDK_DIR)/tlibc/libtlibc.a
  101. @cd $(BUILD_DIR)/.tlibthread && $(AR) x $(LINUX_SDK_DIR)/tlibthread/libtlibthread.a
  102. $(CP) compiler-rt/libcompiler-rt.a $@
  103. $(AR) rsD $@ $(BUILD_DIR)/.libimf/*.o $(BUILD_DIR)/.libirc/*.o $(BUILD_DIR)/.libsvml/*.o $(BUILD_DIR)/.tlibc/*.o $(BUILD_DIR)/.tlibthread/*.o
  104. @$(RM) -rf $(BUILD_DIR)/.libimf $(BUILD_DIR)/.libirc $(BUILD_DIR)/.libsvml $(BUILD_DIR)/.tlibc $(BUILD_DIR)/.tlibthread
  105. .PHONY: tlibthread
  106. tlibthread:
  107. $(MAKE) -C tlibthread/
  108. .PHONY: compiler-rt
  109. compiler-rt:
  110. $(MAKE) -C compiler-rt/ 2> /dev/null
  111. # ---------------------------------------------------
  112. # tstdcxx
  113. # includes: cpprt, tlibstdcxx
  114. # ---------------------------------------------------
  115. .PHONY: tstdcxx
  116. tstdcxx: $(LIBTLIBCXX)
  117. $(LIBTLIBCXX): cpprt tlibstdcxx
  118. @$(MKDIR) $(BUILD_DIR)/.cpprt $(BUILD_DIR)/.tlibstdcxx
  119. @$(RM) -f $(BUILD_DIR)/.cpprt/* $(BUILD_DIR)/.tlibstdcxx/*
  120. @cd $(BUILD_DIR)/.cpprt && $(AR) x $(LINUX_SDK_DIR)/cpprt/libcpprt.a
  121. @cd $(BUILD_DIR)/.tlibstdcxx && $(AR) x $(LINUX_SDK_DIR)/tlibstdcxx/libtlibstdcxx.a
  122. $(AR) rcsD $@ $(BUILD_DIR)/.cpprt/*.o $(BUILD_DIR)/.tlibstdcxx/*.o
  123. @$(RM) -rf $(BUILD_DIR)/.cpprt $(BUILD_DIR)/.tlibstdcxx
  124. .PHONY: cpprt
  125. cpprt:
  126. $(MAKE) -C cpprt
  127. .PHONY: tlibstdcxx
  128. tlibstdcxx: $(BUILD_DIR)
  129. $(MAKE) -C tlibstdcxx/ 2> /dev/null
  130. $(CP) tlibstdcxx/README.sgx $(BUILD_DIR)/STLport_Changes_SGX.txt
  131. # ---------------------------------------------------
  132. # tcxx
  133. # includes: cpprt, tlibcxx
  134. # ---------------------------------------------------
  135. .PHONY: tcxx
  136. tcxx: $(LIBTCXX)
  137. $(LIBTCXX): cpprt tlibcxx
  138. @$(MKDIR) $(BUILD_DIR)/._cpprt $(BUILD_DIR)/.tlibcxx
  139. @$(RM) -f $(BUILD_DIR)/._cpprt/* $(BUILD_DIR)/.tlibcxx/*
  140. @cd $(BUILD_DIR)/._cpprt && $(AR) x $(LINUX_SDK_DIR)/cpprt/libcpprt.a
  141. @cd $(BUILD_DIR)/.tlibcxx && $(AR) x $(LINUX_SDK_DIR)/tlibcxx/libcxx.a
  142. $(AR) rcsD $@ $(BUILD_DIR)/._cpprt/*.o $(BUILD_DIR)/.tlibcxx/*.o
  143. @$(RM) -rf $(BUILD_DIR)/._cpprt $(BUILD_DIR)/.tlibcxx
  144. .PHONY: tlibcxx
  145. tlibcxx: $(BUILD_DIR)
  146. $(MAKE) -C tlibcxx/ 2> /dev/null
  147. $(CP) tlibcxx/README.sgx $(BUILD_DIR)/libc++_Changes_SGX.txt
  148. # ---------------------------------------------------
  149. # tservice
  150. # includes: selib, tseal, tae_service, ec_dh_lib
  151. # ---------------------------------------------------
  152. .PHONY: tservice
  153. tservice: $(LIBTSE)
  154. $(LIBTSE): selib tseal tae_service
  155. @$(MKDIR) $(BUILD_DIR)/.tservice
  156. @$(RM) -f $(BUILD_DIR)/.tservice/*
  157. cd $(BUILD_DIR)/.tservice && $(AR) x $(LINUX_SDK_DIR)/tseal/linux/libtSeal.a
  158. cd $(BUILD_DIR)/.tservice && $(AR) x $(LINUX_SDK_DIR)/tae_service/libtae_service.a
  159. $(CP) $(LINUX_SDK_DIR)/selib/linux/libselib.a $@
  160. $(AR) rsD $@ $(BUILD_DIR)/.tservice/*.o
  161. @$(RM) -rf $(BUILD_DIR)/.tservice
  162. .PHONY: selib
  163. selib:
  164. $(MAKE) -C selib/linux/
  165. .PHONY: tseal
  166. tseal:
  167. $(MAKE) -C tseal/linux/
  168. .PHONY: tae_service
  169. tae_service: edger8r
  170. $(MAKE) -C tae_service MODE=$(MODE)
  171. # ---------------------------------------------------
  172. # Other trusted libraries
  173. # ---------------------------------------------------
  174. .PHONY: trts
  175. trts:
  176. $(MAKE) -C trts/
  177. .PHONY: tcrypto
  178. tcrypto:
  179. $(MAKE) -C tlibcrypto/
  180. .PHONY: tkey_exchange
  181. tkey_exchange: edger8r
  182. $(MAKE) -C tkey_exchange
  183. .PHONY: tsetjmp
  184. tsetjmp:
  185. $(MAKE) -C tsetjmp/
  186. .PHONY: tcmalloc
  187. tcmalloc:
  188. $(MAKE) -C gperftools/
  189. .PHONY: tprotected_fs
  190. tprotected_fs: edger8r
  191. $(MAKE) -C protected_fs/sgx_tprotected_fs
  192. # ---------------------------------------------------
  193. # Untrusted libraries
  194. # ---------------------------------------------------
  195. .PHONY: ukey_exchange
  196. ukey_exchange:
  197. $(MAKE) -C ukey_exchange
  198. .PHONY: uprotected_fs
  199. uprotected_fs: edger8r
  200. $(MAKE) -C protected_fs/sgx_uprotected_fs
  201. .PHONY: ptrace
  202. ptrace:
  203. $(MAKE) -C debugger_interface/linux/
  204. .PHONY: sample_crypto
  205. sample_crypto:
  206. $(MAKE) -C sample_libcrypto
  207. # ---------------------------------------------------
  208. # standalone, untrusted libraries
  209. # ---------------------------------------------------
  210. .PHONY: libcapable
  211. libcapable:
  212. $(MAKE) -C libcapable/linux/
  213. # ---------------------------------------------------
  214. # simualtion libraries and tools
  215. # ---------------------------------------------------
  216. .PHONY: simulation
  217. simulation: edger8r
  218. $(MAKE) -C simulation/
  219. # ---------------------------------------------------
  220. # tools
  221. # ---------------------------------------------------
  222. .PHONY: signtool
  223. signtool:
  224. $(MAKE) -C sign_tool/SignTool/
  225. .PHONY: edger8r
  226. edger8r:
  227. $(MAKE) -C edger8r/linux/
  228. $(BUILD_DIR):
  229. $(MKDIR) $@
  230. .PHONY: clean
  231. clean:
  232. $(MAKE) -C tlibc/ clean
  233. $(MAKE) -C tlibthread/ clean
  234. $(MAKE) -C compiler-rt/ clean
  235. $(MAKE) -C cpprt clean
  236. $(MAKE) -C tlibstdcxx/ clean
  237. $(MAKE) -C tlibcxx/ clean
  238. $(MAKE) -C tseal/linux/ clean
  239. $(MAKE) -C selib/linux/ clean
  240. $(MAKE) -C tae_service/ clean
  241. $(MAKE) -C trts/ clean
  242. $(MAKE) -C tsetjmp/ clean
  243. $(MAKE) -C gperftools/ clean
  244. $(MAKE) -C tlibcrypto/ clean
  245. $(MAKE) -C tkey_exchange/ clean
  246. $(MAKE) -C ukey_exchange/ clean
  247. $(MAKE) -C protected_fs/sgx_tprotected_fs/ clean
  248. $(MAKE) -C protected_fs/sgx_uprotected_fs/ clean
  249. $(MAKE) -C debugger_interface/linux/ clean
  250. $(MAKE) -C sample_libcrypto/ clean
  251. $(MAKE) -C libcapable/linux/ clean
  252. $(MAKE) -C simulation/ clean
  253. $(MAKE) -C sign_tool/SignTool clean
  254. $(MAKE) -C edger8r/linux clean
  255. @$(RM) $(LIBTLIBC) $(LIBTLIBCXX) $(LIBTSE)
  256. @$(RM) $(BUILD_DIR)/STLport_Changes_SGX.txt
  257. @$(RM) $(BUILD_DIR)/libc++_Changes_SGX.txt