4

I am struggling with the problem of Matlab mex compile. It needs specific old version of gcc compiler 4.4.6 . But in manager there is only 4.4 version. How could I specify it as 4.4.6? Or is it possible?

Next, I need to run it as gcc command. Currently my gcc command runs 4.7.2 version. How can I switch the gcc command to run the old version on Mint machine. Since installing only the compiler does not work for Matlab and it is calling plain gcc command.

erogol
  • 433
  • 1
  • 9
  • 22

1 Answers1

5

Just install the package gcc-4.4 along with the other version of gcc. The next step would be to change the default gcc to this specific version. Most elegant and easy way is using update-alternatives. This is all explained in this Stackoverflow.com answer.

gertvdijk
  • 3,497
  • 1
  • 18
  • 37