Sunagatov Denis

Results 104 comments of Sunagatov Denis

The compiler parses the string `0b12` as two tokens: `0b1` and `2` due to how integer parsing is set up. It should probably scan the whole string including letters and...

Seems like there is a bug in Windows entry point. ```odin when ODIN_ARCH == .i386 || ODIN_NO_CRT { @(link_name="mainCRTStartup", linkage="strong", require) mainCRTStartup :: proc "stdcall" () -> i32 { context...

@Apis035 does it work if you manually go into that file and remove `ODIN_ARCH == .i386` in the `when` condition in `core/runtime/entry_windows.odin:29`?

This is currently being addressed by the following PR: #3310 If I'm not mistaken the code in the PR practically handles the use-case specified, though it requires a tiny bit...

I might have messed this up, they should have been in separate archives

Currently it doesn't, that was an oversight. I'm not sure if my thinking is correct here, but maybe overriding libc procedures and making those procedures defined in Odin should work...

> Using a custom type seems to work Doesn't work on latest drizzle. Any update on this issue?