From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mout01.posteo.de (mout01.posteo.de [185.67.36.65]) by mx.groups.io with SMTP id smtpd.web12.5274.1647679214614485367 for ; Sat, 19 Mar 2022 01:40:15 -0700 Authentication-Results: mx.groups.io; dkim=pass header.i=@posteo.de header.s=2017 header.b=M+QlojQb; spf=pass (domain: posteo.de, ip: 185.67.36.65, mailfrom: mhaeuser@posteo.de) Received: from submission (posteo.de [185.67.36.169]) by mout01.posteo.de (Postfix) with ESMTPS id 7DFE7240027 for ; Sat, 19 Mar 2022 09:40:12 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=posteo.de; s=2017; t=1647679212; bh=xz0WqnSBJcTsjyy8Z0gqWZUPH5Lagc3ZJluXhLEO+mE=; h=From:Subject:Date:Cc:To:From; b=M+QlojQbDfKb9TDbPso5H746HtMXI8rjp5dUTYoZC50pQBknKACkqGPcJz0pmFBLH gG9//qPuHUd6UdqFJAOMJF6wGsNRplf6+31Sl9sfTaqtq7T+7wTEL3mocd1kg3hXFl mZggR5XqBuALwEvup8o2QyihBVzMi3ZF9bkZz2SlxCJSKmFddd3PEBQzJBTBkNAUbP HiG3o+g/qfIIkNEVCqjDqXyKKEhV7G+0ZzAsMj1Upv6AwzRzfDhkqKv/hWykf5+ZSV bPtY6LTVIM5BOmCmyvbLpy21YqRuF7lOlVMgJh0yNKDAfWXduG+uxJMAetV4ZwsOhB a+jwirv6V+c1A== Received: from customer (localhost [127.0.0.1]) by submission (posteo.de) with ESMTPSA id 4KLDpY3p9dz9rxV; Sat, 19 Mar 2022 09:40:05 +0100 (CET) From: =?UTF-8?B?TWFydmluIEjDpHVzZXI=?= Mime-Version: 1.0 (1.0) Subject: Re: [edk2-devel] [PATCH v1 0/3]: Fix RustPkg/Tests in edkii-rust branch edk2-staging Date: Sat, 19 Mar 2022 08:40:04 +0000 Message-Id: <97F1C97B-CD49-47AB-9041-A6EF2B21CCDA@posteo.de> References: <20220319070553.25770-1-ayushdevel1325@gmail.com> Cc: jiewen.yao@intel.com In-Reply-To: <20220319070553.25770-1-ayushdevel1325@gmail.com> To: devel@edk2.groups.io, ayushdevel1325@gmail.com Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable > On 19. Mar 2022, at 08:06, Ayush Singh wrote: >=20 > =EF=BB=BFCC Jiewen Yao You didn=E2=80=99t actually CC, done. Best regards, Marvin >=20 > This is my 2nd email about this patch to fix edkii-rust branch in > edk2-staging repo, this time hopefully following contributing procedure > better. >=20 > I have tried to to fix RustPkg/Test/HelloWorld, > RustPkg/Test/HelloWorld2, RustPkg/Test/TestRustLangApp, and > RustPkg/Test/TestRustLangLib. This also meant fixing > RustPkg/Library/UefiRustIntrinsicLib and > RustPkg/Library/UefiRustAllocationLib. >=20 > It is also not possible to build this branch with gcc-11 since that will > require a rebase to edk2/master, but I am not sure how that can be done > since edk2-staging/master does not track edk2/master like it is supposed > to according to the edk2-staging/about branch. >=20 > My working repository for these commits can be found at:=20 > https://github.com/Ayush1325/edk2-staging/tree/edkii-rust-fix-v1 >=20 > Ayush Singh (3): > RustPkg/Test: Replace cargo-xbuild with build-std > RustPkg/Test/TestRustLangLib: Fix Building > RustPkg/Test/TestRustLangApp: Fix building >=20 > RustPkg/Library/UefiRustAllocationLib/src/lib.rs | 53 ++-- > RustPkg/Library/UefiRustIntrinsicLib/src/lib.rs | 8 - > RustPkg/Test/HelloWorld/.cargo/config.toml | 3 + > RustPkg/Test/HelloWorld2/.cargo/config.toml | 3 + > RustPkg/Test/TestRustLangApp/.cargo/config.toml | 3 + > RustPkg/Test/TestRustLangApp/src/main.rs | 95 +++---- > RustPkg/Test/TestRustLangLib/.cargo/config.toml | 3 + > RustPkg/Test/TestRustLangLib/src/lib.rs | 264 ++++++++----------= -- > 8 files changed, 186 insertions(+), 246 deletions(-) > create mode 100644 RustPkg/Test/HelloWorld/.cargo/config.toml > create mode 100644 RustPkg/Test/HelloWorld2/.cargo/config.toml > create mode 100644 RustPkg/Test/TestRustLangApp/.cargo/config.toml > create mode 100644 RustPkg/Test/TestRustLangLib/.cargo/config.toml >=20 > --=20 > 2.35.1 >=20 >=20 >=20 >=20 >=20 >=20