aboutsummaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
...
| * | | | | | Remove `core:os` dependency for `base:runtime`gingerBill2024-01-2819-118/+200
| * | | | | | Make //+privategingerBill2024-01-281-0/+1
| * | | | | | Replace `core:*` to `base:*` where appropriategingerBill2024-01-28180-225/+225
| * | | | | | Freestanding - default to nil allocator; wasm - default to panic allocatorgingerBill2024-01-281-1/+10
| * | | | | | `-default-to-panic-allocator`gingerBill2024-01-285-16/+38
| * | | | | | Remove `core:os` dependency for `runtime.os_write` on linuxgingerBill2024-01-282-0/+23
| * | | | | | Remove `core:os` dependency from `base:runtime`; change to `base:intrinsics`gingerBill2024-01-2816-15/+32
| * | | | | | Remove `sdl.stack_*` callsgingerBill2024-01-281-13/+0
| * | | | | | Fix demo docsgingerBill2024-01-281-3/+3
| * | | | | | Fix demogingerBill2024-01-281-2/+2
| * | | | | | Move matrix related procedures to the different `linalg` packagesgingerBill2024-01-285-330/+829
| * | | | | | Move matrix compiler `builtin`s to `intrinsics`; alias within core_builtin_ma...gingerBill2024-01-284-11/+22
| * | | | | | Move `core:runtime` to `base:runtime`; keep alias aroundgingerBill2024-01-2842-7/+54
|/ / / / / /
* | | | | | Remove `core:mem` dependency from `core:reflect`gingerBill2024-01-281-3/+1
* | | | | | Add missing clone for `Struct_Type`gingerBill2024-01-281-0/+1
* | | | | | Add `#field_align(N)`gingerBill2024-01-286-24/+64
* | | | | | Remove dead codegingerBill2024-01-284-100/+16
* | | | | | Change return values from `Struct_Tag` to `string`gingerBill2024-01-281-5/+5
* | | | | | Merge pull request #3139 from flysand7/file-attribgingerBill2024-01-263-8/+8
|\ \ \ \ \ \
| * | | | | | os/os2: Remove file attribute casting from core:os2flysand72024-01-261-4/+4
| * | | | | | os: Fix casting errors in other filesflysand72024-01-251-3/+3
| * | | | | | Merge branch 'master' into unsigned-file-attribflysand72024-01-256-13/+73
| |\ \ \ \ \ \ | | | |/ / / / | | |/| | | |
| * | | | | | sys/windows: Make INVALID_FILE_ATTRIBUTES a u32 constantflysand72024-01-251-1/+1
* | | | | | | Fix #3053gingerBill2024-01-261-16/+2
* | | | | | | Fix #3122gingerBill2024-01-261-1/+3
* | | | | | | Fix `type_ptr_set_update`gingerBill2024-01-261-1/+3
| |/ / / / / |/| | | | |
* | | | | | Merge pull request #3132 from KyleNBurke/patch-1Jeroen van Rijn2024-01-241-1/+1
|\ \ \ \ \ \
| * | | | | | Remove mention of `map` in builtin resize proc groupKyle Burke2024-01-241-1/+1
|/ / / / / /
* | | | | | Merge pull request #3126 from DanielGavin/parser-fix-parangingerBill2024-01-241-1/+19
|\ \ \ \ \ \
| * | | | | | Recover from faulty parameter in parse_proc_typeDanielGavin2024-01-221-1/+19
* | | | | | | Merge pull request #3127 from laytan/fix-wasm-and-llvm-17gingerBill2024-01-241-1/+1
|\ \ \ \ \ \ \
| * | | | | | | fix for wasm on llvm 17Laytan Laats2024-01-221-1/+1
| | |/ / / / / | |/| | | | |
* | | | | | | Merge pull request #3129 from DragosPopse/assert-fixgingerBill2024-01-242-9/+51
|\ \ \ \ \ \ \
| * | | | | | | Removed return value of assertf. assertf now correctly responds to -disable-a...Dragos Popescu2024-01-232-9/+51
| |/ / / / / /
* | | | | | | Merge pull request #3131 from flysand7/non-zeroedgingerBill2024-01-241-1/+1
|\ \ \ \ \ \ \ | |/ / / / / / |/| | | | | |
| * | | | | | os2: Add .Resize_Non_Zeroed allocation mode to os2/heap_windowsflysand72024-01-241-1/+1
|/ / / / / /
* | | | | | Merge pull request #2912 from karl-zylinski/marshal-sort-maps-by-key-and-clon...gingerBill2024-01-222-37/+121
|\ \ \ \ \ \
| * | | | | | Made sure temp guard for sorting map keys in json marshal code ignores temp a...Karl Zylinski2024-01-221-3/+3
| * | | | | | Cleanup of json.clone_valueKarl Zylinski2023-11-011-4/+2
| * | | | | | Added temp allocator guard to json.marshal, in case we temp alloc when sortin...Karl Zylinski2023-11-011-0/+3
| * | | | | | Reversed order of sort_maps_by_key check in marshal.odin to make PR compariso...Karl Zylinski2023-11-011-26/+26
| * | | | | | Indentation fix.Karl Zylinski2023-11-011-3/+3
| * | | | | | JSON: Option to sort marshaled maps before outputting. Also added a json.clon...Karl Zylinski2023-11-012-38/+121
* | | | | | | Merge pull request #3119 from Kelimion/location_callJeroen van Rijn2024-01-201-1/+1
|\ \ \ \ \ \ \
| * | | | | | | Clarify #location error message when not a call.Jeroen van Rijn2024-01-201-1/+1
|/ / / / / / /
* | | | | | | Merge pull request #3116 from Kelimion/hot_reloadJeroen van Rijn2024-01-192-3/+20
|\ \ \ \ \ \ \
| * | | | | | | Add hot reload support to `dynlib.initialize_symbols`Jeroen van Rijn2024-01-192-3/+20
|/ / / / / / /
* | | | | | | Merge pull request #3108 from Kelimion/subsystemgingerBill2024-01-194-35/+91
|\ \ \ \ \ \ \ | |_|/ / / / / |/| | | | | |
| * | | | | | Expand -subsystem option on WindowsJeroen van Rijn2024-01-184-28/+83
| * | | | | | Add WINDOWS_SUBSYSTEM constant boolJeroen van Rijn2024-01-182-10/+11
|/ / / / / /