diff options
| author | Jeroen van Rijn <Kelimion@users.noreply.github.com> | 2024-11-01 14:03:55 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-11-01 14:03:55 +0100 |
| commit | 73193e99f7e10668e54ce98cf06c8db7a4aa1090 (patch) | |
| tree | 39efa080d1a8b667568cfa1771e57f8f414e2374 /src | |
| parent | d4d546a63a3d12ef8e308989562100b95219ac9b (diff) | |
| parent | 04b000370bd57d644e842612fdaa3cc1b4d578c8 (diff) | |
Merge pull request #4442 from peachey2k2/master
Add "-build-mode:dynamic" to the "odin help build" output
Diffstat (limited to 'src')
| -rw-r--r-- | src/main.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/main.cpp b/src/main.cpp index 1574ac544..b04ee90f1 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -2199,6 +2199,7 @@ gb_internal void print_show_help(String const arg0, String const &command) { print_usage_line(3, "-build-mode:test Builds as an executable that executes tests."); print_usage_line(3, "-build-mode:dll Builds as a dynamically linked library."); print_usage_line(3, "-build-mode:shared Builds as a dynamically linked library."); + print_usage_line(3, "-build-mode:dynamic Builds as a dynamically linked library."); print_usage_line(3, "-build-mode:lib Builds as a statically linked library."); print_usage_line(3, "-build-mode:static Builds as a statically linked library."); print_usage_line(3, "-build-mode:obj Builds as an object file."); |