I'm studying qt on platform Fedora linux, It threw a g++ error as below while I make a sample cpp
g++ error:/usr/lib/rpm/redhat/redhat-hardened-cc1: No such file or directory
Would who indicate how to do for me please?
I'm studying qt on platform Fedora linux, It threw a g++ error as below while I make a sample cpp
g++ error:/usr/lib/rpm/redhat/redhat-hardened-cc1: No such file or directory
Would who indicate how to do for me please?
You need to install redhat-rpm-config
which is required by some of the qt
switches, probably:
sudo dnf install redhat-rpm-config
From AskFedora.
According to this topic installation of the package redhat-rpm-config
should fix this problem.
/usr/lib/rpm/redhat/redhat-hardened-cc1 is included in the package redhat-rpm-config. I had a similiar issue on a local development system and installing this package solved the issue for me.