我正在尝试修改Racer以发出共享库而不是rlib。
为此,我将crate-type = ["dylib"]
添加到货物清单的[lib]
部分,然后运行cargo build --lib
。这很有效,并且libracer.so
被发出。
不幸的是,现在我无法构建Racer二进制文件,这取决于库的静态版本。正在运行cargo build
抱怨:
Compiling racer v1.0.0 (file:///home/georgev/dotfiles/vim/bundle/racer)
error: cannot satisfy dependencies so `std` only shows up once
help: having upstream crates all available in one format will likely make this go away
error: cannot satisfy dependencies so `core` only shows up once
help: having upstream crates all available in one format will likely make this go away
error: cannot satisfy dependencies so `collections` only shows up once
help: having upstream crates all available in one format will likely make this go away
error: cannot satisfy dependencies so `rustc_unicode` only shows up once
help: having upstream crates all available in one format will likely make this go away
error: cannot satisfy dependencies so `alloc` only shows up once
help: having upstream crates all available in one format will likely make this go away
error: cannot satisfy dependencies so `libc` only shows up once
help: having upstream crates all available in one format will likely make this go away
error: cannot satisfy dependencies so `rand` only shows up once
help: having upstream crates all available in one format will likely make this go away
error: aborting due to 7 previous errors
Could not compile `racer`.
我将crate-type
更改为["dylib", "bin"]
,这使得编译成功。但是,cargo build --lib
将不再发出共享库(仅限rlib)。
如何指定我想要构建哪种类型的库,同时仍然允许静态构建所述库以包含在可执行文件中?
答案 0 :(得分:7)
bin
不是有效的crate-type
值。有效值为rlib
,lib
,staticlib
和dylib
。将包类型更改为
crate-type = ["dylib", "rlib"]
会导致您的行为。
仅使用["dylib", "bin"]
发出rlib的原因是因为当前存在导致crate-type
的无效值仅产生rlib的Cargo错误。我已经提交pull request来解决问题。