How to use gnu gcc flag -mpc32, -mpc64 and -mpc80?
问题 I got these GCC flags from the GNU GCC compiler Manual. But when I tried to use those flags ( -mpc32 , -mpc64 and -mpc80 ) I couldn't observe the behavior. So I need help on how to use these flags with a sample code. sample code I tried: test.cpp #include<stdio.h> #include<iomanip> #include<math.h> int main() { double weight = 1.0f; double roiSize = 137.142364501953125f; double thresholdValue = 5400.0f; double alpha = weight / (roiSize * thresholdValue * thresholdValue); std::cout<<std: