Skip to content

Commit 9fafc27

Browse files
committed
Linux 2.25 Open Source Gold Release
Upgraded to OpenSSL 3.0.14. Upgraded Intel(R) Integrated Performance Primitives (IPP) Cryptography library to version 2021.12.1. Supported FIPS 140-3 Certifiable IPP Crypto based Trusted Library. Upgraded Intel SGX Architecture Enclaves based on new IPP crypto library. Upgraded Intel DCAP Quote Verification Enclave to integrate OpenSSL/SgxSSL 3.0.14. Removed Intel DCAP PCCS from repository. Added Ubuntu* 24.04 LTS 64-bit Server support. Fixed bug. Note that PCCS is not available from this release. Please follow DCAP installation guide to use `PCCSAdminTool` to retrieve the attestation collaterals or use old version PCCS. Signed-off-by: Li, Xun <[email protected]>
1 parent c1ceb4f commit 9fafc27

File tree

131 files changed

+4714
-2725
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

131 files changed

+4714
-2725
lines changed

Makefile

+20-17
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
#
3131

3232
include buildenv.mk
33-
.PHONY: all preparation psw sdk clean rebuild sdk_install_pkg psw_install_pkg tdx
33+
.PHONY: all tips preparation psw sdk_no_mitigation sdk clean rebuild tdx servtd_attest servtd_attest_preparation ipp sdk_install_pkg_no_mitigation sdk_install_pkg sdk_install_pkg_from_source psw_install_pkg
3434

3535
all: tips
3636

@@ -51,6 +51,8 @@ preparation:
5151
# As SDK build needs to clone and patch openmp, we cannot support the mode that download the source from github as zip.
5252
# Only enable the download from git
5353
git submodule update --init --recursive
54+
cd external/dcap_source/external/jwt-cpp && git apply ../0001-Add-a-macro-to-disable-time-support-in-jwt-for-SGX.patch >/dev/null 2>&1 || \
55+
git apply ../0001-Add-a-macro-to-disable-time-support-in-jwt-for-SGX.patch -R --check
5456
./external/dcap_source/QuoteVerification/prepare_sgxssl.sh nobuild
5557
cd external/openmp/openmp_code && git apply ../0001-Enable-OpenMP-in-SGX.patch >/dev/null 2>&1 || git apply ../0001-Enable-OpenMP-in-SGX.patch --check -R
5658
cd external/protobuf/protobuf_code && git apply ../sgx_protobuf.patch >/dev/null 2>&1 || git apply ../sgx_protobuf.patch --check -R
@@ -60,6 +62,8 @@ preparation:
6062
cd external/cbor && cp -r libcbor sgx_libcbor
6163
cd external/cbor/libcbor && git apply ../raw_cbor.patch >/dev/null 2>&1 || git apply ../raw_cbor.patch --check -R
6264
cd external/cbor/sgx_libcbor && git apply ../sgx_cbor.patch >/dev/null 2>&1 || git apply ../sgx_cbor.patch --check -R
65+
cd external/ippcp_internal/ipp-crypto && git apply ../0001-IPP-crypto-for-SGX.patch > /dev/null 2>&1 || git apply ../0001-IPP-crypto-for-SGX.patch --check -R
66+
cd external/ippcp_internal/ipp-crypto && mkdir -p build
6367
./download_prebuilt.sh
6468
./external/dcap_source/QuoteGeneration/download_prebuilt.sh
6569

@@ -101,13 +105,26 @@ servtd_attest_preparation:
101105
./external/sgx-emm/create_symlink.sh
102106
./external/dcap_source/QuoteVerification/prepare_sgxssl.sh nobuild
103107

108+
ipp:
109+
$(MAKE) -C external/ippcp_internal/ clean
110+
$(MAKE) -C external/ippcp_internal/ MITIGATION-CVE-2020-0551=LOAD
111+
$(MAKE) -C external/ippcp_internal/ clean
112+
$(MAKE) -C external/ippcp_internal/ MITIGATION-CVE-2020-0551=CF
113+
$(MAKE) -C external/ippcp_internal/ clean
114+
$(MAKE) -C external/ippcp_internal/
115+
104116
# Generate SE SDK Install package
105117
sdk_install_pkg_no_mitigation: sdk_no_mitigation
106118
./linux/installer/bin/build-installpkg.sh sdk
107119

108120
sdk_install_pkg: sdk
109121
./linux/installer/bin/build-installpkg.sh sdk cve-2020-0551
110122

123+
sdk_install_pkg_from_source:
124+
$(MAKE) ipp
125+
$(MAKE) sdk
126+
./linux/installer/bin/build-installpkg.sh sdk cve-2020-0551
127+
111128
psw_install_pkg: psw
112129
ifeq ("$(wildcard ./external/dcap_source/QuoteGeneration/psw/ae/data/prebuilt/libsgx_qe3.signed.so)", "")
113130
./external/dcap_source/QuoteGeneration/download_prebuilt.sh
@@ -231,11 +248,6 @@ deb_libsgx_dcap_default_qpl:
231248
$(MAKE) -C external/dcap_source/QuoteGeneration deb_sgx_dcap_default_qpl_pkg
232249
$(CP) external/dcap_source/QuoteGeneration/installer/linux/deb/libsgx-dcap-default-qpl/libsgx-dcap-default-qpl*deb ./linux/installer/deb/sgx-aesm-service/
233250

234-
.PHONY: deb_libsgx_dcap_pccs
235-
deb_libsgx_dcap_pccs:
236-
$(MAKE) -C external/dcap_source/QuoteGeneration deb_sgx_dcap_pccs_pkg
237-
$(CP) external/dcap_source/QuoteGeneration/installer/linux/deb/sgx-dcap-pccs/sgx-dcap-pccs*deb ./linux/installer/deb/sgx-aesm-service/
238-
239251
.PHONY: deb_libsgx_dcap_ql
240252
deb_libsgx_dcap_ql: deb_libsgx_pce_logic
241253
$(MAKE) -C external/dcap_source/QuoteGeneration deb_sgx_dcap_ql_pkg
@@ -284,7 +296,6 @@ deb_psw_pkg: deb_libsgx_headers_pkg \
284296
deb_libsgx_ae_qe3 \
285297
deb_libsgx_ae_id_enclave \
286298
deb_libsgx_dcap_default_qpl \
287-
deb_libsgx_dcap_pccs \
288299
deb_libsgx_dcap_ql \
289300
deb_libsgx_ae_qve \
290301
deb_sgx_dcap_quote_verify \
@@ -410,11 +421,6 @@ rpm_libsgx_dcap_default_qpl:
410421
$(MAKE) -C external/dcap_source/QuoteGeneration rpm_sgx_dcap_default_qpl_pkg
411422
$(CP) external/dcap_source/QuoteGeneration/installer/linux/rpm/libsgx-dcap-default-qpl/libsgx-dcap-default-qpl*.rpm ./linux/installer/rpm/sgx-aesm-service/
412423

413-
.PHONY: rpm_libsgx_dcap_pccs
414-
rpm_libsgx_dcap_pccs:
415-
$(MAKE) -C external/dcap_source/QuoteGeneration rpm_sgx_dcap_pccs_pkg
416-
$(CP) external/dcap_source/QuoteGeneration/installer/linux/rpm/sgx-dcap-pccs/sgx-dcap-pccs*.rpm ./linux/installer/rpm/sgx-aesm-service/
417-
418424
.PHONY: rpm_libsgx_dcap_ql
419425
rpm_libsgx_dcap_ql:
420426
$(MAKE) -C external/dcap_source/QuoteGeneration rpm_sgx_dcap_ql_pkg
@@ -463,7 +469,6 @@ rpm_psw_pkg: rpm_libsgx_headers_pkg \
463469
rpm_libsgx_ae_qe3 \
464470
rpm_libsgx_ae_id_enclave \
465471
rpm_libsgx_dcap_default_qpl \
466-
rpm_libsgx_dcap_pccs \
467472
rpm_libsgx_dcap_ql \
468473
rpm_libsgx_ae_qve \
469474
rpm_sgx_dcap_quote_verify \
@@ -486,8 +491,6 @@ clean:
486491
@$(RM) -r $(ROOT_DIR)/build
487492
@$(RM) -r linux/installer/bin/install-sgx-*.bin*.withLicense
488493
@$(RM) -r linux/installer/bin/sgx_linux*.bin
489-
@$(RM) -f ./linux/installer/deb/sgx-aesm-service/sgx-dcap-pccs*deb
490-
@$(RM) -f ./linux/installer/rpm/sgx-aesm-service/sgx-dcap-pccs*rpm
491494
./linux/installer/deb/sgx-aesm-service/clean.sh
492495
./linux/installer/deb/libsgx-epid/clean.sh
493496
./linux/installer/deb/libsgx-launch/clean.sh
@@ -507,6 +510,7 @@ clean:
507510
./linux/installer/rpm/libsgx-headers/clean.sh
508511
./linux/installer/rpm/sdk/clean.sh
509512
./linux/installer/common/local_repo_builder/local_repo_builder.sh rpm clean
513+
$(MAKE) -C external/ippcp_internal/ clean
510514
ifeq ("$(shell test -f external/dcap_source/QuoteVerification/dcap_tvl/Makefile && echo TVL Makefile exists)", "TVL Makefile exists")
511515
$(MAKE) -C external/dcap_source/QuoteVerification/dcap_tvl MITIGATION-CVE-2020-0551=LOAD clean
512516
$(MAKE) -C external/dcap_source/QuoteVerification/dcap_tvl MITIGATION-CVE-2020-0551=CF clean
@@ -527,7 +531,6 @@ ifeq ("$(shell test -f external/dcap_source/QuoteVerification/Makefile && echo M
527531
./external/dcap_source/QuoteGeneration/installer/linux/deb/libsgx-pce-logic/clean.sh
528532
./external/dcap_source/QuoteGeneration/installer/linux/deb/libsgx-qe3-logic/clean.sh
529533
./external/dcap_source/QuoteGeneration/installer/linux/deb/libsgx-dcap-quote-verify/clean.sh
530-
./external/dcap_source/QuoteGeneration/installer/linux/deb/sgx-dcap-pccs/clean.sh
531534
./external/dcap_source/QuoteGeneration/installer/linux/deb/tee-appraisal-tool/clean.sh
532535
./external/dcap_source/QuoteGeneration/installer/linux/rpm/libsgx-ae-qve/clean.sh
533536
./external/dcap_source/QuoteGeneration/installer/linux/rpm/libsgx-ae-qe3/clean.sh
@@ -541,7 +544,6 @@ ifeq ("$(shell test -f external/dcap_source/QuoteVerification/Makefile && echo M
541544
./external/dcap_source/QuoteGeneration/installer/linux/rpm/libsgx-pce-logic/clean.sh
542545
./external/dcap_source/QuoteGeneration/installer/linux/rpm/libsgx-qe3-logic/clean.sh
543546
./external/dcap_source/QuoteGeneration/installer/linux/rpm/libsgx-dcap-quote-verify/clean.sh
544-
./external/dcap_source/QuoteGeneration/installer/linux/rpm/sgx-dcap-pccs/clean.sh
545547
./external/dcap_source/QuoteGeneration/installer/linux/rpm/tee-appraisal-tool/clean.sh
546548
endif
547549

@@ -560,3 +562,4 @@ distclean:
560562
$(RM) -rf external/dcap_source/QuoteGeneration/'Intel redistributable binary.txt'
561563
$(RM) -rf external/dcap_source/QuoteVerification/sgxssl/
562564
git submodule deinit --all -f
565+
$(RM) -rf dcap-trunk external/dcap_source external/openmp/openmp_code external/protobuf/protobuf_code

README.md

+14-14
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ Build the Intel(R) SGX SDK and Intel(R) SGX PSW Package
9191
* Ubuntu\* 20.04 LTS Desktop 64bits
9292
* Ubuntu\* 20.04 LTS Server 64bits
9393
* Ubuntu\* 22.04 LTS Server 64bits
94-
* Ubuntu\* 23.10 Server 64bits
94+
* Ubuntu\* 24.04 LTS Server 64bits
9595
* Red Hat Enterprise Linux Server release 9.2 64bits
9696
* CentOS Stream 9 64bits
9797
* CentOS 8.3 64bits
@@ -105,7 +105,7 @@ Build the Intel(R) SGX SDK and Intel(R) SGX PSW Package
105105
$ sudo apt-get install build-essential ocaml ocamlbuild automake autoconf libtool wget python3 libssl-dev git cmake perl
106106
$ sudo update-alternatives --install /usr/bin/python python /usr/bin/python3 1
107107
```
108-
* On Ubuntu 20.04, Ubuntu 22.04 and Ubuntu 23.10:
108+
* On Ubuntu 20.04, Ubuntu 22.04 and Ubuntu 24.04:
109109
```
110110
$ sudo apt-get install build-essential ocaml ocamlbuild automake autoconf libtool wget python-is-python3 libssl-dev git cmake perl
111111
```
@@ -142,9 +142,9 @@ Build the Intel(R) SGX SDK and Intel(R) SGX PSW Package
142142
1) To install the additional required tools:
143143
* On Debian 10:
144144
```
145-
$ sudo apt-get install libssl-dev libcurl4-openssl-dev protobuf-compiler libprotobuf-dev debhelper cmake reprepro unzip lsb-release libsystemd0
145+
$ sudo apt-get install libssl-dev libcurl4-openssl-dev protobuf-compiler libprotobuf-dev debhelper cmake reprepro unzip pkgconf libboost-dev libboost-system-dev libboost-thread-dev lsb-release libsystemd0
146146
```
147-
* On Ubuntu 20.04, Ubuntu 22.04 and Ubuntu 23.10:
147+
* On Ubuntu 20.04, Ubuntu 22.04 and Ubuntu 24.04:
148148
```
149149
$ sudo apt-get install libssl-dev libcurl4-openssl-dev protobuf-compiler libprotobuf-dev debhelper cmake reprepro unzip pkgconf libboost-dev libboost-system-dev libboost-thread-dev lsb-release libsystemd0
150150
```
@@ -166,7 +166,7 @@ Build the Intel(R) SGX SDK and Intel(R) SGX PSW Package
166166
```
167167
* On SUSE Linux Enterprise Server 15.4:
168168
```
169-
$ sudo zypper install libopenssl-devel libcurl-devel protobuf-devel cmake rpm-build createrepo libsystemd0
169+
$ sudo zypper install libopenssl-devel libcurl-devel protobuf-devel cmake rpm-build createrepo_c libsystemd0 libboost_system1_66_0-devel libboost_thread1_66_0-devel
170170
```
171171
2) To install latest Intel(R) SGX SDK Installer
172172
Ensure that you have downloaded latest Intel(R) SGX SDK Installer from the [Intel(R) SGX SDK](https://software.intel.com/en-us/sgx-sdk/download) and followed the Installation Guide in the same page to install latest Intel(R) SGX SDK Installer.
@@ -256,7 +256,7 @@ You can find the tools and libraries generated in the `build/linux` directory.
256256
$ make
257257
```
258258
- To build the Intel(R) SGX PSW installer, enter the following command:
259-
* On Ubuntu 20.04, Ubuntu 22.04, Ubuntu 23.10 and Debian 10:
259+
* On Ubuntu 20.04, Ubuntu 22.04, Ubuntu 24.04 and Debian 10:
260260
```
261261
$ make deb_psw_pkg
262262
```
@@ -297,9 +297,9 @@ You can find the tools and libraries generated in the `build/linux` directory.
297297
```
298298
deb [trusted=yes arch=amd64] file:/PATH_TO_LOCAL_REPO jammy main
299299
```
300-
* On Ubuntu 23.10:
300+
* On Ubuntu 24.04:
301301
```
302-
deb [trusted=yes arch=amd64] file:/PATH_TO_LOCAL_REPO mantic main
302+
deb [trusted=yes arch=amd64] file:/PATH_TO_LOCAL_REPO noble main
303303
```
304304
* On Debian 10:
305305
```
@@ -344,7 +344,7 @@ Install the Intel(R) SGX SDK
344344
* Ubuntu\* 20.04 LTS Desktop 64bits
345345
* Ubuntu\* 20.04 LTS Server 64bits
346346
* Ubuntu\* 22.04 LTS Server 64bits
347-
* Ubuntu\* 23.10 Server 64bits
347+
* Ubuntu\* 24.04 LTS Server 64bits
348348
* Red Hat Enterprise Linux Server release 9.2 64bits
349349
* CentOS Stream 9 64bits
350350
* CentOS 8.3 64bits
@@ -357,7 +357,7 @@ Install the Intel(R) SGX SDK
357357
$ sudo apt-get install build-essential python3
358358
$ sudo update-alternatives --install /usr/bin/python python /usr/bin/python3 1
359359
```
360-
* On Ubuntu 20.04, Ubuntu 22.04 and Ubuntu 23.10:
360+
* On Ubuntu 20.04, Ubuntu 22.04 and Ubuntu 24.04:
361361
```
362362
$ sudo apt-get install build-essential python-is-python3
363363
```
@@ -435,7 +435,7 @@ Install the Intel(R) SGX PSW
435435
* Ubuntu\* 20.04 LTS Desktop 64bits
436436
* Ubuntu\* 20.04 LTS Server 64bits
437437
* Ubuntu\* 22.04 LTS Server 64bits
438-
* Ubuntu\* 23.10 Server 64bits
438+
* Ubuntu\* 24.04 LTS Server 64bits
439439
* Red Hat Enterprise Linux Server release 9.2 64bits
440440
* CentOS Stream 9 64bits
441441
* CentOS 8.3 64bits
@@ -447,7 +447,7 @@ Install the Intel(R) SGX PSW
447447
- Configure the system with the **Intel SGX hardware enabled** option and install Intel(R) SGX driver in advance.
448448
See the earlier topic, *Build and Install the Intel(R) SGX Driver*, for information on how to install the Intel(R) SGX driver.
449449
- Install the library using the following command:
450-
* On Ubuntu 20.04, Ubuntu 22.04, Ubuntu 23.10 and Debian 10:
450+
* On Ubuntu 20.04, Ubuntu 22.04, Ubuntu 24.04 and Debian 10:
451451
```
452452
$ sudo apt-get install libssl-dev libcurl4-openssl-dev libprotobuf-dev
453453
```
@@ -477,7 +477,7 @@ The SGX PSW provides 3 services: launch, EPID-based attestation, and algorithm a
477477
478478
#### Using the local repo(recommended)
479479
480-
| |Ubuntu 20.04, Ubuntu 22.04, Ubuntu 23.10 and Debian 10|Red Hat Enterprise Linux 9.2, CentOS Stream 9, CentOS 8.3 and Anolis OS 8.6| SUSE Linux Enterprise Server 15|
480+
| |Ubuntu 20.04, Ubuntu 22.04, Ubuntu 24.04 and Debian 10|Red Hat Enterprise Linux 9.2, CentOS Stream 9, CentOS 8.3 and Anolis OS 8.6| SUSE Linux Enterprise Server 15|
481481
| ------------ | ------------ | ------------ | ------------ |
482482
|launch service |apt-get install libsgx-launch libsgx-urts|yum install libsgx-launch libsgx-urts|zypper install libsgx-launch libsgx-urts|
483483
|EPID-based attestation service|apt-get install libsgx-epid libsgx-urts|yum install libsgx-epid libsgx-urts|zypper install libsgx-epid libsgx-urts|
@@ -498,7 +498,7 @@ apt-get dist-upgrade -o Dpkg::Options::="--force-overwrite"
498498
```
499499
#### Configure the installation
500500
Some packages are configured with recommended dependency on other packages that are not required for certain usage. For instance, the background daemon is not required for container usage. It will be installed by default, but you can drop it by using the additional option during the installation.
501-
* On Ubuntu 20.04, Ubuntu 22.04, Ubuntu 23.10 and Debian 10:
501+
* On Ubuntu 20.04, Ubuntu 22.04, Ubuntu 24.04 and Debian 10:
502502
```
503503
--no-install-recommends
504504
```

SampleCode/Cxx11SGXDemo/Makefile

+24-24
Original file line numberDiff line numberDiff line change
@@ -37,21 +37,21 @@ SGX_ARCH ?= x64
3737
SGX_DEBUG ?= 1
3838

3939
ifeq ($(shell getconf LONG_BIT), 32)
40-
SGX_ARCH := x86
40+
SGX_ARCH := x86
4141
else ifeq ($(findstring -m32, $(CXXFLAGS)), -m32)
42-
SGX_ARCH := x86
42+
SGX_ARCH := x86
4343
endif
4444

4545
ifeq ($(SGX_ARCH), x86)
46-
SGX_COMMON_FLAGS := -m32
47-
SGX_LIBRARY_PATH := $(SGX_SDK)/lib
48-
SGX_ENCLAVE_SIGNER := $(SGX_SDK)/bin/x86/sgx_sign
49-
SGX_EDGER8R := $(SGX_SDK)/bin/x86/sgx_edger8r
46+
SGX_COMMON_FLAGS := -m32
47+
SGX_LIBRARY_PATH := $(SGX_SDK)/lib
48+
SGX_ENCLAVE_SIGNER := $(SGX_SDK)/bin/x86/sgx_sign
49+
SGX_EDGER8R := $(SGX_SDK)/bin/x86/sgx_edger8r
5050
else
51-
SGX_COMMON_FLAGS := -m64
52-
SGX_LIBRARY_PATH := $(SGX_SDK)/lib64
53-
SGX_ENCLAVE_SIGNER := $(SGX_SDK)/bin/x64/sgx_sign
54-
SGX_EDGER8R := $(SGX_SDK)/bin/x64/sgx_edger8r
51+
SGX_COMMON_FLAGS := -m64
52+
SGX_LIBRARY_PATH := $(SGX_SDK)/lib64
53+
SGX_ENCLAVE_SIGNER := $(SGX_SDK)/bin/x64/sgx_sign
54+
SGX_EDGER8R := $(SGX_SDK)/bin/x64/sgx_edger8r
5555
endif
5656

5757
ifeq ($(SGX_DEBUG), 1)
@@ -76,9 +76,9 @@ SGX_COMMON_CXXFLAGS := $(SGX_COMMON_FLAGS) -Wnon-virtual-dtor -std=c++11
7676
######## App Settings ########
7777

7878
ifneq ($(SGX_MODE), HW)
79-
Urts_Library_Name := sgx_urts_sim
79+
Urts_Library_Name := sgx_urts_sim
8080
else
81-
Urts_Library_Name := sgx_urts
81+
Urts_Library_Name := sgx_urts
8282
endif
8383

8484
App_Cpp_Files := App/App.cpp $(wildcard App/TrustedLibrary/*.cpp)
@@ -111,18 +111,18 @@ Enclave_Version_Script := Enclave/Enclave_debug.lds
111111
ifeq ($(SGX_MODE), HW)
112112
ifneq ($(SGX_DEBUG), 1)
113113
ifneq ($(SGX_PRERELEASE), 1)
114-
# Choose to use 'Enclave.lds' for HW release mode
115-
Enclave_Version_Script = Enclave/Enclave.lds
114+
# Choose to use 'Enclave.lds' for HW release mode
115+
Enclave_Version_Script = Enclave/Enclave.lds
116116
endif
117117
endif
118118
endif
119119

120120
ifneq ($(SGX_MODE), HW)
121-
Trts_Library_Name := sgx_trts_sim
122-
Service_Library_Name := sgx_tservice_sim
121+
Trts_Library_Name := sgx_trts_sim
122+
Service_Library_Name := sgx_tservice_sim
123123
else
124-
Trts_Library_Name := sgx_trts
125-
Service_Library_Name := sgx_tservice
124+
Trts_Library_Name := sgx_trts
125+
Service_Library_Name := sgx_tservice
126126
endif
127127
Crypto_Library_Name := sgx_tcrypto
128128

@@ -160,19 +160,19 @@ Enclave_Test_Key := Enclave/Enclave_private_test.pem
160160

161161
ifeq ($(SGX_MODE), HW)
162162
ifeq ($(SGX_DEBUG), 1)
163-
Build_Mode = HW_DEBUG
163+
Build_Mode = HW_DEBUG
164164
else ifeq ($(SGX_PRERELEASE), 1)
165-
Build_Mode = HW_PRERELEASE
165+
Build_Mode = HW_PRERELEASE
166166
else
167-
Build_Mode = HW_RELEASE
167+
Build_Mode = HW_RELEASE
168168
endif
169169
else
170170
ifeq ($(SGX_DEBUG), 1)
171-
Build_Mode = SIM_DEBUG
171+
Build_Mode = SIM_DEBUG
172172
else ifeq ($(SGX_PRERELEASE), 1)
173-
Build_Mode = SIM_PRERELEASE
173+
Build_Mode = SIM_PRERELEASE
174174
else
175-
Build_Mode = SIM_RELEASE
175+
Build_Mode = SIM_RELEASE
176176
endif
177177
endif
178178

0 commit comments

Comments
 (0)