4

更新:ここで説明されているように、XCode をインストールし、mexopts.sh の SDKROOT を実際のパスを反映するように変更しましたが、mex.h をインクルードすると、まだこのエラーが発生します。

In file included from /Applications/MATLAB_R2012b.app/extern/include/matrix.h:294,
                 from /Applications/MATLAB_R2012b.app/extern/include/mex.h:58,
                 from test.c:2:
/Applications/MATLAB_R2012b.app/extern/include/tmwtypes.h:61:21: error: float.h: No such file or directory

    mex: compile of ' "test.c"' failed.

mex を使用して Matlab で使用する簡単な C ファイルをコンパイルしようとしていますが、インストールされていることがわかっている既定のライブラリが見つからないようです。たとえば、次をコンパイルしようとしています。

#include <string.h>
int main() {
    return 0;
}

エラーが表示されます:

test.c:1:20: error: string.h: No such file or directory
mex: compile of ' "test.c"' failed.

gccを使用して正常にコンパイルされますが。さらに悪いことに、次のように mex.h をインクルードしようとすると:

#include "mex.h"
int main() {
    return 0;
}

次のエラーが表示されます。

In file included from /Applications/MATLAB_R2012b.app/extern/include/mex.h:58,
                 from test.c:2:
/Applications/MATLAB_R2012b.app/extern/include/matrix.h:293:20: error: stddef.h: No such file or directory
In file included from /Applications/MATLAB_R2012b.app/extern/include/matrix.h:294,
                 from /Applications/MATLAB_R2012b.app/extern/include/mex.h:58,
                 from test.c:2:
/Applications/MATLAB_R2012b.app/extern/include/tmwtypes.h:43:20: error: limits.h: No such file or directory
/Applications/MATLAB_R2012b.app/extern/include/tmwtypes.h:46:21: error: stdbool.h: No such file or directory
/Applications/MATLAB_R2012b.app/extern/include/tmwtypes.h:61:21: error: float.h: No such file or directory
/Applications/MATLAB_R2012b.app/extern/include/tmwtypes.h:777:2: error: #error "This code must be compiled using a 2's complement representation for signed integer values"
In file included from /Applications/MATLAB_R2012b.app/extern/include/matrix.h:294,
                 from /Applications/MATLAB_R2012b.app/extern/include/mex.h:58,
                 from test.c:2:
/Applications/MATLAB_R2012b.app/extern/include/tmwtypes.h:823: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'CHAR16_T'
In file included from /Applications/MATLAB_R2012b.app/extern/include/mex.h:58,
                 from test.c:2:
/Applications/MATLAB_R2012b.app/extern/include/matrix.h:319: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'mxChar'
/Applications/MATLAB_R2012b.app/extern/include/matrix.h:375: error: expected ')' before 'n'
/Applications/MATLAB_R2012b.app/extern/include/matrix.h:383: error: expected ')' before 'n'
/Applications/MATLAB_R2012b.app/extern/include/matrix.h:397: error: expected declaration specifiers or '...' before 'size_t'
/Applications/MATLAB_R2012b.app/extern/include/matrix.h:590: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'mxGetNumberOfElements'
/Applications/MATLAB_R2012b.app/extern/include/matrix.h:632: error: expected '=', ',', ';', 'asm' or '__attribute__' before '*' token
/Applications/MATLAB_R2012b.app/extern/include/matrix.h:688: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'mxGetM'
/Applications/MATLAB_R2012b.app/extern/include/matrix.h:700: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'mxGetN'
/Applications/MATLAB_R2012b.app/extern/include/matrix.h:750: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'mxGetElementSize'
In file included from /Applications/MATLAB_R2012b.app/extern/include/mex.h:58,
             from test.c:2:
/Applications/MATLAB_R2012b.app/extern/include/matrix.h:851:20: error: stdlib.h: No such file or directory
/Applications/MATLAB_R2012b.app/extern/include/matrix.h:1072: error: expected ')' before 'm'
In file included from test.c:2:
/Applications/MATLAB_R2012b.app/extern/include/mex.h:91: error: expected specifier-qualifier-list before 'size_t'
In file included from test.c:2:
/Applications/MATLAB_R2012b.app/extern/include/mex.h:161:19: error: stdio.h: No such file or directory

    mex: compile of ' "test.c"' failed.

mex がこれらのライブラリの適切な場所を探していないか、何らかの理由でインストールが破損していると思いますが、修正方法がわかりません。

Mac OSX マウンテン ライオン + XCode 4.5.2、Matlab R2012b、gcc 4.2.1

4

3 に答える 3

1

mex -Ipathnameを使用して特にインクルード ファイルをインクルードしない限り、インクルード ファイルはPATHにある必要があります (これらのフォルダーを表示するには、パスを入力します) 。[ファイル] -> [パスの設定] をクリックして、string.h を含むフォルダーを追加できます。

于 2012-11-18T06:09:19.300 に答える
1

共有するだけで、同様の問題がありました。同じバージョンの Matlab を実行していて、このページを見ていましたが、答えが見つかりませんでした。ここで答えを見つけました:Matlab 2012a Mex to work with Xcode 4.5 on Mountain Lion

于 2013-01-14T16:51:09.227 に答える