error LNK2019: unresolved external symbol

9 ビュー (過去 30 日間)
Maialen
Maialen 2014 年 6 月 5 日
コメント済み: José-Luis 2014 年 6 月 6 日
Hi everybody,
When I try to compile my S-function builder I get the following error:
Creating library myFunction.lib and object myFunction.exp myFunction_wrapper.obj : error LNK2019: unresolved external symbol ioctl referenced in function myFunction_Outputs_wrapper myFunction.mexw64 : fatal error LNK1120: 1 unresolved externals
This is the code that I use:
static char *i2cCtrlDevName = "/dev/i2ctrl"; static int i2cCtrlDev = -1; long ret;
i2cCtrlDev = open(i2cCtrlDevName, O_RDWR);
if (i2cCtrlDev < 0)
{
printf("Error opening '%s' device file\n", i2cCtrlDevName);
return -1;
}
ret = ioctl(i2cCtrlDev, I2CTRL_GET_INPUTS, 0);
if (ret < 0) return -1;
I realize that the problem is in ioctl function, which does not recognize. If anybody knows why this happens it will be very helpful.
Thanks in advance.
  3 件のコメント
Maialen
Maialen 2014 年 6 月 6 日
I still use this includes:
#include fcntl.h #include sys/ioctl.h #include sys/mman.h
Do I need some other file?
José-Luis
José-Luis 2014 年 6 月 6 日
I don't know. You could always look inside the library and see if the functions you need are listed there.

サインインしてコメントする。

回答 (0 件)

カテゴリ

Help Center および File ExchangeC Shared Library Integration についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by