-
charconv is not possible to implement in freestanding without creating a static lib and -ffreestanding might change the definitions of errno (since errno.h does not exist in the toolchain)
-
**V version:** V 0.2.4 dcdfdf4.b482c05
**OS:** linux, "ArcoLinux"
**What did you do?**
run v with command `v run filename.v -freestanding`
```
module main
import net
fn main() {
mut a…
-
No linker script shows the problem as well as a typical linker script.
export fn main() void {}
pub fn panic(message: []const u8, trace: ?*@import("std").builtin.StackTrace) noreturn {
…
-
We're using emojione in [Glowing Bear](https://github.com/glowing-bear/glowing-bear) and it's super neat! But emojification with `shortnameToUnicode` is very aggressive and it sometimes happens that e…
-
Hi!
Thank you for your great work!
I have the need for running JPlag on Java Shell scripts (JEP 222). Right now, Java processing fails with numerous:
`Parser - Assignment1.jshell:106: error: …
-
### Zig Version
0.9.0-dev.2023+16b753549
### Steps to Reproduce
Create a minimal program, eg.
```zig
// test.zig
const std = @import("std");
pub export fn _start() void {}
pub fn panic(_: []…
-
Hi there, I’m not sure if I should report this here or in rust-lang/rust, so please let me know if I need to move this report elsewhere.
When investigating issues with the Nixpkgs `rustc` build, we d…
-
If you plan to change your `gcc` compiler version to `>= 10` then you may experience the following problems:
1. the compiler, in the case of a simple loop writing a constant value to cells of memory …
-
**Description**
Using a freestanding declaration macro inside a class produces a build error:
> Expected '{' in body of function declaration
Here is the expanded macro:
```swift
func myFu…
-
There is an ongoing project to increase the parts of the C++ Standard Library that are available for freestanding implementations, i.e. those with no OS, so no I/O and no malloc. C++23 already enables…