diff options
author | Peter Kümmel <syntheticpp@gmx.net> | 2012-09-18 11:10:52 +0200 |
---|---|---|
committer | Tobias Hunger <tobias.hunger@digia.com> | 2012-09-27 11:15:10 +0200 |
commit | 28f8bf07cccf4b82a9609795db416f98bdfb4e58 (patch) | |
tree | 9aef633c678d3d39d57d2fbc245049427de050ab /src/plugins/projectexplorer/msvctoolchain.h | |
parent | 5a30a70e7987cb353b1b099685094128ee284bbe (diff) | |
download | qt-creator-28f8bf07cccf4b82a9609795db416f98bdfb4e58.tar.gz |
msvctoolchain: x64 and amd64 are the same
- show cross and native in gui
- add missing compilers
Change-Id: Id48579d4e5dae3a68ed92c0cd2f41309e4f96753
Reviewed-by: Tobias Hunger <tobias.hunger@digia.com>
Reviewed-by: Friedemann Kleint <Friedemann.Kleint@digia.com>
Reviewed-by: Peter Kümmel <syntheticpp@gmx.net>
Diffstat (limited to 'src/plugins/projectexplorer/msvctoolchain.h')
-rw-r--r-- | src/plugins/projectexplorer/msvctoolchain.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/plugins/projectexplorer/msvctoolchain.h b/src/plugins/projectexplorer/msvctoolchain.h index bfec69250f..33b8c0aa20 100644 --- a/src/plugins/projectexplorer/msvctoolchain.h +++ b/src/plugins/projectexplorer/msvctoolchain.h @@ -50,7 +50,12 @@ class MsvcToolChain : public AbstractMsvcToolChain { public: enum Type { WindowsSDK, VS }; - enum Platform { s32, s64, ia64, amd64 }; + enum Platform { x86, // x86 -> x86 + amd64, // amd64 -> amd64 + ia64, // ia64 -> ia64 + x86_amd64, // x86 -> amd64 + x86_ia64, // x86 -> ia64 + }; MsvcToolChain(const QString &name, const Abi &abi, const QString &varsBat, const QString &varsBatArg, bool autodetect = false); |