Downgrading to a specific Mingw version #8306
Unanswered
anoopkumares
asked this question in
Q&A
Replies: 1 comment
-
You can downgrade a specific package by downloading the .tar.zst file from a Pacman repo like this http://repo.msys2.org/mingw/ and install it with But I didn't get the actual scenario for doing that. That qmake path doesn't belong to msys2 installation and we've already a qt5 and qt6 packages which can be used/linked with a project. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I have MSYS2 64 bit installed in my system.
When I try to check the gcc version, I am getting the following output.
But I want to use a specific mingw version for my project which uses qt library.
When I check my build log and installation folder of my qt project I found this.
|Project name: DataManager
|Project version: undefined
|C++ compiler for the host machine: ccache c++ (gcc 4.9.2 "c++ (i686-posix-dwarf-rev1, Built by MinGW-W64 project) 4.9.2")
|C++ linker for the host machine: c++ ld.bfd 2.24
|Program python3 found: YES
|Found qmake: C:\Qt\5.6.3\mingw49_32\bin\qmake.EXE (5.6.3)
I am assuming that it uses mingw49_32 version and gcc version 4.9.2.
I would like to use the same gcc version (4.9.2) in MSYS2.
How can I achieve it ?
Beta Was this translation helpful? Give feedback.
All reactions