简体   繁体   中英

dev-cpp\collect2.exe [Error] ld returned 1 exit status What error is the compiler pointing out?

I am using dev c++ for practicing data structures in C. After compiling any program, it runs for the first time.In subsequent runs,

the compiler shows following error: dev-cpp\\collect2.exe [Error] ld returned 1 exit status

What error is the compiler pointing out??

There's unfortunately not much information to go on. One thing that's always helped me so much, when troubleshooting mysterious GNU LD errors, is using the --cref -Map=$@.map flags (where $@ is the name of the output file). It'll save a report explaining every single decision the linker makes, in painstaking detail.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM