We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
-no-crt
Compiling any Odin program with the no-crt -default-to-panic-allocator build flags on Linux causes that program to give a segmentation violation.
no-crt -default-to-panic-allocator
odin report output:
odin report
Odin: dev-2024-12 OS: Alpine Linux v3.21, Linux 6.12.2-0-lts CPU: 11th Gen Intel(R) Core(TM) i5-1135G7 @ 2.40GHz RAM: 7607 MiB Backend: LLVM 19.1.4
For the following program:
package example import "core:fmt" main :: proc() { fmt.println("lorem ipsum") }
It is expected that it prints lorem ipsum when building with odin build . -no-crt -default-to-panic-allocator.
lorem ipsum
odin build . -no-crt -default-to-panic-allocator
segmentation violation
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Context
Compiling any Odin program with the
no-crt -default-to-panic-allocator
build flags on Linux causes that program to give a segmentation violation.odin report
output:Expected Behavior
For the following program:
It is expected that it prints
lorem ipsum
when building withodin build . -no-crt -default-to-panic-allocator
.Current Behavior
The text was updated successfully, but these errors were encountered: