Hello everyone!
I have some Fortran application, and i want to compile it for iOS. As i understand correctly i need to configure GCC (from gcc.gnu.org) as cross-compiler, with --target=arm-apple-darwin and --enable-languages=c,c++, fortran.
With --target=arm-elf, --target=arm-apple-darwin i got error, that it's not supported.
With --target=arm-none-eabi i got cannot compute suffix of object files: cannot compile Maybe is that because i'm setting wrong configure parameters.
My question is : what is correct ./confgiure parameters to create gcc cross compiler for iOS platform, which supports FORTRAN.
Is this the only (right?) way to build cross-compiler for iOS platform, or i could use existing LLVM-GCC? Thanks!
I have some Fortran application, and i want to compile it for iOS. As i understand correctly i need to configure GCC (from gcc.gnu.org) as cross-compiler, with --target=arm-apple-darwin and --enable-languages=c,c++, fortran.
With --target=arm-elf, --target=arm-apple-darwin i got error, that it's not supported.
With --target=arm-none-eabi i got cannot compute suffix of object files: cannot compile Maybe is that because i'm setting wrong configure parameters.
My question is : what is correct ./confgiure parameters to create gcc cross compiler for iOS platform, which supports FORTRAN.
Is this the only (right?) way to build cross-compiler for iOS platform, or i could use existing LLVM-GCC? Thanks!