Odin icon indicating copy to clipboard operation
Odin copied to clipboard

Odin Programming Language

Results 744 Odin issues
Sort by recently updated
recently updated
newest added

## Context * Operating System: `Linux Mint 20 - Kernel 5.4.0-73-generic` * Please paste `odin version` output: `odin version dev-2021-08:7b2f6aaa` ## Expected Behavior Compilation should be disallowed when `switch`ing on...

The included JSON parser of `core:encoding/json` fails to handle single-character keys in the JSON5 specification mode. ```odin import "core:encoding/json" test := "{a:1}"; _, error := json.parse(transmute([]u8)test, .JSON5); // error has...

There several missing functions `remove, unlink, open, close, create_directory, remove_directory` for Linux. It appears there's an `os2` package in the works and this will eventually replace `os`? In either case...

Odin `dev-2021-08:0e84e067` ```odin Foo :: struct (T: typeid) {}; bar :: proc (foo: Foo) {} //wrong syntax ``` here the compiler will error out on the declaration, which is expected...

bug

## Context Odin doesn't build a shared libary on Linux. * Operating System: Ubuntu 20.04 LTS * Please paste `odin version` output: odin version dev-2021-08:40b4f3a9 ## Expected Behavior I expect...

bug
linux

## Context DLL globals assigned via a proc in the DLL are set to 0. I am exporting a function and calling it from an exe via dynlib.load_library and dynlib.symbol_address...

bug

## Context * Environment details: ``` uname --all > Linux 5.13.6-arch1-1 #1 SMP PREEMPT Thu, 29 Jul 2021 00:21:06 +0000 x86_64 GNU/Linux llvm-config --version > 11.0.1 git log -1 >...

## Context operating system: Windows 10 odin version output: dev-2021-07-nightly:e17593be (I had the wrong version written before because my path was screwed up; that said, my build.bat is correct so...

llvm-bug
cannot-replicate

Odin `dev-2021-07:ec9667ef` OS `Windows` Seems like `#type proc` and global containers don't play together. ```odin Proc :: #type proc(); m: []Proc; main :: proc() { m = make([]Proc, 123); }...

# PLEASE POST THIS IN THE DISCUSSION TAB UNDER "PROPOSALS" OR "IDEAS/REQUESTS" **Is your feature request related to a problem? Please describe.** There's no x86_64 elf freestanding target yet and...