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.
redhat-rpm-config package directly (qt?) or the OP did install QT or other tools somehow different way that he skipped the dependency, but it is hard to guess.
– Jakuje
May 9 '16 at 20:04
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.