Skip to content

Commit

Permalink
qmake: Add support for arm64 hosts on Windows
Browse files Browse the repository at this point in the history
Pick-to: 6.8
Change-Id: I0096300fce870ef4411b071f074588a6420188e0
Reviewed-by:  Alexey Edelev <alexey.edelev@qt.io>
Reviewed-by: Joerg Bornemann <joerg.bornemann@qt.io>
  • Loading branch information
owolff committed Jul 15, 2024
1 parent 5e2635e commit b66ecb2
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions qmake/library/qmakeevaluator.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1046,6 +1046,11 @@ void QMakeEvaluator::loadDefaults()
case PROCESSOR_ARCHITECTURE_AMD64:
archStr = ProString("x86_64");
break;
# endif
# ifdef PROCESSOR_ARCHITECTURE_ARM64
case PROCESSOR_ARCHITECTURE_ARM64:
archStr = ProString("arm64");
break;
# endif
case PROCESSOR_ARCHITECTURE_INTEL:
archStr = ProString("x86");
Expand Down

0 comments on commit b66ecb2

Please sign in to comment.