I need to build a shared library from c code generated with mcc ?

4 visualizaciones (últimos 30 días)
Ayoub Bourkhiss
Ayoub Bourkhiss el 2 de Jun. de 2016
Respondida: Titus Edelhofer el 10 de Jun. de 2016
Hello,
i created a c- and h- files with following command line:
mcc -v -W lib:libfmat mymfunc.m
now i need to generate a shared library with this c-code, i am trying this way but this puts an unusable library out.
mbuild libfmat.c CFLAGS="-fPIC $CFLAGS" LDTYPE="-shared" LDEXT=".so"
I need to know how to make a shared library from generated c-code ?
Thank you. Ayoub

Respuestas (1)

Titus Edelhofer
Titus Edelhofer el 10 de Jun. de 2016
Hi,
you might do this in one step:
mcc -l mymfunc.m -o libfmat
Titus

Categorías

Más información sobre C Shared Library Integration en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by