I'd like to use Eclipse IDE for C++ dev but these is one little prob.
First, a little boiler plate:
- mingw 64bit C++ compiler (Custom compilation A)
- mingw 64bit C++ compiler (Custom compilation B)
- windows host
The problem
I can not get it to work with multiple toolchains. All info I could find suggested that eclipse requires mingw dir to be at C:\mingw\
that does not work for my use case. For one, I have multiple custom compiled mingw compiler tools. I can at most put one at C:\mingw\ (Obviously).
This implies to me that Eclipse does not support multiple custom toolchains for C++.
If this is not the case, please explain how one can hook up Eclipse to use multiple compilation toolchains.
To keep thing simple let's make some base assumptions:
Location of goodies:
D:\mingw_cust1\mingw\
D:\mingw_cust2\mingw\
When I make a new project in eclipse I'd like to be able to choose which toolchain I want for that project.