2

I would like to compile a program written in C using Clang for 'Windows Phone' ARM target. Does anyone have experience with it?

What is a better approach?

1) Building on a host running Windows 8 using Clang for Windows and MinGW. Does Clang for Windows / MinGW supports ARM by default? If not, I will need to re-build Clang and MinGW?

2) Building on a Linux/MAC host (where ARM target comes as default) and using Windows Phone toolchain (where can I get it?).

Thanks in advance!

DavidS
  • 2,160
  • 1
  • 19
  • 22

1 Answers1

2

There is no "Windows Phone ARM target" support in clang. Even if you'd succeed to compile something, I doubt you will be able to link & execute the binaries.

Anton Korobeynikov
  • 9,074
  • 25
  • 28