I've figure out why my simulink model cause build error.
Error messege tell me that 'No rule to make target 'a'
___
version1.c: In function ‘version1_RRTPlanner_planPath.constprop’:
version1.c:3350:10: warning: ‘x_data’ may be used uninitialized in this function [-Wmaybe-uninitialized]
if (!x_data) {
^
version1.c:3334:13: note: ‘x_data’ was declared here
boolean_T x_data;
^~~~~~
version1.c:4288:14: warning: ‘parentId_data’ may be used uninitialized in this function [-Wmaybe-uninitialized]
if (qY > parentId_data) {
^
version1.c:4262:19: warning: ‘edgeId_data’ may be used uninitialized in this function [-Wmaybe-uninitialized]
edgeId_data = fmax(edgeId_data, 1.0);
~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~
make: *** No rule to make target 'autonomouscodegen_dubins.cpp', needed by '../libversion1_linux64.a'. Stop.
___
So what should I do for this problem?