Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion website/docs/globals/premake_OS.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
id: _OS
---

:::caution_
:::caution
**This has been deprecated in Premake 5.0 alpha 12.** Use the new [_TARGET_OS](premake_TARGET_OS.md) instead.
:::

Expand Down
8 changes: 4 additions & 4 deletions website/docs/linkerfatalwarnings.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ linkerfatalwarnings { "warnings" }

For Visual Studio, the MSC warning number should be used to specify the warning. On other compilers, the warning should be identified by name.

In addition, Premake provides a special value to turn on all linker warnings.
In addition, Premake provides the special value `All` to turn on all linker warnings.

| Value | Description |
-------------------------------------------
| All | Treat all linker warnings as errors |
| Value | Description |
|-------|-------------------------------------|
| All | Treat all linker warnings as errors |

### Applies To ###

Expand Down
2 changes: 1 addition & 1 deletion website/docs/os/os.is.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
:::caution
**This function has been deprecated.** Use [os.istarget()](os.istarget.md), os.target()](os.target.md), or [os.host()](os.host.md) instead.
**This function has been deprecated.** Use [os.istarget()](os.istarget.md), [os.target()](os.target.md), or [os.host()](os.host.md) instead.
:::

Checks the current operating system identifier against a particular value.
Expand Down
9 changes: 5 additions & 4 deletions website/docs/profile.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,11 @@ profile "value"
```

### Parameters ###
| Value | Description |
-------------------------------------------------------------------------------------
| On | Turn on instrumented performance profiling. |
| Off | Turn off instrumented performance profiling. |

| Value | Description |
|---------|----------------------------------------------|
| On | Turn on instrumented performance profiling. |
| Off | Turn off instrumented performance profiling. |

### Applies To ###

Expand Down