-1

I need to build two binaries and each one need to be compiled with different toolchains. Is it possible with automake?

Mike Kinghan
  • 55,740
  • 12
  • 153
  • 182
Lord_Rafa
  • 33
  • 7

1 Answers1

0

Yes, it is. Run the build twice, one with one toolchain, and one with the other.

ldav1s
  • 15,885
  • 2
  • 53
  • 56
  • Thanks for the answer but I was looking for something more automatic. Build one binary with arm toolchain and another binary with a epiphany copro toolchain. – Lord_Rafa Jul 31 '13 at 22:54
  • If you need something automatic it's not hard to write a shell script to do just that. If you're going to need more toolchains, looking at a [continuous integration](http://en.wikipedia.org/wiki/List_of_build_automation_software) solution might be worthwhile. – ldav1s Jul 31 '13 at 23:38