I'm attempting to use Cocotron to build the Foundation framework. GCC 4.3.1 for Windows compiled fine, and it's creating valid Windows executable files, which I confirmed by making a "Hello, world" executable.
So what I don't understand is why, with Xcode 5.0.2, when I use either xcodebuild or build the Foundation project within Xcode itself, it isn't creating dll files.
So, it seems that as of Xcode 5, Apple no longer supports any compilers that are not derived from clang. To fix this issue, I had to copy the pbcomspec files from
/Library/Application Support/Shared/Xcode/Specifications
to~/Library/Application Support/Shared/Xcode/Specifications
and edit the file that declares that the compiler is based on llvm-gcc to declare that it's based oncom.apple.compilers.llvm.clang.1_0
. Then it should at least try to build.