diff options
Diffstat (limited to 'src/rust/build.rs')
-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"); |