File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -41,10 +41,10 @@ be ignored in favor of only building the artifacts specified by command line.
41
41
the compiler will never attempt to link to ` staticlib ` outputs. The
42
42
purpose of this output type is to create a static library containing all of
43
43
the local crate's code along with all upstream dependencies. The static
44
- library is actually a ` *.a ` archive on linux and osx and a ` *.lib ` file on
45
- windows. This format is recommended for use in situations such as linking
46
- Rust code into an existing non-Rust application because it will not have
47
- dynamic dependencies on other Rust code.
44
+ library is actually a ` *.a ` archive on linux and osx and windows(MinGW), and
45
+ a ` *.lib ` file on windows(MSVC) . This format is recommended for use in
46
+ situations such as linking Rust code into an existing non-Rust application
47
+ because it will not have dynamic dependencies on other Rust code.
48
48
49
49
* ` --crate-type=cdylib ` , ` #[crate_type = "cdylib"] ` - A dynamic system
50
50
library will be produced. This is used when compiling
You can’t perform that action at this time.
0 commit comments