From 69dbb53dcf3622c2fcbcfc4eb28fddd668a1ee56 Mon Sep 17 00:00:00 2001 From: Christopher Vittal Date: Fri, 21 Jul 2017 01:02:20 -0400 Subject: [PATCH] Add note that crate can compile assembly. --- src/lib.rs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/lib.rs b/src/lib.rs index a2ae955..1e6b72e 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -15,6 +15,10 @@ //! This crate will automatically detect situations such as cross compilation or //! other environment variables set by Cargo and will build code appropriately. //! +//! The crate is not limited to C code, it can accept any source code that can +//! be passed to a C or C++ compiler. As such, assembly files with extensions +//! `.s` (gcc/clang) and `.asm` (MSVC) can also be compiled. +//! //! [`Config`]: struct.Config.html //! //! # Examples