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
{{ message }}
This repository was archived by the owner on Sep 26, 2018. It is now read-only.
For some reason the main function is optimized away at some point.
If I make rustc emit the assembly file, I can see the function is there, with the right symbol (_reset), so I guess that the problem comes while linking.
Hi,
I am following the Copper book, and I am currently having problems with the very first program (http://japaric.github.io/copper/first/build.html).
The program compiles, but the objdump output is the following:
For some reason the main function is optimized away at some point.
If I make rustc emit the assembly file, I can see the function is there, with the right symbol (
_reset), so I guess that the problem comes while linking.