Borrar filtros
Borrar filtros

using #ifdef in c++ generated mexcode

7 visualizaciones (últimos 30 días)
Ebaneo Enrique
Ebaneo Enrique el 22 de Nov. de 2023
Editada: Ebaneo Enrique el 1 de Dic. de 2023
Hello,
I am calling mexFunction.cpp from matlab
coder.ceval('mexMiFunction', .....);
the mex function in c++ originally looks like this,
void mexMiFunction(int nlhs, mxArray* plhs[],
int nrhs, const mxArray* prhs[])
{
.....
}
but I want to be able to run 2 different codes , depending on if we are generating code using CodeGenerator or not. It would look like this
#ifdef CODER //takes this path if we are using code generator
int miCustomFunction(...)
{
.... different implementation
}
#else
void mexMiFunction(int nlhs, mxArray* plhs[],
int nrhs, const mxArray* prhs[])
{
.....
}
#endif
How can I do it? thanks a lot.

Respuesta aceptada

Varun
Varun el 27 de Nov. de 2023
Hi Ebaneo,
I understand that you want to conditionally compile different parts of your code depending on whether you are using the Code Generator or not, you can use preprocessor directives in your C++ code.
In your case, you've already provided an example with the "#ifdef" and "#else" directives. However, you need to define the "CODER" macro when generating code using the Code Generator.
In your MATLAB code, when you call the "coder.ceval" function, you need to ensure that the "CODER" macro is defined. You can do this by using
coder.updateBuildInfo('addDefines', '-CODER');
For example, in MATLAB, before calling coder.ceval, you can set the compiler options like this:
coder.updateBuildInfo('addDefines', '-CODER');
coder.ceval('mexMiFunction', ...);
This tells the compiler to define the "CODER" macro during compilation, so the code inside the "#ifdef CODER" block will be included.
Refer the following documentation to learn more about using “coder.updateBuildInfo” function:
Hope this helps.
  1 comentario
Ebaneo Enrique
Ebaneo Enrique el 1 de Dic. de 2023
Editada: Ebaneo Enrique el 1 de Dic. de 2023
thank you very much for your help!
the only thing I would note is that
coder.updateBuildInfo('addDefines', '-CODER');
gives me an error "macro names must be identifiers"
on the oder hand, if I use
coder.updateBuildInfo('addDefines', 'CODER');
it works, thanks

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre MATLAB Coder en Help Center y File Exchange.

Productos


Versión

R2023b

Community Treasure Hunt

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

Start Hunting!

Translated by