| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Replace system:System.framework imports with system:System | Harold Brenes | 2025-07-13 | 1 | -1/+1 |
| | | | | | This makes the linker work for both macOS and iOS targets | ||||
| * | fix haiku | avanspector | 2024-12-20 | 1 | -7/+8 |
| | | |||||
| * | Clean-up `libc` usage | gingerBill | 2024-09-22 | 1 | -0/+8 |
| | | |||||
| * | posix: add package | Laytan Laats | 2024-08-14 | 1 | -1/+1 |
| | | |||||
| * | Added some libc bindings for NetBSD | Andreas T Jonsson | 2024-04-18 | 1 | -1/+1 |
| | | |||||
| * | fix runtime and libc | avanspector | 2024-02-25 | 1 | -0/+18 |
| | | |||||
| * | fix core:c/libc.errno link_name for Linux and FreeBSD | Julian Fondren | 2022-10-17 | 1 | -2/+15 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Although the FreeBSD link matches Darwin, its EILSEQ still matches Linux. Confirmed with the following program: ```odin package main import "core:c/libc" main :: proc() { libc.printf("%d\n", libc.errno()^) // 0 _ = libc.fopen("nonexistent file", "r") libc.printf("%d\n", libc.errno()^) // 2 } ``` on Linux: Odin: dev-2022-10:075040ae OS: Manjaro Linux, Linux 5.10.147-1-MANJARO CPU: Intel(R) Core(TM) i7-7700HQ CPU @ 2.80GHz RAM: 15953 MiB and FreeBSD: Odin: dev-2022-10:075040ae OS: FreeBSD: Unknown CPU: Intel(R) Core(TM) i7-7700HQ CPU @ 2.80GHz RAM: 990 MiB FreeBSD uname -r: 13.0-RELEASE | ||||
| * | initial OpenBSD support | Sébastien Marie | 2022-02-25 | 1 | -0/+13 |
| | | |||||
| * | Convert `ODIN_OS` and `ODIN_ARCH` to use enums rather than use strings | gingerBill | 2022-01-20 | 1 | -5/+5 |
| | | |||||
| * | Add support for darwin to `core:c/libc` | gingerBill | 2021-11-16 | 1 | -0/+16 |
| | | |||||
| * | Strip semicolons; Make `odin strip-semicolon` replace `..` with `..=` if ↵ | gingerBill | 2021-09-06 | 1 | -9/+9 |
| | | | | | used as a binary operator | ||||
| * | Fix core:c/libc Windows compilation errors by linking to the right libraries. | vassvik | 2021-08-28 | 1 | -1/+5 |
| | | | | | | Fix some name typos and missing types in Windows. Add explicit cast on MB_CUR_MAX | ||||
| * | cleanup | Dale Weiler | 2021-08-22 | 1 | -1/+1 |
| | | |||||
| * | libc projection | Dale Weiler | 2021-08-22 | 1 | -0/+43 |