-
Notifications
You must be signed in to change notification settings - Fork 100
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
442: fix pe error by removing `isgx-pe2sgx` in CI r=Taowyoo a=Taowyoo Fix #433 by removing `isgx-pe2sgx` in CI If it's not used, maybe we could also remove the code. Please correct me if it's actively used somewhere Co-authored-by: Yuxiang Cao <[email protected]>
- Loading branch information
Showing
5 changed files
with
30 additions
and
51 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,6 +4,9 @@ | |
* License, v. 2.0. If a copy of the MPL was not distributed with this | ||
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */ | ||
|
||
//! This code is deprecated since v0.8.7 because its dependency `pe` | ||
//! is incompatible with rust compiler since `nightly-2023-01-31`. | ||
#[macro_use] | ||
extern crate lazy_static; | ||
extern crate broadcast; | ||
|
@@ -614,6 +617,9 @@ [email protected] with as much data as you can provide about the enclave." | |
) | ||
} | ||
|
||
#[deprecated(since = "0.8.7")] | ||
/// The dependency `pe` of this part of code is incompatible with rust compiler | ||
/// since `nightly-2023-01-31`." | ||
fn main() { | ||
let mut args = std::env::args_os(); | ||
let _name = args.next(); | ||
|