Azzera filtri
Azzera filtri

Specify runtime path with mex

7 visualizzazioni (ultimi 30 giorni)
Aditya
Aditya il 6 Giu 2011
What is the correct syntax for including runtime path with mex? With gcc, the syntax is "gcc -Wl,-rpath,dir1:dir2:etc". When I use same syntax as
mex -cxx -Wl,-rpath,/path/to/lib ...
I get an error that says "Error: Unexpected Matlab operator" at "/" which starts the string "/path/to/lib".
Thanks.

Risposte (2)

James Tursa
James Tursa il 6 Giu 2011
The parser doesn't always give you what you expect when you include all of your inputs on the command line like you have shown. To be sure of your inputs, use the function form of mex instead:
mex('-cxx','-Wl', etc...)

Kaustubha Govind
Kaustubha Govind il 6 Giu 2011
I would recommend separating out the compiler and linker flags and pass them into MEX using something like:
mex -v CFLAGS="\$CFLAGS -cxx -WI" LDFLAGS="\$LDFLAGS -rpath,/path/to/lib" mymexfile.c

Categorie

Scopri di più su Write C Functions Callable from MATLAB (MEX Files) in Help Center e File Exchange

Tag

Community Treasure Hunt

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

Start Hunting!

Translated by