How to set gcc 4.3 default specs file?

后端 未结 3 627
长情又很酷
长情又很酷 2021-01-04 00:19

When using gcc version 4.3.2, I see how to generate specs using:

$ /usr/local/gcc-4.3.2/bin/gcc -v
Using built-in specs

Now changing to the

3条回答
  •  一生所求
    2021-01-04 00:44

    You rebuild gcc with your specs file as part of the build!

    A simpler solution is to create an alias:

    alias gcc_Gary gcc -specs //newSpecsFile
    

提交回复
热议问题