diff options
author | Marat Safin <jeizsm@gmail.com> | 2017-11-24 12:55:56 +0300 |
---|---|---|
committer | Jakub Jirutka <jakub@jirutka.cz> | 2017-11-25 22:56:34 +0100 |
commit | 07bfc35e9ce6118bad6f42a2a2d0b8ab513aa0db (patch) | |
tree | d4220785ebdd4517bcea8b48f95a3c75078baa7a /community/rust/musl-fix-static-linking.patch | |
parent | 1ad9ac4dfce192b917e228e81514932c791b4490 (diff) | |
download | aports-07bfc35e9ce6118bad6f42a2a2d0b8ab513aa0db.tar.bz2 aports-07bfc35e9ce6118bad6f42a2a2d0b8ab513aa0db.tar.xz |
community/rust: upgrade to 1.22.1
Diffstat (limited to 'community/rust/musl-fix-static-linking.patch')
-rw-r--r-- | community/rust/musl-fix-static-linking.patch | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/community/rust/musl-fix-static-linking.patch b/community/rust/musl-fix-static-linking.patch index 1e228a0307..fe9b39ea64 100644 --- a/community/rust/musl-fix-static-linking.patch +++ b/community/rust/musl-fix-static-linking.patch @@ -29,9 +29,9 @@ static linking is requested, instead of dynamically as before. - // on other dylibs (e.g. other native deps). + // libraries as that would violate the structure of the DAG. + cmd.start_group(); - add_local_native_libraries(cmd, sess); - add_upstream_rust_crates(cmd, sess, crate_type, tmpdir); - add_upstream_native_libraries(cmd, sess, crate_type); + add_local_native_libraries(cmd, sess, trans); + add_upstream_rust_crates(cmd, sess, trans, crate_type, tmpdir); + add_upstream_native_libraries(cmd, sess, trans, crate_type); + cmd.end_group(); // # Telling the linker what we're doing |