[Create mexfunction from C code] The order of several c files
2 ビュー (過去 30 日間)
古いコメントを表示
I have a c source code that consists of several .c files. How can I know the orders of these files when I build the mex function?
for example:
mex mainFun.c X.c Y.c Z.c
This is the source code:
I have got this error "Error using mex D:\TestMexFunction\unix_timer.c:22:26: fatal error: sys/resource.h: No such file or directory #include <sys/resource.h> ^
compilation terminated." when I run:
mex mainFun.c ants.c parse.c TSP.c dos_timer.c InOut.c ls.c unix_timer.c utilities.c
mainFun.c includes the mexFunction()
acotsp.c includes the main() function
Is it because of the order of c files or another reason?
0 件のコメント
回答 (2 件)
James Tursa
2019 年 9 月 20 日
編集済み: James Tursa
2023 年 4 月 18 日
The order you compile your source code files should not matter (other than the fact that the mex function name will be based on the first file listed unless you override that). The error seems to be that the compiler can't find the resource.h file.
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!