Fix ragg2 *.c on macOS

This commit is contained in:
pancake 2019-06-26 04:47:27 +02:00 committed by radare
parent 11a643b423
commit b50e7e9602

View File

@ -139,7 +139,8 @@ static struct cEnv_t* r_egg_Cfile_set_cEnv(const char *arch, const char *os, int
cEnv->TEXT = ".text";
cEnv->FMT = "pe";
} else if (isXNU(os)) {
cEnv->TEXT = "0.__TEXT.__text";
//cEnv->TEXT = "0.__TEXT.__text";
cEnv->TEXT = "0..__text";
} else {
cEnv->TEXT = ".text";
}