File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed
sgx/gbdt-sgx-test/enclave Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ version = "1.0.0"
4
4
authors = [" Baidu" ]
5
5
6
6
[lib ]
7
- name = " helloworldsampleenclave "
7
+ name = " gbdtenclave "
8
8
crate-type = [" staticlib" ]
9
9
10
10
[features ]
Original file line number Diff line number Diff line change @@ -37,8 +37,8 @@ all: $(Rust_Enclave_Name)
37
37
$(Rust_Enclave_Name ) : $(Rust_Enclave_Files )
38
38
ifeq ($(XARGO_SGX ) , 1)
39
39
RUST_TARGET_PATH=$(Rust_Target_Path) xargo build --target x86_64-unknown-linux-sgx --release
40
- cp ./target/x86_64-unknown-linux-sgx/release/libhelloworldsampleenclave .a ../lib/libenclave.a
40
+ cp ./target/x86_64-unknown-linux-sgx/release/libgbdtenclave .a ../lib/libenclave.a
41
41
else
42
42
cargo build --release
43
- cp ./target/release/libhelloworldsampleenclave .a ../lib/libenclave.a
43
+ cp ./target/release/libgbdtenclave .a ../lib/libenclave.a
44
44
endif
Original file line number Diff line number Diff line change 26
26
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
27
27
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28
28
29
- #![ crate_name = "helloworldsampleenclave " ]
29
+ #![ crate_name = "gbdtenclave " ]
30
30
#![ crate_type = "staticlib" ]
31
31
32
32
#![ cfg_attr( not( target_env = "sgx" ) , no_std) ]
You can’t perform that action at this time.
0 commit comments