Reputation: 3858
I have to run make command using specific version gcc compiler (using gcc-4.1 because after that versions will give deprecated method warnings or errors).. Now, there are several versions of gcc installed in the server. Can anybody help, how can I run it (make command) to a specific version gcc compiler (means on gcc-4.1).
Upvotes: 4
Views: 10649
Reputation: 208343
If your makefile does not reset the compiler and your rules do not have the compiler hardcoded, you can use the CC and CXX environment variables to control what compiler will be used.
Upvotes: 0
Reputation: 29021
You can do:
CC=gcc-4.1 make
That will fill the $(CC) variable of your make. Also, you can write:
make CC=gcc-4.1
Upvotes: 10