unlvsur unlvsur via Gcc-help <gcc-help@xxxxxxxxxxx> writes: > I want to make –host=aarch64-linux-musl –target=aarch64-linux-android to be a native compiler instead of just a cross compiler for aarch64-linux-android. Is that possible? (Since use aarch64-linux-android as host is difficult due to issues with -fPIC to stderr) No, I don't think this is possible. The usual definition of "native compiler" is that the host and target are (exactly) the same. It's possible (but difficult) to build a cross-native toolchain, (build!=host, host==target). Thanks, Richard