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).
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
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With