matlab mex clang C ++ 11-Thread -> Fehler bei nicht definierten Symbolen

Ziel: Ich möchte Thread STL von C ++ 11 in Matlab mex-Datei (R2013a) mit Xcode 4.6 verwenden

Ich habe ~ / .matlab / R2013a / mexopts.sh geändert

        CC='clang++'   # was llvm-gcc-4.2
        CXX='clang++'   # was llvm-g++-4.2
        MACOSX_DEPLOYMENT_TARGET='10.8'   # was 10.5. C++11 is supported >=10.7
        CXXFLAGS="$CXXFLAGS -std=gnu++11 -stdlib=libc++"   # additional flags

Normale mex-Dateien ohne C ++ 11-Funktionen sind gut kompiliert. Darüber hinaus wird STL vom Compiler mit Ausnahme von Verbindungsfehlern gut erkannt.

>> mex mextest.cpp

Undefined symbols for architecture x86_64:
"std::__1::__thread_struct::__thread_struct()", referenced from:                                      
    void* std::__1::__thread_proxy<std::__1::tuple<void (*)()> >(void*) in mextest.o                        
"std::__1::__thread_struct::~__thread_struct()", referenced from:                            
    void* std::__1::__thread_proxy<std::__1::tuple<void (*)()> >(void*) in mextest.o                        
"std::__1::__thread_local_data()", referenced from:                              
    void* std::__1::__thread_proxy<std::__1::tuple<void (*)()> >(void*) in mextest.o                      
"std::__1::__throw_system_error(int, char const*)", referenced from:                      
    _mexFunction in mextest.o                   
"std::__1::thread::join()", referenced from:                    
    _mexFunction in mextest.o                            
"std::__1::thread::~thread()", referenced from:                    
    _mexFunction in mextest.o    
ld: symbol(s) not found for architecture x86_64
clang: error: linker command failed with exit code 1 (use -v to see invocation)

    mex: link of ' "mextest.mexmaci64"' failed.

Error using mex (line 206)
Unable to complete successfully.

Der eigentliche Quellcode ist unten dargestellt. Die Details sind nicht wichtig, da sie in der Matlab R2013 WINDOWS-Version mit Visual Studio 2012 Express gut kompiliert werden können. Ein äquivalentes cpp wurde auch mit "clang ++ -std = gnu ++ 11 -stdlib = libc ++ clangtest.cpp" gut kompiliert. Zumindest gibt es also keinen logischen Fehler in den Codes (ich sage nicht, dass es sichere Codes sind. Es ist nur ein Test.)

#include "mex.h"
#include <thread>
#include <stdio.h>

int count_thread1 = 0;
int count_thread2 = 0;

void hello()
{
    count_thread2 = 0;
    for(int i=0; i<=10000; i++){
        for (int j=1;j<=20000;j++){
            count_thread2 = i-j-1;
        }
        count_thread2++;
        printf("2: %d , %d\n", count_thread1, count_thread2); // Not sure if printf is thread-safe in Matlab. But it works in this particular example
    }
}
void mexFunction(int nlhs,mxArray *plhs[],int nrhs,const mxArray *prhs[])
{
    count_thread1 = 0;
    std::thread t(hello);
    for (int i=1;i<=10000;i++)
    {
        for (int j=1;j<=20000;j++){
            count_thread1 = -i+j-1;
        }
        count_thread1++;
        mexPrintf("1: %d , %d\n", count_thread1, count_thread2);
    }
    mexPrintf("\n");
    t.join();
    mexPrintf("Done\n");
}

Es scheint, als müsste ich einige Include-Verzeichnisse und / oder Bibliotheksverzeichnisse ersetzen. Welche Optionen sollten geändert werden?

Vielen Dank.

Antworten auf die Frage(1)

Ihre Antwort auf die Frage