From ad843141439fc101709dc234c289d5d6d4676aaf Mon Sep 17 00:00:00 2001 From: Ginger Bill Date: Fri, 9 Dec 2016 16:31:14 +0000 Subject: [PATCH] Update README.md --- README.md | 4 ---- src/main.c | 7 ++++--- 2 files changed, 4 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 03be427bfd4..6ef108c6232 100644 --- a/README.md +++ b/README.md @@ -48,13 +48,9 @@ Not in any particular order * Documentation Generator for "Entities" * Multiple Architecture support * Language level atomics and concurrency support -* Linking Options - - Executable - - Static/Dynamic Library * Debug Information - pdb format too * Command Line Tooling * Compiler Internals: - Big numbers library - - Cyclic Type Checking (at the moment will cause compiler to go into an infinite loop) - Multithreading for performance increase diff --git a/src/main.c b/src/main.c index 56452fb879f..89d9e5150e9 100644 --- a/src/main.c +++ b/src/main.c @@ -65,9 +65,10 @@ void usage(char *argv0) { gb_printf_err("Usage:"); gb_printf_err("\n\t%s command [arguments]\n", argv0); gb_printf_err("Commands:"); - gb_printf_err("\n\tbuild compile .odin file"); - gb_printf_err("\n\trun compile and run .odin file"); - gb_printf_err("\n\tversion print Odin version"); + gb_printf_err("\n\tbuild compile .odin file"); + gb_printf_err("\n\tbuild_dll compile .odin file as dll"); + gb_printf_err("\n\trun compile and run .odin file"); + gb_printf_err("\n\tversion print Odin version"); gb_printf_err("\n\n"); }