aboutsummaryrefslogtreecommitdiff
path: root/src/build.c
Commit message (Collapse)AuthorAgeFilesLines
* Use a global to store the build context informationGinger Bill2017-02-121-247/+0
|
* v0.1.0v0.1.0Ginger Bill2017-02-111-20/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Added: * Dynamic Arrays `[...]Type` * Dynamic Maps `map[Key]Value` * Dynamic array and map literals * Custom struct alignemnt `struct #align 8 { bar: i8 }` * Allow `_` in numbers * Variadic `append` * fmt.sprint* * Entities prefixes with an underscore do not get exported on imports * Overloaded `free` for pointers, slices, strings, dynamic arrays, and dynamic maps * enum types have an implict `names` field, a []string of all the names in that enum Removed: * Maybe/option types * immutable variables * Remove `type` keyword and other "reserved" keywords * `compile_assert` and `assert`return the value of the condition for semantic reasons Changed: * thread_local -> #thread_local * #include -> #load * Files only get checked if they are actually used * match x in y {} // For type match statements * Version numbering now starts from 0.1.0 and uses the convention: - major.minor.patch Fixes: * Many fmt.* fixes To come very Soon™: * Linux and OS X builds (unofficial ones do exist already)
* Add `types.odin`; Begin work on `map`Ginger Bill2017-02-051-0/+3
|
* Update code from OSX merge to be consistent with the rest of the codeGinger Bill2017-02-011-1/+1
| | | | Remove some dead code whilst I was here too :P
* Merge branch 'master' of https://github.com/zhiayang/Odinzhiayang2017-02-021-1/+1
|\
| * Change internals of `context`; Disable `immutable`Ginger Bill2017-02-011-1/+1
| |
* | oh boy, basic osx/unix supportzhiayang2017-02-021-0/+92
|/
* Fix untyped to `any` assignments. Fixed crash when arguments with no value ↵Ginger Bill2017-01-291-1/+1
| | | | are passed
* Fix core library; Disable adding entity definitions for blank identifiersv0.0.5eGinger Bill2017-01-071-1/+1
|
* Fix array pointer as iterators; Remove stack allocations in `startup_runtime`v0.0.5dGinger Bill2017-01-061-2/+1
|
* Fix build error caused by invalid iterator types in `for`v0.0.5cGinger Bill2017-01-051-1/+1
|
* v0.0.5aGinger Bill2017-01-051-1/+1
|
* Change prev ssa to llir;Ginger Bill2017-01-031-1/+1
|
* v0.0.4 - `odin build_dll`, atomic.odin, sync.odinGinger Bill2016-12-091-1/+1
|
* `build_dll`; Require an entry point procedure `main`Ginger Bill2016-12-081-0/+1
|
* Fix preload initialization orderingGinger Bill2016-12-041-2/+91
|
* Change entity collection strategyGinger Bill2016-12-031-0/+83