File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -6,21 +6,21 @@ fn main() {
66 . cflag ( "-Wno-error=maybe-uninitialized" )
77 . build ( ) ;
88 println ! ( "cargo:rustc-link-search=native={}/lib64" , dst. display( ) ) ;
9-
9+
1010 // The top level lib.
1111 println ! ( "cargo:rustc-link-lib=static=aws-nitro-enclaves-sdk-c" ) ;
1212
1313 // aws-c-auth first, because it depends on c-http and c-io, so they must follow
1414 println ! ( "cargo:rustc-link-lib=static=aws-c-auth" ) ;
1515 println ! ( "cargo:rustc-link-lib=static=aws-c-http" ) ;
1616 println ! ( "cargo:rustc-link-lib=static=aws-c-io" ) ;
17-
17+
1818 // c-auth/c-http also use c-compression, c-sdkutils, c-cal, and c-common
1919 println ! ( "cargo:rustc-link-lib=static=aws-c-compression" ) ;
2020 println ! ( "cargo:rustc-link-lib=static=aws-c-sdkutils" ) ;
2121 println ! ( "cargo:rustc-link-lib=static=aws-c-cal" ) ;
2222 println ! ( "cargo:rustc-link-lib=static=aws-c-common" ) ;
23-
23+
2424 // s2n depends on libcrypto, so s2n should be linked before crypto
2525 println ! ( "cargo:rustc-link-lib=static=s2n" ) ;
2626 println ! ( "cargo:rustc-link-lib=static=crypto" ) ;
You can’t perform that action at this time.
0 commit comments