diff options
author | Nick Mathewson <nickm@torproject.org> | 2018-06-21 09:53:08 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2018-06-21 10:47:11 -0400 |
commit | 2cfcb7b364541c27749ae0df73eabd7a56797f93 (patch) | |
tree | 1fb03761e4631f1d5edd893fc9164a49ff8981b6 /src/rust | |
parent | b2346b12019c45288bbae3bd009fe0bafe80ff58 (diff) | |
download | tor-2cfcb7b364541c27749ae0df73eabd7a56797f93.tar.gz tor-2cfcb7b364541c27749ae0df73eabd7a56797f93.zip |
Extract error functionality into a new lowest-level library.
Diffstat (limited to 'src/rust')
-rw-r--r-- | src/rust/build.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/rust/build.rs b/src/rust/build.rs index b943aa5535..32000b12f5 100644 --- a/src/rust/build.rs +++ b/src/rust/build.rs @@ -138,9 +138,9 @@ pub fn main() { cfg.from_cflags("TOR_LDFLAGS_openssl"); cfg.from_cflags("TOR_LDFLAGS_libevent"); + cfg.link_relpath("src/lib"); cfg.link_relpath("src/common"); cfg.link_relpath("src/ext/keccak-tiny"); - cfg.link_relpath("src/ext/keccak-tiny"); cfg.link_relpath("src/ext/ed25519/ref10"); cfg.link_relpath("src/ext/ed25519/donna"); cfg.link_relpath("src/trunnel"); @@ -152,6 +152,7 @@ pub fn main() { cfg.component("or-crypto-testing"); cfg.component("or-ctime-testing"); cfg.component("or-testing"); + cfg.component("tor-err-testing"); cfg.component("or-event-testing"); cfg.component("or-ctime-testing"); cfg.component("curve25519_donna"); |