Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions src/attributes.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,15 @@ type int8_t = i8;
infinitely-recursive compile-time operations like
auto-dereference or macro expansion. The default is
`#![recursion_limit="64"]`.
- `windows_subsystem` - Indicates that when this crate is linked for a Windows
target it will configure the resulting binary's
[subsystem] via the linker. Valid values for this
attribute are `console` and `windows`, corresponding to
those two respective subsystems. More subsystems may be
allowed in the future, and this attribute is ignored on
non-Windows targets.

[subsystem]: https://msdn.microsoft.com/en-us/library/fcc1zstk.aspx

### Module-only attributes

Expand Down