You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
You will need to define a symbol for the entry point that is suitable for your target. For example, `main`, `_start`, `WinMain`, or whatever starting point is relevant for your target. Additionally, we use the `#![no_main]` attribute to override the compiler-inserted `main` shim.
44
34
45
-
// Necessary for `panic = "unwind"` builds on cfg(unix) platforms.
46
-
#![feature(panic_unwind)]
47
-
externcrate unwind;
48
-
49
-
// Pull in the system libc library for what crt0.o likely requires.
0 commit comments