mex cpp file in ubuntu

조회 수: 10 (최근 30일)
zhang
zhang 2013년 8월 29일
댓글: Masoud Ahookhosh 2016년 8월 8일
Hi everyone
I'm trying to mex a cpp file in ubuntu using the following command.
mex triLinearVoting.cpp.
It gives me the following error:
Warning: You are using gcc version "4.6.3". The version currently supported with MEX is "4.4.x". For a list of currently supported compilers see: http://www.mathworks.com/support/compilers/current_release/ /usr/local/MATLAB/R2013a/bin/mex: 1: eval: g++: not found mex: compile of ' "triLinearVoting.cpp"' failed.
Thanks,

채택된 답변

Walter Roberson
Walter Roberson 2013년 8월 29일
It appears that you do not have g++ installed, and it appears that your gcc version is newer than mex has been tested with. The newer gcc is a warning that something might go wrong. But you need to install g++ to get any further.
  댓글 수: 1
Aidin
Aidin 2014년 11월 4일
I did download and install the gcc-4.4, but still getting the same warning message. Is it necessary to configure the Matlab current gcc compiler to the older version? If yes how?

댓글을 달려면 로그인하십시오.

추가 답변 (2개)

Aidin
Aidin 2014년 11월 4일
편집: Aidin 2014년 11월 15일
Finally, I configured Matlab to use an old gcc compiler (gcc-4.4 / Matlab 2013a / platform: Ubuntu 14.04). Here are the setp-by-step solution.
1) Install the old gcc required, here I installed gcc-4.4 and g++-4.4.
sudo apt-get install g++.4.4
sudo apt-get install gcc.4.4
2) Locate mexopts.sh file in the Matlab bin directory
sudo gedit /usr/locaL/MATLAB/R2013a/bin/mexopts.sh
and modify the following enteries:
CC='gcc' -> CC='gcc-4.4'
CC='g++' -> CC='g++-4.4'
3) Re-setup mex in Matlab using the modified mexopts.sh.
mex -setup
Choose the modified mexopts.sh when prompted for the options.
The options files available for mex are:
1: /usr/local/MATLABR2013a/bin/mexopts.sh :
Template Options file for building MEX-files
0: Exit with no changes
or directly give the path to the modified option file
mex -setup -f /usr/local/MATLABR2013a/bin/mexopts.sh
  댓글 수: 2
Aditya Earanky
Aditya Earanky 2016년 5월 11일
This worked for me! Thanks :)
Masoud Ahookhosh
Masoud Ahookhosh 2016년 8월 8일
Thanks! Perfectly worked for me!

댓글을 달려면 로그인하십시오.


Shashank Prasanna
Shashank Prasanna 2013년 8월 29일
As the warning says you are using an unsupported version of the GCC compiler.
Use the support compiler:
And please take a look at the supported compiler page:
  댓글 수: 1
Alexander
Alexander 2014년 3월 10일
Can you please give a step-by-step solution? How do I point mex to the right version of GCC once it is dowloaded?

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Introduction to Installation and Licensing에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by