Is it possible to tell which flags Qt itself was compiled with?
-
As you know, if you compile Qt from source, the ./configure script decides how to build Qt using:
a) your own explicit inputs (eg './configure ... -disable-vulkan -qt-zlib')
b) automatically based on libraries already found on the current systemI have a Qt installation (Linux/gcc) done by someone else and I'd like to know which options were used when building it. Is that possible? For example let's say I have the official Qt SDK installed, how would I know what options they used to create it? (both explicit, and automatic))
-
Hi,
Unless you have access to the build folder (or the user's command history), it's not possible.
-
Thank you.