Hi,

I'm trying to check if I'm on a 64bits machine or a 32 bits one. So I use this in the .pro file

Qt Code:
  1. !contains($$QMAKE_HOST.arch, x86_64) { ....
To copy to clipboard, switch view to plain text mode 

But it detect that I'm on 32 bits machine... in fact QMAKE_HOST.arch = x86 !!!!

What is the problem ?

Thanks