Skip to content

Commit 7775fd3

Browse files
authored
Merge pull request #219 from chrisvittal/asm-doc
Add note that crate can compile assembly.
2 parents 501a5bf + 69dbb53 commit 7775fd3

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/lib.rs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,10 @@
1515
//! This crate will automatically detect situations such as cross compilation or
1616
//! other environment variables set by Cargo and will build code appropriately.
1717
//!
18+
//! The crate is not limited to C code, it can accept any source code that can
19+
//! be passed to a C or C++ compiler. As such, assembly files with extensions
20+
//! `.s` (gcc/clang) and `.asm` (MSVC) can also be compiled.
21+
//!
1822
//! [`Config`]: struct.Config.html
1923
//!
2024
//! # Examples

0 commit comments

Comments
 (0)