Răsfoiți Sursa

Update README.md and roadmap.md

Ginger Bill 8 ani în urmă
părinte
comite
34ee89cfab
3 a modificat fișierele cu 10 adăugiri și 4 ștergeri
  1. 1 2
      README.md
  2. 1 1
      build.bat
  3. 8 1
      roadmap.md

+ 1 - 2
README.md

@@ -6,14 +6,13 @@ Odin in an open source programming language that is simple to read, comprehend a
 
 * x86-64
 * Windows
-* MSVC installed
+* MSVC 2015 installed (C99 support)
 * call `vcvarsall.bat` to setup the path
 
 ## Warnings
 
 * This is still highly in development and the language's design is quite volatile.
 * Syntax is not fixed.
-* The language's name, Odin, is not final.
 
 ## Goals
 

+ 1 - 1
build.bat

@@ -4,7 +4,7 @@
 set exe_name=odin.exe
 
 :: Debug = 0, Release = 1
-set release_mode=0
+set release_mode=1
 
 set compiler_flags= -nologo -Oi -TC -W4 -fp:fast -fp:except- -Gm- -MP -FC -GS- -EHsc- -GR-
 

+ 8 - 1
roadmap.md

@@ -11,7 +11,14 @@ Not in any particular order
 * Improve SSA design to accommodate for lowering to a "bytecode"
 * SSA optimizations
 * Parametric Polymorphism
-* Documentation Generator for Entities
+* Documentation Generator for "Entities"
+* Multiple Architecture 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)