С mingw, как вы объединяете РАЗДЕЛЫ? - PullRequest
0 голосов
/ 02 сентября 2018
**The binary program that I link to with the script below simply cannot execute
I want to merge all SECTIONS as .code**

ENTRY(_nomain)
SECTIONS
{
.= 0x00400000 + SIZEOF_HEADERS;
.code : {*(.text) *(.rdata) *(.idata)}
/DISCARD/ : {*(.comment)}
}

//The code is simple
//Compile with mingw

#include <stdio.h>
#include <stdlib.h>
void nomain()
{
    puts("ok");
    exit(0);
}

Кто знает, как правильно делать ссылки? Я знаю, что легко объединить все разделы под vc6. Есть ли хороший способ использовать Mingw? с параметрами или скриптом? Очень благодарен вам

...