正在显示
122 个修改的文件
包含
737 行增加
和
1238 行删除
| @@ -130,7 +130,9 @@ | @@ -130,7 +130,9 @@ | ||
| 130 | "videodev2.h": "c", | 130 | "videodev2.h": "c", |
| 131 | "jzsdk_widget.h": "c", | 131 | "jzsdk_widget.h": "c", |
| 132 | "dji_sdk_config.h": "c", | 132 | "dji_sdk_config.h": "c", |
| 133 | - "hal_uart.h": "c" | 133 | + "hal_uart.h": "c", |
| 134 | + "jzsdkbase.h": "c", | ||
| 135 | + "dji_logger.h": "c" | ||
| 134 | }, | 136 | }, |
| 135 | "Codegeex.GenerationPreference": "automatic", | 137 | "Codegeex.GenerationPreference": "automatic", |
| 136 | "C_Cpp.dimInactiveRegions": false | 138 | "C_Cpp.dimInactiveRegions": false |
| 1 | # 编译链的配置 | 1 | # 编译链的配置 |
| 2 | 2 | ||
| 3 | #1、编译链与设备类型的选择 | 3 | #1、编译链与设备类型的选择 |
| 4 | -set(DEVICE_NAME JZ_C1) | 4 | +set(DEVICE_NAME JZ_U3D) |
| 5 | #上一行为禁止修改行 | 5 | #上一行为禁止修改行 |
| 6 | 6 | ||
| 7 | message("**************************JZSDK构建编译开始***************************\n") | 7 | message("**************************JZSDK构建编译开始***************************\n") |
| @@ -22,13 +22,16 @@ static T_JZsdkReturnCode JZsdk_PrepareSystemEnvironment() | @@ -22,13 +22,16 @@ static T_JZsdkReturnCode JZsdk_PrepareSystemEnvironment() | ||
| 22 | 22 | ||
| 23 | 23 | ||
| 24 | //初始化sdk | 24 | //初始化sdk |
| 25 | -T_JZsdkReturnCode JZsdk_LibInit() | 25 | +T_JZsdkReturnCode JZsdk_LibInit(int LogFlag) |
| 26 | { | 26 | { |
| 27 | //环境初始化 | 27 | //环境初始化 |
| 28 | JZsdk_PrepareSystemEnvironment(); | 28 | JZsdk_PrepareSystemEnvironment(); |
| 29 | - | ||
| 30 | - //1、初始化log | ||
| 31 | - JZsdk_LoggerInit(); | 29 | + |
| 30 | + if (LogFlag == JZ_FLAGCODE_ON) | ||
| 31 | + { | ||
| 32 | + //1、初始化log | ||
| 33 | + JZsdk_LoggerInit(); | ||
| 34 | + } | ||
| 32 | 35 | ||
| 33 | //2、任务管理系统初始化 | 36 | //2、任务管理系统初始化 |
| 34 | TaskManagement_Init(); | 37 | TaskManagement_Init(); |
| @@ -26,7 +26,7 @@ extern "C" { | @@ -26,7 +26,7 @@ extern "C" { | ||
| 26 | /* Exported types ------------------------------------------------------------*/ | 26 | /* Exported types ------------------------------------------------------------*/ |
| 27 | 27 | ||
| 28 | /* Exported functions --------------------------------------------------------*/ | 28 | /* Exported functions --------------------------------------------------------*/ |
| 29 | -T_JZsdkReturnCode JZsdk_LibInit(); | 29 | +T_JZsdkReturnCode JZsdk_LibInit(int LogFlag); |
| 30 | 30 | ||
| 31 | 31 | ||
| 32 | #ifdef __cplusplus | 32 | #ifdef __cplusplus |
| @@ -474,7 +474,7 @@ int JZsdk_GetFrameTemplate(int InsCode ,char *str, int *str_len) | @@ -474,7 +474,7 @@ int JZsdk_GetFrameTemplate(int InsCode ,char *str, int *str_len) | ||
| 474 | 474 | ||
| 475 | case JZ_INSCODE_5BFRAME_OPUS_DECODE_STATUS: | 475 | case JZ_INSCODE_5BFRAME_OPUS_DECODE_STATUS: |
| 476 | { | 476 | { |
| 477 | - char sendbuf[12] = { 0x5b, 0x5b, 0x77, 0x00, 0x0D, 0x00, 0x00, 0x59, 0xf2, 0x00, 0x00, 0x23}; | 477 | + char sendbuf[12] = { 0x5b, 0x5b, 0x77, 0x00, 0x0c, 0x00, 0x00, 0x59, 0xf2, 0x00, 0x00, 0x23}; |
| 478 | memcpy(str, sendbuf, 12); | 478 | memcpy(str, sendbuf, 12); |
| 479 | *str_len = 12; | 479 | *str_len = 12; |
| 480 | } | 480 | } |
| @@ -323,7 +323,7 @@ T_JZsdkReturnCode Main_APP_Psdk() | @@ -323,7 +323,7 @@ T_JZsdkReturnCode Main_APP_Psdk() | ||
| 323 | int value[5] = {0, 0, 0, 0, 0}; | 323 | int value[5] = {0, 0, 0, 0, 0}; |
| 324 | 324 | ||
| 325 | //sdklib加载 | 325 | //sdklib加载 |
| 326 | - JZsdk_LibInit(); | 326 | + JZsdk_LibInit(JZ_FLAGCODE_ON); |
| 327 | 327 | ||
| 328 | //hal加载 | 328 | //hal加载 |
| 329 | JZsdk_Hal_Init(); | 329 | JZsdk_Hal_Init(); |
| @@ -366,7 +366,7 @@ int Main_APP_Uart() | @@ -366,7 +366,7 @@ int Main_APP_Uart() | ||
| 366 | int value[5] = {0, 0, 0, 0, 0}; | 366 | int value[5] = {0, 0, 0, 0, 0}; |
| 367 | 367 | ||
| 368 | //lib库初始化 | 368 | //lib库初始化 |
| 369 | - JZsdk_LibInit(); | 369 | + JZsdk_LibInit(JZ_FLAGCODE_ON); |
| 370 | 370 | ||
| 371 | JZsdk_Hal_Init(); | 371 | JZsdk_Hal_Init(); |
| 372 | 372 | ||
| @@ -396,7 +396,7 @@ int Main_TestAPP() | @@ -396,7 +396,7 @@ int Main_TestAPP() | ||
| 396 | { | 396 | { |
| 397 | int value[5] = {0, 0, 0, 0, 0}; | 397 | int value[5] = {0, 0, 0, 0, 0}; |
| 398 | 398 | ||
| 399 | - JZsdk_LibInit(); | 399 | + JZsdk_LibInit(JZ_FLAGCODE_ON); |
| 400 | 400 | ||
| 401 | JZsdk_Hal_Init(); | 401 | JZsdk_Hal_Init(); |
| 402 | 402 |
| @@ -7,7 +7,7 @@ | @@ -7,7 +7,7 @@ | ||
| 7 | #define VERSION_CHOOSE_H | 7 | #define VERSION_CHOOSE_H |
| 8 | #include "JZsdk_Base/JZsdk_Code/JZsdk_DeviceCode.h" | 8 | #include "JZsdk_Base/JZsdk_Code/JZsdk_DeviceCode.h" |
| 9 | //1~10行 除了D可以修改版本选择 禁止动任何东西 | 9 | //1~10行 除了D可以修改版本选择 禁止动任何东西 |
| 10 | -#define DEVICE_VERSION JZ_C1 | 10 | +#define DEVICE_VERSION JZ_U3D |
| 11 | 11 | ||
| 12 | //禁止修改行 选择是串口程序 还是 psdk程序 | 12 | //禁止修改行 选择是串口程序 还是 psdk程序 |
| 13 | #define APP_VERSION APP_PSDK | 13 | #define APP_VERSION APP_PSDK |
| @@ -19,7 +19,7 @@ | @@ -19,7 +19,7 @@ | ||
| 19 | #define MAJOR_VERSION 0x01 | 19 | #define MAJOR_VERSION 0x01 |
| 20 | #define MINOR_VERSION 0x03 | 20 | #define MINOR_VERSION 0x03 |
| 21 | #define MODIFY_VERSION 0x10 | 21 | #define MODIFY_VERSION 0x10 |
| 22 | -#define DEBUG_VERSION 0x04 | 22 | +#define DEBUG_VERSION 0x00 |
| 23 | 23 | ||
| 24 | //禁止修改行 滤波方式 | 24 | //禁止修改行 滤波方式 |
| 25 | #define FILTERING_TYPE HIGH_PASS_FILTERING | 25 | #define FILTERING_TYPE HIGH_PASS_FILTERING |
| @@ -899,12 +899,12 @@ static T_JZsdkReturnCode RecvDeal_audio_GetMusicList(int Port, char *getbuf) | @@ -899,12 +899,12 @@ static T_JZsdkReturnCode RecvDeal_audio_GetMusicList(int Port, char *getbuf) | ||
| 899 | #ifdef MEGAPHONE_CONFIG_STATUS_ON | 899 | #ifdef MEGAPHONE_CONFIG_STATUS_ON |
| 900 | 900 | ||
| 901 | //刷新歌曲列表 | 901 | //刷新歌曲列表 |
| 902 | - // ret = Megaphone_Flush_MusicList(); | ||
| 903 | - // if (ret != JZ_ERROR_SYSTEM_MODULE_CODE_SUCCESS) | ||
| 904 | - // { | ||
| 905 | - // HalSend_type1Send_Reply_Failure(Port, FrameSequence); | ||
| 906 | - // return JZ_ERROR_SYSTEM_MODULE_CODE_FAILURE; | ||
| 907 | - // } | 902 | + ret = Megaphone_Flush_MusicList(); |
| 903 | + if (ret != JZ_ERROR_SYSTEM_MODULE_CODE_SUCCESS) | ||
| 904 | + { | ||
| 905 | + HalSend_type1Send_Reply_Failure(Port, FrameSequence); | ||
| 906 | + return JZ_ERROR_SYSTEM_MODULE_CODE_FAILURE; | ||
| 907 | + } | ||
| 908 | 908 | ||
| 909 | //解析获取的类型 | 909 | //解析获取的类型 |
| 910 | int type = getbuf[9]; | 910 | int type = getbuf[9]; |
| @@ -1289,14 +1289,14 @@ T_JZsdkReturnCode Megaphone_SetVolume(int value, int mode)//设置音é‡ï¼ŒéŸ³é‡ | @@ -1289,14 +1289,14 @@ T_JZsdkReturnCode Megaphone_SetVolume(int value, int mode)//设置音é‡ï¼ŒéŸ³é‡ | ||
| 1289 | 1289 | ||
| 1290 | now_volume=value;//获取当前音量 | 1290 | now_volume=value;//获取当前音量 |
| 1291 | 1291 | ||
| 1292 | - //v3s自设系统 10T要提高30初始音量 | ||
| 1293 | - // if (DEVICE_VERSION == JZ_H10T || DEVICE_VERSION == JZ_U3 || DEVICE_VERSION == JZ_U3S || DEVICE_VERSION == JZ_U3D || DEVICE_VERSION == JZ_U30) | ||
| 1294 | - // { | ||
| 1295 | - // if (value > 0) | ||
| 1296 | - // { | ||
| 1297 | - // value = 30 + value * 10/7; | ||
| 1298 | - // } | ||
| 1299 | - // } | 1292 | + //v3s自设系统 要提高10初始音量 |
| 1293 | + if (DEVICE_VERSION == JZ_H10T || DEVICE_VERSION == JZ_U3 || DEVICE_VERSION == JZ_U3S || DEVICE_VERSION == JZ_U3D || DEVICE_VERSION == JZ_U30) | ||
| 1294 | + { | ||
| 1295 | + if (value > 0) | ||
| 1296 | + { | ||
| 1297 | + value = 20 + value * 10/8; | ||
| 1298 | + } | ||
| 1299 | + } | ||
| 1300 | 1300 | ||
| 1301 | if(value<=0) | 1301 | if(value<=0) |
| 1302 | { | 1302 | { |
| @@ -1342,15 +1342,14 @@ static T_JZsdkReturnCode Megaphone_SetTTSvolume() | @@ -1342,15 +1342,14 @@ static T_JZsdkReturnCode Megaphone_SetTTSvolume() | ||
| 1342 | int value = now_volume; | 1342 | int value = now_volume; |
| 1343 | printf("TTS音量修改\n"); | 1343 | printf("TTS音量修改\n"); |
| 1344 | 1344 | ||
| 1345 | - //v3s自设系统 10T要提高30初始音量 | ||
| 1346 | - // if (DEVICE_VERSION == JZ_H10T || DEVICE_VERSION == JZ_U3 || DEVICE_VERSION == JZ_U3S || DEVICE_VERSION == JZ_U3D || DEVICE_VERSION == JZ_U30) | ||
| 1347 | - // { | ||
| 1348 | - // if (value > 0) | ||
| 1349 | - // { | ||
| 1350 | - // value = 30 + value * 10/7; | ||
| 1351 | - // } | ||
| 1352 | - // } | ||
| 1353 | - | 1345 | + //v3s自设系统 要提高10初始音量 |
| 1346 | + if (DEVICE_VERSION == JZ_H10T || DEVICE_VERSION == JZ_U3 || DEVICE_VERSION == JZ_U3S || DEVICE_VERSION == JZ_U3D || DEVICE_VERSION == JZ_U30) | ||
| 1347 | + { | ||
| 1348 | + if (value > 0) | ||
| 1349 | + { | ||
| 1350 | + value = 20 + value * 10/8; | ||
| 1351 | + } | ||
| 1352 | + } | ||
| 1354 | 1353 | ||
| 1355 | if(value<=0) | 1354 | if(value<=0) |
| 1356 | { | 1355 | { |
| @@ -15,9 +15,8 @@ | @@ -15,9 +15,8 @@ | ||
| 15 | 15 | ||
| 16 | T_JZsdkReturnCode Megphone_Attention() | 16 | T_JZsdkReturnCode Megphone_Attention() |
| 17 | { | 17 | { |
| 18 | - | ||
| 19 | //hal加载 | 18 | //hal加载 |
| 20 | - JZsdk_Hal_Init(); | 19 | + JZsdk_LibInit(JZ_FLAGCODE_OFF); |
| 21 | 20 | ||
| 22 | //如果是喊话器设备 | 21 | //如果是喊话器设备 |
| 23 | #ifdef MEGAPHONE_CONFIG_STATUS_ON | 22 | #ifdef MEGAPHONE_CONFIG_STATUS_ON |
| @@ -35,6 +35,7 @@ set(CMAKE_DEPENDS_DEPENDENCY_FILES | @@ -35,6 +35,7 @@ set(CMAKE_DEPENDS_DEPENDENCY_FILES | ||
| 35 | "/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_TaskManagement/TaskManagement.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_TaskManagement/TaskManagement.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_TaskManagement/TaskManagement.c.o.d" | 35 | "/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_TaskManagement/TaskManagement.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_TaskManagement/TaskManagement.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_TaskManagement/TaskManagement.c.o.d" |
| 36 | "/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_TaskManagement/TaskMgmt_sample.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_TaskManagement/TaskMgmt_sample.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_TaskManagement/TaskMgmt_sample.c.o.d" | 36 | "/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_TaskManagement/TaskMgmt_sample.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_TaskManagement/TaskMgmt_sample.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_TaskManagement/TaskMgmt_sample.c.o.d" |
| 37 | "/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/BaseConfig.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/BaseConfig.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/BaseConfig.c.o.d" | 37 | "/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/BaseConfig.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/BaseConfig.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/BaseConfig.c.o.d" |
| 38 | + "/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_U3_series/JZ_U3/JZ_u3.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_U3_series/JZ_U3/JZ_u3.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_U3_series/JZ_U3/JZ_u3.c.o.d" | ||
| 38 | "/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/ParamterParsing.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/ParamterParsing.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/ParamterParsing.c.o.d" | 39 | "/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/ParamterParsing.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/ParamterParsing.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/ParamterParsing.c.o.d" |
| 39 | "/mnt/hgfs/share/JZSDK_Linux/JZsdk_hal/Hal_Recv/HalRecv.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_hal/Hal_Recv/HalRecv.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_hal/Hal_Recv/HalRecv.c.o.d" | 40 | "/mnt/hgfs/share/JZSDK_Linux/JZsdk_hal/Hal_Recv/HalRecv.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_hal/Hal_Recv/HalRecv.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_hal/Hal_Recv/HalRecv.c.o.d" |
| 40 | "/mnt/hgfs/share/JZSDK_Linux/JZsdk_hal/Hal_Recv/HalRecv_type1/HalRecv_type1.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_hal/Hal_Recv/HalRecv_type1/HalRecv_type1.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_hal/Hal_Recv/HalRecv_type1/HalRecv_type1.c.o.d" | 41 | "/mnt/hgfs/share/JZSDK_Linux/JZsdk_hal/Hal_Recv/HalRecv_type1/HalRecv_type1.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_hal/Hal_Recv/HalRecv_type1/HalRecv_type1.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_hal/Hal_Recv/HalRecv_type1/HalRecv_type1.c.o.d" |
| @@ -62,11 +63,12 @@ set(CMAKE_DEPENDS_DEPENDENCY_FILES | @@ -62,11 +63,12 @@ set(CMAKE_DEPENDS_DEPENDENCY_FILES | ||
| 62 | "/mnt/hgfs/share/JZSDK_Linux/Module/CommonMod/PowerManger/PowerManger.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/CommonMod/PowerManger/PowerManger.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/CommonMod/PowerManger/PowerManger.c.o.d" | 63 | "/mnt/hgfs/share/JZSDK_Linux/Module/CommonMod/PowerManger/PowerManger.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/CommonMod/PowerManger/PowerManger.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/CommonMod/PowerManger/PowerManger.c.o.d" |
| 63 | "/mnt/hgfs/share/JZSDK_Linux/Module/CommonMod/PresetTask/PresetTask.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/CommonMod/PresetTask/PresetTask.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/CommonMod/PresetTask/PresetTask.c.o.d" | 64 | "/mnt/hgfs/share/JZSDK_Linux/Module/CommonMod/PresetTask/PresetTask.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/CommonMod/PresetTask/PresetTask.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/CommonMod/PresetTask/PresetTask.c.o.d" |
| 64 | "/mnt/hgfs/share/JZSDK_Linux/Module/CommonMod/Upgrade/Upgrade.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/CommonMod/Upgrade/Upgrade.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/CommonMod/Upgrade/Upgrade.c.o.d" | 65 | "/mnt/hgfs/share/JZSDK_Linux/Module/CommonMod/Upgrade/Upgrade.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/CommonMod/Upgrade/Upgrade.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/CommonMod/Upgrade/Upgrade.c.o.d" |
| 65 | - "/mnt/hgfs/share/JZSDK_Linux/Module/DeviceConfig/JZC1/JZC1.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceConfig/JZC1/JZC1.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceConfig/JZC1/JZC1.c.o.d" | 66 | + "/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/Attribute/Attribute.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/Attribute/Attribute.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/Attribute/Attribute.c.o.d" |
| 66 | "/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/DeviceInfo.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/DeviceInfo.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/DeviceInfo.c.o.d" | 67 | "/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/DeviceInfo.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/DeviceInfo.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/DeviceInfo.c.o.d" |
| 67 | "/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/DeviceMessage/DeviceMessage.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/DeviceMessage/DeviceMessage.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/DeviceMessage/DeviceMessage.c.o.d" | 68 | "/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/DeviceMessage/DeviceMessage.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/DeviceMessage/DeviceMessage.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/DeviceMessage/DeviceMessage.c.o.d" |
| 68 | "/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/HardwareInfo/HardwareInfo.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/HardwareInfo/HardwareInfo.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/HardwareInfo/HardwareInfo.c.o.d" | 69 | "/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/HardwareInfo/HardwareInfo.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/HardwareInfo/HardwareInfo.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/HardwareInfo/HardwareInfo.c.o.d" |
| 69 | "/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/SerialNumberProc/ActivateMAT/ActivateMAT.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/SerialNumberProc/ActivateMAT/ActivateMAT.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/SerialNumberProc/ActivateMAT/ActivateMAT.c.o.d" | 70 | "/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/SerialNumberProc/ActivateMAT/ActivateMAT.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/SerialNumberProc/ActivateMAT/ActivateMAT.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/SerialNumberProc/ActivateMAT/ActivateMAT.c.o.d" |
| 71 | + "/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/SerialNumberProc/FirewareOriginMAT/Country_Code.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/SerialNumberProc/FirewareOriginMAT/Country_Code.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/SerialNumberProc/FirewareOriginMAT/Country_Code.c.o.d" | ||
| 70 | "/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/SerialNumberProc/FirewareOriginMAT/FirewareOriginMAT.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/SerialNumberProc/FirewareOriginMAT/FirewareOriginMAT.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/SerialNumberProc/FirewareOriginMAT/FirewareOriginMAT.c.o.d" | 72 | "/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/SerialNumberProc/FirewareOriginMAT/FirewareOriginMAT.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/SerialNumberProc/FirewareOriginMAT/FirewareOriginMAT.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/SerialNumberProc/FirewareOriginMAT/FirewareOriginMAT.c.o.d" |
| 71 | "/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/SerialNumberProc/SerialProc.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/SerialNumberProc/SerialProc.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/SerialNumberProc/SerialProc.c.o.d" | 73 | "/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/SerialNumberProc/SerialProc.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/SerialNumberProc/SerialProc.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/SerialNumberProc/SerialProc.c.o.d" |
| 72 | "/mnt/hgfs/share/JZSDK_Linux/Module/Gimbal/Gimbal.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Gimbal/Gimbal.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Gimbal/Gimbal.c.o.d" | 74 | "/mnt/hgfs/share/JZSDK_Linux/Module/Gimbal/Gimbal.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Gimbal/Gimbal.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Gimbal/Gimbal.c.o.d" |
| @@ -77,6 +79,14 @@ set(CMAKE_DEPENDS_DEPENDENCY_FILES | @@ -77,6 +79,14 @@ set(CMAKE_DEPENDS_DEPENDENCY_FILES | ||
| 77 | "/mnt/hgfs/share/JZSDK_Linux/Module/Ircut/Sysfs_gpio/Sysfs_gpio.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Ircut/Sysfs_gpio/Sysfs_gpio.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Ircut/Sysfs_gpio/Sysfs_gpio.c.o.d" | 79 | "/mnt/hgfs/share/JZSDK_Linux/Module/Ircut/Sysfs_gpio/Sysfs_gpio.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Ircut/Sysfs_gpio/Sysfs_gpio.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Ircut/Sysfs_gpio/Sysfs_gpio.c.o.d" |
| 78 | "/mnt/hgfs/share/JZSDK_Linux/Module/Ircut/V3s_ircut/V3s_ircut.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Ircut/V3s_ircut/V3s_ircut.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Ircut/V3s_ircut/V3s_ircut.c.o.d" | 80 | "/mnt/hgfs/share/JZSDK_Linux/Module/Ircut/V3s_ircut/V3s_ircut.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Ircut/V3s_ircut/V3s_ircut.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Ircut/V3s_ircut/V3s_ircut.c.o.d" |
| 79 | "/mnt/hgfs/share/JZSDK_Linux/Module/Ircut/ircut.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Ircut/ircut.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Ircut/ircut.c.o.d" | 81 | "/mnt/hgfs/share/JZSDK_Linux/Module/Ircut/ircut.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Ircut/ircut.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Ircut/ircut.c.o.d" |
| 82 | + "/mnt/hgfs/share/JZSDK_Linux/Module/Lighting/Lighting_InAndOut.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Lighting/Lighting_InAndOut.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Lighting/Lighting_InAndOut.c.o.d" | ||
| 83 | + "/mnt/hgfs/share/JZSDK_Linux/Module/Lighting/SearchLight/SearchLightTemControl/JZ_SearchLightTemp_calculation.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Lighting/SearchLight/SearchLightTemControl/JZ_SearchLightTemp_calculation.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Lighting/SearchLight/SearchLightTemControl/JZ_SearchLightTemp_calculation.c.o.d" | ||
| 84 | + "/mnt/hgfs/share/JZSDK_Linux/Module/Lighting/SearchLight/SearchLightTemControl/SearchLightTemControl.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Lighting/SearchLight/SearchLightTemControl/SearchLightTemControl.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Lighting/SearchLight/SearchLightTemControl/SearchLightTemControl.c.o.d" | ||
| 85 | + "/mnt/hgfs/share/JZSDK_Linux/Module/Lighting/SearchLight/SearchLight_V3S/SearchLight_V3S_H1T/SearchLight_V3S_H1T.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Lighting/SearchLight/SearchLight_V3S/SearchLight_V3S_H1T/SearchLight_V3S_H1T.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Lighting/SearchLight/SearchLight_V3S/SearchLight_V3S_H1T/SearchLight_V3S_H1T.c.o.d" | ||
| 86 | + "/mnt/hgfs/share/JZSDK_Linux/Module/Lighting/SearchLight/SearchLight_V3S/SearchLight_V3S_TFA1/SearchLight_V3S_TFA1.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Lighting/SearchLight/SearchLight_V3S/SearchLight_V3S_TFA1/SearchLight_V3S_TFA1.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Lighting/SearchLight/SearchLight_V3S/SearchLight_V3S_TFA1/SearchLight_V3S_TFA1.c.o.d" | ||
| 87 | + "/mnt/hgfs/share/JZSDK_Linux/Module/Lighting/SearchLight/SearchLight_V3S/SearchLight_V3S_U3/SearchLight_V3S_U3.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Lighting/SearchLight/SearchLight_V3S/SearchLight_V3S_U3/SearchLight_V3S_U3.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Lighting/SearchLight/SearchLight_V3S/SearchLight_V3S_U3/SearchLight_V3S_U3.c.o.d" | ||
| 88 | + "/mnt/hgfs/share/JZSDK_Linux/Module/Lighting/WarningLight/WarningLight_V3S/WarningLight_V3S_H1T/WarningLight_V3S_H1T.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Lighting/WarningLight/WarningLight_V3S/WarningLight_V3S_H1T/WarningLight_V3S_H1T.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Lighting/WarningLight/WarningLight_V3S/WarningLight_V3S_H1T/WarningLight_V3S_H1T.c.o.d" | ||
| 89 | + "/mnt/hgfs/share/JZSDK_Linux/Module/Lighting/WarningLight/WarningLight_V3S/WarningLight_V3S_TFA1/WarningLight_V3S_TFA1.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Lighting/WarningLight/WarningLight_V3S/WarningLight_V3S_TFA1/WarningLight_V3S_TFA1.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Lighting/WarningLight/WarningLight_V3S/WarningLight_V3S_TFA1/WarningLight_V3S_TFA1.c.o.d" | ||
| 80 | "/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/AttentionVoice/AttentionVoice.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/AttentionVoice/AttentionVoice.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/AttentionVoice/AttentionVoice.c.o.d" | 90 | "/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/AttentionVoice/AttentionVoice.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/AttentionVoice/AttentionVoice.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/AttentionVoice/AttentionVoice.c.o.d" |
| 81 | "/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/AudioMange/AudioMange.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/AudioMange/AudioMange.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/AudioMange/AudioMange.c.o.d" | 91 | "/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/AudioMange/AudioMange.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/AudioMange/AudioMange.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/AudioMange/AudioMange.c.o.d" |
| 82 | "/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/MegTempControl/MegTempControl.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/MegTempControl/MegTempControl.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/MegTempControl/MegTempControl.c.o.d" | 92 | "/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/MegTempControl/MegTempControl.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/MegTempControl/MegTempControl.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/MegTempControl/MegTempControl.c.o.d" |
| @@ -99,33 +109,6 @@ set(CMAKE_DEPENDS_DEPENDENCY_FILES | @@ -99,33 +109,6 @@ set(CMAKE_DEPENDS_DEPENDENCY_FILES | ||
| 99 | "/mnt/hgfs/share/JZSDK_Linux/Module/UI_control/WidegMgmt/JZsdk_Widget.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/UI_control/WidegMgmt/JZsdk_Widget.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/UI_control/WidegMgmt/JZsdk_Widget.c.o.d" | 109 | "/mnt/hgfs/share/JZSDK_Linux/Module/UI_control/WidegMgmt/JZsdk_Widget.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/UI_control/WidegMgmt/JZsdk_Widget.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/UI_control/WidegMgmt/JZsdk_Widget.c.o.d" |
| 100 | "/mnt/hgfs/share/JZSDK_Linux/Module/UI_control/WidegMgmt/JZsdk_WidgetControl.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/UI_control/WidegMgmt/JZsdk_WidgetControl.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/UI_control/WidegMgmt/JZsdk_WidgetControl.c.o.d" | 110 | "/mnt/hgfs/share/JZSDK_Linux/Module/UI_control/WidegMgmt/JZsdk_WidgetControl.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/UI_control/WidegMgmt/JZsdk_WidgetControl.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/UI_control/WidegMgmt/JZsdk_WidgetControl.c.o.d" |
| 101 | "/mnt/hgfs/share/JZSDK_Linux/Module/UI_control/WidegMgmt/JZsdk_WidgetIndex.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/UI_control/WidegMgmt/JZsdk_WidgetIndex.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/UI_control/WidegMgmt/JZsdk_WidgetIndex.c.o.d" | 111 | "/mnt/hgfs/share/JZSDK_Linux/Module/UI_control/WidegMgmt/JZsdk_WidgetIndex.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/UI_control/WidegMgmt/JZsdk_WidgetIndex.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/UI_control/WidegMgmt/JZsdk_WidgetIndex.c.o.d" |
| 102 | - "/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/boardtype_friendlyelec.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/boardtype_friendlyelec.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/boardtype_friendlyelec.c.o.d" | ||
| 103 | - "/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/drcSerial.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/drcSerial.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/drcSerial.c.o.d" | ||
| 104 | - "/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/max31855.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/max31855.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/max31855.c.o.d" | ||
| 105 | - "/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/max5322.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/max5322.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/max5322.c.o.d" | ||
| 106 | - "/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp23008.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp23008.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp23008.c.o.d" | ||
| 107 | - "/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp23016.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp23016.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp23016.c.o.d" | ||
| 108 | - "/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp23017.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp23017.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp23017.c.o.d" | ||
| 109 | - "/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp23s08.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp23s08.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp23s08.c.o.d" | ||
| 110 | - "/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp23s17.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp23s17.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp23s17.c.o.d" | ||
| 111 | - "/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp3002.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp3002.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp3002.c.o.d" | ||
| 112 | - "/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp3004.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp3004.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp3004.c.o.d" | ||
| 113 | - "/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp3422.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp3422.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp3422.c.o.d" | ||
| 114 | - "/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp4802.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp4802.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp4802.c.o.d" | ||
| 115 | - "/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/pcf8574.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/pcf8574.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/pcf8574.c.o.d" | ||
| 116 | - "/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/pcf8591.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/pcf8591.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/pcf8591.c.o.d" | ||
| 117 | - "/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/piHiPri.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/piHiPri.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/piHiPri.c.o.d" | ||
| 118 | - "/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/piThread.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/piThread.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/piThread.c.o.d" | ||
| 119 | - "/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/sn3218.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/sn3218.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/sn3218.c.o.d" | ||
| 120 | - "/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/softPwm.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/softPwm.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/softPwm.c.o.d" | ||
| 121 | - "/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/softServo.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/softServo.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/softServo.c.o.d" | ||
| 122 | - "/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/softTone.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/softTone.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/softTone.c.o.d" | ||
| 123 | - "/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/sr595.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/sr595.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/sr595.c.o.d" | ||
| 124 | - "/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/wiringPi.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/wiringPi.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/wiringPi.c.o.d" | ||
| 125 | - "/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/wiringPiI2C.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/wiringPiI2C.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/wiringPiI2C.c.o.d" | ||
| 126 | - "/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/wiringPiSPI.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/wiringPiSPI.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/wiringPiSPI.c.o.d" | ||
| 127 | - "/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/wiringSerial.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/wiringSerial.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/wiringSerial.c.o.d" | ||
| 128 | - "/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/wiringShift.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/wiringShift.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/wiringShift.c.o.d" | ||
| 129 | ) | 112 | ) |
| 130 | 113 | ||
| 131 | # Targets to which this target links. | 114 | # Targets to which this target links. |
不能预览此文件类型
| @@ -46,6 +46,8 @@ CMakeFiles/ATTENTION_APP.dir/application/Megaphone_Attention.c.o: \ | @@ -46,6 +46,8 @@ CMakeFiles/ATTENTION_APP.dir/application/Megaphone_Attention.c.o: \ | ||
| 46 | /usr/local/arm/4.9.3/lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/include/stdbool.h \ | 46 | /usr/local/arm/4.9.3/lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/include/stdbool.h \ |
| 47 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ | 47 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ |
| 48 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ | 48 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ |
| 49 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/JZsdk_AttributeDef.h \ | ||
| 50 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_typedef.h \ | ||
| 49 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ | 51 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ |
| 50 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ | 52 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ |
| 51 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ | 53 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ |
| @@ -83,5 +85,6 @@ CMakeFiles/ATTENTION_APP.dir/application/Megaphone_Attention.c.o: \ | @@ -83,5 +85,6 @@ CMakeFiles/ATTENTION_APP.dir/application/Megaphone_Attention.c.o: \ | ||
| 83 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/DeviceInfo/SerialNumberProc/SerialProc.h \ | 85 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/DeviceInfo/SerialNumberProc/SerialProc.h \ |
| 84 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/DeviceInfo/SerialNumberProc/FirewareOriginMAT/FirewareOriginMAT.h \ | 86 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/DeviceInfo/SerialNumberProc/FirewareOriginMAT/FirewareOriginMAT.h \ |
| 85 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/DeviceInfo/HardwareInfo/HardwareInfo.h \ | 87 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/DeviceInfo/HardwareInfo/HardwareInfo.h \ |
| 88 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/DeviceInfo/Attribute/Attribute.h \ | ||
| 86 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/Megaphone/Megaphone.h \ | 89 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/Megaphone/Megaphone.h \ |
| 87 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/Megaphone/PlayBack/Megaphone_PlayBack.h | 90 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/Megaphone/PlayBack/Megaphone_PlayBack.h |
| @@ -50,6 +50,8 @@ CMakeFiles/ATTENTION_APP.dir/application/main.c.o: \ | @@ -50,6 +50,8 @@ CMakeFiles/ATTENTION_APP.dir/application/main.c.o: \ | ||
| 50 | /usr/local/arm/4.9.3/lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/include/stdbool.h \ | 50 | /usr/local/arm/4.9.3/lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/include/stdbool.h \ |
| 51 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ | 51 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ |
| 52 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ | 52 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ |
| 53 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/JZsdk_AttributeDef.h \ | ||
| 54 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_typedef.h \ | ||
| 53 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ | 55 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ |
| 54 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ | 56 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ |
| 55 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ | 57 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ |
| @@ -55,6 +55,8 @@ file(REMOVE_RECURSE | @@ -55,6 +55,8 @@ file(REMOVE_RECURSE | ||
| 55 | "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_TaskManagement/TaskMgmt_sample.c.o.d" | 55 | "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_TaskManagement/TaskMgmt_sample.c.o.d" |
| 56 | "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/BaseConfig.c.o" | 56 | "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/BaseConfig.c.o" |
| 57 | "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/BaseConfig.c.o.d" | 57 | "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/BaseConfig.c.o.d" |
| 58 | + "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_U3_series/JZ_U3/JZ_u3.c.o" | ||
| 59 | + "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_U3_series/JZ_U3/JZ_u3.c.o.d" | ||
| 58 | "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/ParamterParsing.c.o" | 60 | "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/ParamterParsing.c.o" |
| 59 | "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/ParamterParsing.c.o.d" | 61 | "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/ParamterParsing.c.o.d" |
| 60 | "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_hal/Hal_Recv/HalRecv.c.o" | 62 | "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_hal/Hal_Recv/HalRecv.c.o" |
| @@ -109,8 +111,8 @@ file(REMOVE_RECURSE | @@ -109,8 +111,8 @@ file(REMOVE_RECURSE | ||
| 109 | "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/CommonMod/PresetTask/PresetTask.c.o.d" | 111 | "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/CommonMod/PresetTask/PresetTask.c.o.d" |
| 110 | "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/CommonMod/Upgrade/Upgrade.c.o" | 112 | "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/CommonMod/Upgrade/Upgrade.c.o" |
| 111 | "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/CommonMod/Upgrade/Upgrade.c.o.d" | 113 | "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/CommonMod/Upgrade/Upgrade.c.o.d" |
| 112 | - "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceConfig/JZC1/JZC1.c.o" | ||
| 113 | - "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceConfig/JZC1/JZC1.c.o.d" | 114 | + "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/Attribute/Attribute.c.o" |
| 115 | + "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/Attribute/Attribute.c.o.d" | ||
| 114 | "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/DeviceInfo.c.o" | 116 | "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/DeviceInfo.c.o" |
| 115 | "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/DeviceInfo.c.o.d" | 117 | "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/DeviceInfo.c.o.d" |
| 116 | "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/DeviceMessage/DeviceMessage.c.o" | 118 | "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/DeviceMessage/DeviceMessage.c.o" |
| @@ -119,6 +121,8 @@ file(REMOVE_RECURSE | @@ -119,6 +121,8 @@ file(REMOVE_RECURSE | ||
| 119 | "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/HardwareInfo/HardwareInfo.c.o.d" | 121 | "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/HardwareInfo/HardwareInfo.c.o.d" |
| 120 | "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/SerialNumberProc/ActivateMAT/ActivateMAT.c.o" | 122 | "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/SerialNumberProc/ActivateMAT/ActivateMAT.c.o" |
| 121 | "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/SerialNumberProc/ActivateMAT/ActivateMAT.c.o.d" | 123 | "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/SerialNumberProc/ActivateMAT/ActivateMAT.c.o.d" |
| 124 | + "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/SerialNumberProc/FirewareOriginMAT/Country_Code.c.o" | ||
| 125 | + "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/SerialNumberProc/FirewareOriginMAT/Country_Code.c.o.d" | ||
| 122 | "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/SerialNumberProc/FirewareOriginMAT/FirewareOriginMAT.c.o" | 126 | "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/SerialNumberProc/FirewareOriginMAT/FirewareOriginMAT.c.o" |
| 123 | "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/SerialNumberProc/FirewareOriginMAT/FirewareOriginMAT.c.o.d" | 127 | "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/SerialNumberProc/FirewareOriginMAT/FirewareOriginMAT.c.o.d" |
| 124 | "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/SerialNumberProc/SerialProc.c.o" | 128 | "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/SerialNumberProc/SerialProc.c.o" |
| @@ -139,6 +143,22 @@ file(REMOVE_RECURSE | @@ -139,6 +143,22 @@ file(REMOVE_RECURSE | ||
| 139 | "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Ircut/V3s_ircut/V3s_ircut.c.o.d" | 143 | "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Ircut/V3s_ircut/V3s_ircut.c.o.d" |
| 140 | "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Ircut/ircut.c.o" | 144 | "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Ircut/ircut.c.o" |
| 141 | "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Ircut/ircut.c.o.d" | 145 | "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Ircut/ircut.c.o.d" |
| 146 | + "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Lighting/Lighting_InAndOut.c.o" | ||
| 147 | + "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Lighting/Lighting_InAndOut.c.o.d" | ||
| 148 | + "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Lighting/SearchLight/SearchLightTemControl/JZ_SearchLightTemp_calculation.c.o" | ||
| 149 | + "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Lighting/SearchLight/SearchLightTemControl/JZ_SearchLightTemp_calculation.c.o.d" | ||
| 150 | + "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Lighting/SearchLight/SearchLightTemControl/SearchLightTemControl.c.o" | ||
| 151 | + "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Lighting/SearchLight/SearchLightTemControl/SearchLightTemControl.c.o.d" | ||
| 152 | + "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Lighting/SearchLight/SearchLight_V3S/SearchLight_V3S_H1T/SearchLight_V3S_H1T.c.o" | ||
| 153 | + "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Lighting/SearchLight/SearchLight_V3S/SearchLight_V3S_H1T/SearchLight_V3S_H1T.c.o.d" | ||
| 154 | + "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Lighting/SearchLight/SearchLight_V3S/SearchLight_V3S_TFA1/SearchLight_V3S_TFA1.c.o" | ||
| 155 | + "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Lighting/SearchLight/SearchLight_V3S/SearchLight_V3S_TFA1/SearchLight_V3S_TFA1.c.o.d" | ||
| 156 | + "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Lighting/SearchLight/SearchLight_V3S/SearchLight_V3S_U3/SearchLight_V3S_U3.c.o" | ||
| 157 | + "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Lighting/SearchLight/SearchLight_V3S/SearchLight_V3S_U3/SearchLight_V3S_U3.c.o.d" | ||
| 158 | + "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Lighting/WarningLight/WarningLight_V3S/WarningLight_V3S_H1T/WarningLight_V3S_H1T.c.o" | ||
| 159 | + "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Lighting/WarningLight/WarningLight_V3S/WarningLight_V3S_H1T/WarningLight_V3S_H1T.c.o.d" | ||
| 160 | + "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Lighting/WarningLight/WarningLight_V3S/WarningLight_V3S_TFA1/WarningLight_V3S_TFA1.c.o" | ||
| 161 | + "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Lighting/WarningLight/WarningLight_V3S/WarningLight_V3S_TFA1/WarningLight_V3S_TFA1.c.o.d" | ||
| 142 | "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/AttentionVoice/AttentionVoice.c.o" | 162 | "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/AttentionVoice/AttentionVoice.c.o" |
| 143 | "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/AttentionVoice/AttentionVoice.c.o.d" | 163 | "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/AttentionVoice/AttentionVoice.c.o.d" |
| 144 | "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/AudioMange/AudioMange.c.o" | 164 | "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/AudioMange/AudioMange.c.o" |
| @@ -183,60 +203,6 @@ file(REMOVE_RECURSE | @@ -183,60 +203,6 @@ file(REMOVE_RECURSE | ||
| 183 | "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/UI_control/WidegMgmt/JZsdk_WidgetControl.c.o.d" | 203 | "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/UI_control/WidegMgmt/JZsdk_WidgetControl.c.o.d" |
| 184 | "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/UI_control/WidegMgmt/JZsdk_WidgetIndex.c.o" | 204 | "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/UI_control/WidegMgmt/JZsdk_WidgetIndex.c.o" |
| 185 | "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/UI_control/WidegMgmt/JZsdk_WidgetIndex.c.o.d" | 205 | "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/UI_control/WidegMgmt/JZsdk_WidgetIndex.c.o.d" |
| 186 | - "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/boardtype_friendlyelec.c.o" | ||
| 187 | - "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/boardtype_friendlyelec.c.o.d" | ||
| 188 | - "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/drcSerial.c.o" | ||
| 189 | - "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/drcSerial.c.o.d" | ||
| 190 | - "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/max31855.c.o" | ||
| 191 | - "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/max31855.c.o.d" | ||
| 192 | - "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/max5322.c.o" | ||
| 193 | - "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/max5322.c.o.d" | ||
| 194 | - "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp23008.c.o" | ||
| 195 | - "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp23008.c.o.d" | ||
| 196 | - "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp23016.c.o" | ||
| 197 | - "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp23016.c.o.d" | ||
| 198 | - "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp23017.c.o" | ||
| 199 | - "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp23017.c.o.d" | ||
| 200 | - "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp23s08.c.o" | ||
| 201 | - "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp23s08.c.o.d" | ||
| 202 | - "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp23s17.c.o" | ||
| 203 | - "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp23s17.c.o.d" | ||
| 204 | - "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp3002.c.o" | ||
| 205 | - "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp3002.c.o.d" | ||
| 206 | - "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp3004.c.o" | ||
| 207 | - "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp3004.c.o.d" | ||
| 208 | - "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp3422.c.o" | ||
| 209 | - "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp3422.c.o.d" | ||
| 210 | - "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp4802.c.o" | ||
| 211 | - "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp4802.c.o.d" | ||
| 212 | - "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/pcf8574.c.o" | ||
| 213 | - "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/pcf8574.c.o.d" | ||
| 214 | - "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/pcf8591.c.o" | ||
| 215 | - "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/pcf8591.c.o.d" | ||
| 216 | - "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/piHiPri.c.o" | ||
| 217 | - "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/piHiPri.c.o.d" | ||
| 218 | - "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/piThread.c.o" | ||
| 219 | - "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/piThread.c.o.d" | ||
| 220 | - "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/sn3218.c.o" | ||
| 221 | - "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/sn3218.c.o.d" | ||
| 222 | - "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/softPwm.c.o" | ||
| 223 | - "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/softPwm.c.o.d" | ||
| 224 | - "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/softServo.c.o" | ||
| 225 | - "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/softServo.c.o.d" | ||
| 226 | - "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/softTone.c.o" | ||
| 227 | - "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/softTone.c.o.d" | ||
| 228 | - "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/sr595.c.o" | ||
| 229 | - "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/sr595.c.o.d" | ||
| 230 | - "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/wiringPi.c.o" | ||
| 231 | - "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/wiringPi.c.o.d" | ||
| 232 | - "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/wiringPiI2C.c.o" | ||
| 233 | - "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/wiringPiI2C.c.o.d" | ||
| 234 | - "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/wiringPiSPI.c.o" | ||
| 235 | - "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/wiringPiSPI.c.o.d" | ||
| 236 | - "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/wiringSerial.c.o" | ||
| 237 | - "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/wiringSerial.c.o.d" | ||
| 238 | - "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/wiringShift.c.o" | ||
| 239 | - "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/wiringShift.c.o.d" | ||
| 240 | ) | 206 | ) |
| 241 | 207 | ||
| 242 | # Per-language clean rules from dependency scanning. | 208 | # Per-language clean rules from dependency scanning. |
| @@ -2,9 +2,9 @@ | @@ -2,9 +2,9 @@ | ||
| 2 | # Generated by "Unix Makefiles" Generator, CMake Version 3.24 | 2 | # Generated by "Unix Makefiles" Generator, CMake Version 3.24 |
| 3 | 3 | ||
| 4 | # compile C with /usr/local/arm/4.9.3/bin/arm-cortexa9-linux-gnueabihf-gcc | 4 | # compile C with /usr/local/arm/4.9.3/bin/arm-cortexa9-linux-gnueabihf-gcc |
| 5 | -C_DEFINES = -DMACRO_MEGAPHONE_MODULE -DMACRO_WIRINGPI_MODULE | 5 | +C_DEFINES = -DMACRO_AUDIODEAL_MODULE -DMACRO_LIGHTING_MODULE -DMACRO_MEGAPHONE_MODULE |
| 6 | 6 | ||
| 7 | -C_INCLUDES = -I/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common -I/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Config -I/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_hal -I/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/wiringPi -I/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/Megaphone -I/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/Ircut -I/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/Gimbal -I/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/Lighting -I/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/UI_control -I/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/Camera -I/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/COMMONManager -I/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/TestAPP -I/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/ImageProcessing -I/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/SerialManagement -I/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module -I/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/iFLYTEK_TTS/include -I/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/Espeak/include -I/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/AlsaLib/include -I/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/opus/include -I/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/ffmpeg_6_0/include -I/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/x264_2245/include -I/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/fdk_aac_2_0_3/include | 7 | +C_INCLUDES = -I/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common -I/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Config -I/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_hal -I/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/Megaphone -I/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/Ircut -I/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/Gimbal -I/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/Lighting -I/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/UI_control -I/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/Camera -I/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/COMMONManager -I/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/TestAPP -I/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/ImageProcessing -I/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/SerialManagement -I/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module -I/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/iFLYTEK_TTS/include -I/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/Espeak/include -I/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/AlsaLib/include -I/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/opus/include -I/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/ffmpeg_6_0/include -I/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/x264_2245/include -I/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/fdk_aac_2_0_3/include |
| 8 | 8 | ||
| 9 | C_FLAGS = -pthread -std=gnu99 -lm -ldl -lstdc++ -D COMPILE_MODE_MODULE | 9 | C_FLAGS = -pthread -std=gnu99 -lm -ldl -lstdc++ -D COMPILE_MODE_MODULE |
| 10 | 10 |
| 1 | -/usr/local/arm/4.9.3/bin/arm-cortexa9-linux-gnueabihf-gcc -pthread -std=gnu99 -lm -ldl -lstdc++ -pthread -rdynamic CMakeFiles/ATTENTION_APP.dir/application/main.c.o CMakeFiles/ATTENTION_APP.dir/application/Megaphone_Attention.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdkLib.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_Code/JZsdk_DefineCode.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_Code/JZsdk_DeviceCode.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_Code/JZsdk_ReturnCode/JZsdk_ReturnCode.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/JZsdk_FrameComParsion.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/JZsdk_FrameComparsion_5Aframe.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/JZsdk_FrameComparsion_5Bframe.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/JZsdk_FrameComparsion_6Aframe.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/JZsdk_FrameComparsion_6Bframe.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/JZsdk_GetFrameTemplate.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_Logger/JZsdk_Logger.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_Osal/JZsdk_CheckSum/CheckSum_Src.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_Osal/JZsdk_CheckSum/JZsdk_CheckSum.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_Osal/JZsdk_FileSystm/JZsdk_FileSystm.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_Osal/JZsdk_MemoryAdapter/JZsdk_MemoryAdapter.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_Osal/JZsdk_Mutex/JZsdk_Mutex.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_Osal/JZsdk_Osal.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_Osal/JZsdk_Semaphore/JZsdk_Semaphore.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_Osal/JZsdk_Task/JZsdk_Task.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_Osal/JZsdk_Timer/JZsdk_Timer.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/Lwrb/lwrb.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_CommonFuntion/JZsdk_string/JZsdk_string.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_TaskManagement/TaskManagement.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_TaskManagement/TaskMgmt_sample.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/BaseConfig.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/ParamterParsing.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_hal/Hal_Recv/HalRecv.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_hal/Hal_Recv/HalRecv_type1/HalRecv_type1.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_hal/Hal_Recv/HalRecv_type1/HalRecv_type1_RecvDeal.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_hal/Hal_Send/HalSend.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_hal/Hal_Send/HalSend_type1/HalSend_type1.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_hal/JZsdk_Hal.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_hal/JZsdk_haldata_deal/JZsdk_data_transmisson.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_hal/JZsdk_network/JZsdk_network.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_hal/JZsdk_uart/JZsdk_Uart.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_hal/JZsdk_uart/JZsdk_Uart_UartDeal.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_hal/JZsdk_usb_bulk/JZsdk_usb_bulk.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/DeviceInfo.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/DeviceMessage/DeviceMessage.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/HardwareInfo/HardwareInfo.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/SerialNumberProc/ActivateMAT/ActivateMAT.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/SerialNumberProc/FirewareOriginMAT/FirewareOriginMAT.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/SerialNumberProc/SerialProc.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceConfig/JZC1/JZC1.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Gimbal/Gimbal.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Gimbal/Gimbal_DataDeal/Gimbal_DataDeal.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Gimbal/Gimbal_MotorFineTuning/MotorFineTuning.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Gimbal/Gimbal_SpecialUart/Gimbal_SpecialUart.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Ircut/H3_ircut/H3_ircut.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Ircut/Sysfs_gpio/Sysfs_gpio.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Ircut/V3s_ircut/V3s_ircut.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Ircut/ircut.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/AttentionVoice/AttentionVoice.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/AudioMange/AudioMange.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/MegTempControl/MegTempControl.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/Megaphone.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/Music/AudioFile/AudioFile_PlayDeal.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/Music/AudioFile/Megaphone_AudioFile.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/Music/RealTimeMP2/Megaphone_RealTimeMP2.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/Opus/OpusFile/OpusFilePlay.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/Opus/OpusFile/OpusFileSave.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/Opus/RealTimeVoice/Megaphone_RealTimeVoice.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/PcmAudio/PcmAudioFile.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/PcmAudio/PcmAudioPlay.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/PlayBack/Megaphone_PlayBack.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/TTS/Espeak_tts/Espeak_tts.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/TTS/Megaphone_TTS.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/TTS/cnTTS/cnTTS.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/AudioDeal/Alsa/Pcm_AlsaPlay.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/AudioDeal/AudioDeal.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/AudioDeal/AudioDealThread/AudioDealThread.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/AudioDeal/AudioStreamDeal/AudioFile_Stream_Deal.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/AudioDeal/AudioStreamDeal/File_Stream_deal.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/AudioDeal/AudioStreamDeal/pcm_Stream_deal.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/AudioDeal/Filter/FF_Filter.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/AudioDeal/Filter/SoxFiliter/SoxFilter.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/AudioDeal/NoiseReduction/NoiseReduction.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/AudioDeal/Resample/pcm_Resample.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/CommonMod/CommonMod.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/CommonMod/HeartBeat/HeartBeat.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/CommonMod/PowerManger/PowerManger.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/CommonMod/PresetTask/PresetTask.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/CommonMod/Upgrade/Upgrade.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/UI_control/Dji_Control/DJI_VideoDeal.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/UI_control/Psdk_UI_io.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/UI_control/UI_control.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/UI_control/WidegMgmt/JZsdk_Widget.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/UI_control/WidegMgmt/JZsdk_WidgetControl.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/UI_control/WidegMgmt/JZsdk_WidgetIndex.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/boardtype_friendlyelec.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/drcSerial.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/max31855.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/max5322.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp23008.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp23016.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp23017.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp23s08.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp23s17.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp3002.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp3004.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp3422.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp4802.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/pcf8574.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/pcf8591.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/piHiPri.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/piThread.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/sn3218.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/softPwm.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/softServo.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/softTone.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/sr595.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/wiringPi.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/wiringPiI2C.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/wiringPiSPI.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/wiringSerial.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/wiringShift.c.o -o ATTENTION_APP -L/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/iFLYTEK_TTS/lib/arm-cortexa9-linux-gnueabihf -Wl,-rpath,/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/iFLYTEK_TTS/lib/arm-cortexa9-linux-gnueabihf:/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/Espeak/lib/arm-cortexa9-linux-gnueabihf:/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/AlsaLib/lib/arm-cortexa9-linux-gnueabihf:/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/opus/lib/arm-cortexa9-linux-gnueabihf:/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/ffmpeg_6_0/lib/arm-cortexa9-linux-gnueabihf:/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/x264_2245/lib/arm-cortexa9-linux-gnueabihf:/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/fdk_aac_2_0_3/lib/arm-cortexa9-linux-gnueabihf -lmsc /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/Espeak/lib/arm-cortexa9-linux-gnueabihf/libportaudio.so.2 /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/Espeak/lib/arm-cortexa9-linux-gnueabihf/libTTS_Player.so /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/AlsaLib/lib/arm-cortexa9-linux-gnueabihf/libasound.so.2.0.0 /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/opus/lib/arm-cortexa9-linux-gnueabihf/libopus.so /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/ffmpeg_6_0/lib/arm-cortexa9-linux-gnueabihf/libavcodec.so.60 /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/ffmpeg_6_0/lib/arm-cortexa9-linux-gnueabihf/libavdevice.so.60 /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/ffmpeg_6_0/lib/arm-cortexa9-linux-gnueabihf/libavfilter.so.9 /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/ffmpeg_6_0/lib/arm-cortexa9-linux-gnueabihf/libavformat.so.60 /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/ffmpeg_6_0/lib/arm-cortexa9-linux-gnueabihf/libavutil.so.58 /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/ffmpeg_6_0/lib/arm-cortexa9-linux-gnueabihf/libpostproc.so.57 /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/ffmpeg_6_0/lib/arm-cortexa9-linux-gnueabihf/libswresample.so.4 /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/ffmpeg_6_0/lib/arm-cortexa9-linux-gnueabihf/libswscale.so.7 /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/x264_2245/lib/arm-cortexa9-linux-gnueabihf/libx264.so.157 /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/fdk_aac_2_0_3/lib/arm-cortexa9-linux-gnueabihf/libfdk-aac.so.2 | 1 | +/usr/local/arm/4.9.3/bin/arm-cortexa9-linux-gnueabihf-gcc -pthread -std=gnu99 -lm -ldl -lstdc++ -pthread -rdynamic CMakeFiles/ATTENTION_APP.dir/application/main.c.o CMakeFiles/ATTENTION_APP.dir/application/Megaphone_Attention.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_U3_series/JZ_U3/JZ_u3.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdkLib.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_Code/JZsdk_DefineCode.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_Code/JZsdk_DeviceCode.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_Code/JZsdk_ReturnCode/JZsdk_ReturnCode.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/JZsdk_FrameComParsion.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/JZsdk_FrameComparsion_5Aframe.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/JZsdk_FrameComparsion_5Bframe.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/JZsdk_FrameComparsion_6Aframe.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/JZsdk_FrameComparsion_6Bframe.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/JZsdk_GetFrameTemplate.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_Logger/JZsdk_Logger.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_Osal/JZsdk_CheckSum/CheckSum_Src.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_Osal/JZsdk_CheckSum/JZsdk_CheckSum.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_Osal/JZsdk_FileSystm/JZsdk_FileSystm.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_Osal/JZsdk_MemoryAdapter/JZsdk_MemoryAdapter.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_Osal/JZsdk_Mutex/JZsdk_Mutex.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_Osal/JZsdk_Osal.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_Osal/JZsdk_Semaphore/JZsdk_Semaphore.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_Osal/JZsdk_Task/JZsdk_Task.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_Osal/JZsdk_Timer/JZsdk_Timer.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/Lwrb/lwrb.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_CommonFuntion/JZsdk_string/JZsdk_string.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_TaskManagement/TaskManagement.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_TaskManagement/TaskMgmt_sample.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/BaseConfig.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/ParamterParsing.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_hal/Hal_Recv/HalRecv.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_hal/Hal_Recv/HalRecv_type1/HalRecv_type1.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_hal/Hal_Recv/HalRecv_type1/HalRecv_type1_RecvDeal.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_hal/Hal_Send/HalSend.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_hal/Hal_Send/HalSend_type1/HalSend_type1.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_hal/JZsdk_Hal.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_hal/JZsdk_haldata_deal/JZsdk_data_transmisson.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_hal/JZsdk_network/JZsdk_network.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_hal/JZsdk_uart/JZsdk_Uart.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_hal/JZsdk_uart/JZsdk_Uart_UartDeal.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_hal/JZsdk_usb_bulk/JZsdk_usb_bulk.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/Attribute/Attribute.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/DeviceInfo.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/DeviceMessage/DeviceMessage.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/HardwareInfo/HardwareInfo.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/SerialNumberProc/ActivateMAT/ActivateMAT.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/SerialNumberProc/FirewareOriginMAT/Country_Code.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/SerialNumberProc/FirewareOriginMAT/FirewareOriginMAT.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/SerialNumberProc/SerialProc.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Gimbal/Gimbal.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Gimbal/Gimbal_DataDeal/Gimbal_DataDeal.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Gimbal/Gimbal_MotorFineTuning/MotorFineTuning.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Gimbal/Gimbal_SpecialUart/Gimbal_SpecialUart.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Ircut/H3_ircut/H3_ircut.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Ircut/Sysfs_gpio/Sysfs_gpio.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Ircut/V3s_ircut/V3s_ircut.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Ircut/ircut.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Lighting/Lighting_InAndOut.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Lighting/SearchLight/SearchLightTemControl/JZ_SearchLightTemp_calculation.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Lighting/SearchLight/SearchLightTemControl/SearchLightTemControl.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Lighting/SearchLight/SearchLight_V3S/SearchLight_V3S_H1T/SearchLight_V3S_H1T.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Lighting/SearchLight/SearchLight_V3S/SearchLight_V3S_TFA1/SearchLight_V3S_TFA1.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Lighting/SearchLight/SearchLight_V3S/SearchLight_V3S_U3/SearchLight_V3S_U3.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Lighting/WarningLight/WarningLight_V3S/WarningLight_V3S_H1T/WarningLight_V3S_H1T.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Lighting/WarningLight/WarningLight_V3S/WarningLight_V3S_TFA1/WarningLight_V3S_TFA1.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/AudioDeal/Alsa/Pcm_AlsaPlay.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/AudioDeal/AudioDeal.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/AudioDeal/AudioDealThread/AudioDealThread.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/AudioDeal/AudioStreamDeal/AudioFile_Stream_Deal.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/AudioDeal/AudioStreamDeal/File_Stream_deal.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/AudioDeal/AudioStreamDeal/pcm_Stream_deal.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/AudioDeal/Filter/FF_Filter.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/AudioDeal/Filter/SoxFiliter/SoxFilter.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/AudioDeal/NoiseReduction/NoiseReduction.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/AudioDeal/Resample/pcm_Resample.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/AttentionVoice/AttentionVoice.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/AudioMange/AudioMange.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/MegTempControl/MegTempControl.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/Megaphone.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/Music/AudioFile/AudioFile_PlayDeal.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/Music/AudioFile/Megaphone_AudioFile.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/Music/RealTimeMP2/Megaphone_RealTimeMP2.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/Opus/OpusFile/OpusFilePlay.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/Opus/OpusFile/OpusFileSave.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/Opus/RealTimeVoice/Megaphone_RealTimeVoice.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/PcmAudio/PcmAudioFile.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/PcmAudio/PcmAudioPlay.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/PlayBack/Megaphone_PlayBack.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/TTS/Espeak_tts/Espeak_tts.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/TTS/Megaphone_TTS.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/TTS/cnTTS/cnTTS.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/CommonMod/CommonMod.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/CommonMod/HeartBeat/HeartBeat.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/CommonMod/PowerManger/PowerManger.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/CommonMod/PresetTask/PresetTask.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/CommonMod/Upgrade/Upgrade.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/UI_control/Dji_Control/DJI_VideoDeal.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/UI_control/Psdk_UI_io.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/UI_control/UI_control.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/UI_control/WidegMgmt/JZsdk_Widget.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/UI_control/WidegMgmt/JZsdk_WidgetControl.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/UI_control/WidegMgmt/JZsdk_WidgetIndex.c.o -o ATTENTION_APP -L/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/iFLYTEK_TTS/lib/arm-cortexa9-linux-gnueabihf -Wl,-rpath,/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/iFLYTEK_TTS/lib/arm-cortexa9-linux-gnueabihf:/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/Espeak/lib/arm-cortexa9-linux-gnueabihf:/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/AlsaLib/lib/arm-cortexa9-linux-gnueabihf:/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/opus/lib/arm-cortexa9-linux-gnueabihf:/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/ffmpeg_6_0/lib/arm-cortexa9-linux-gnueabihf:/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/x264_2245/lib/arm-cortexa9-linux-gnueabihf:/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/fdk_aac_2_0_3/lib/arm-cortexa9-linux-gnueabihf -lmsc /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/Espeak/lib/arm-cortexa9-linux-gnueabihf/libportaudio.so.2 /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/Espeak/lib/arm-cortexa9-linux-gnueabihf/libTTS_Player.so /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/AlsaLib/lib/arm-cortexa9-linux-gnueabihf/libasound.so.2.0.0 /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/opus/lib/arm-cortexa9-linux-gnueabihf/libopus.so /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/ffmpeg_6_0/lib/arm-cortexa9-linux-gnueabihf/libavcodec.so.60 /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/ffmpeg_6_0/lib/arm-cortexa9-linux-gnueabihf/libavdevice.so.60 /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/ffmpeg_6_0/lib/arm-cortexa9-linux-gnueabihf/libavfilter.so.9 /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/ffmpeg_6_0/lib/arm-cortexa9-linux-gnueabihf/libavformat.so.60 /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/ffmpeg_6_0/lib/arm-cortexa9-linux-gnueabihf/libavutil.so.58 /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/ffmpeg_6_0/lib/arm-cortexa9-linux-gnueabihf/libpostproc.so.57 /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/ffmpeg_6_0/lib/arm-cortexa9-linux-gnueabihf/libswresample.so.4 /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/ffmpeg_6_0/lib/arm-cortexa9-linux-gnueabihf/libswscale.so.7 /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/x264_2245/lib/arm-cortexa9-linux-gnueabihf/libx264.so.157 /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/fdk_aac_2_0_3/lib/arm-cortexa9-linux-gnueabihf/libfdk-aac.so.2 |
| @@ -46,6 +46,8 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdkLib.c. | @@ -46,6 +46,8 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdkLib.c. | ||
| 46 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/stdlib-float.h \ | 46 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/stdlib-float.h \ |
| 47 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ | 47 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ |
| 48 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ | 48 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ |
| 49 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/JZsdk_AttributeDef.h \ | ||
| 50 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_typedef.h \ | ||
| 49 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ | 51 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ |
| 50 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ | 52 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ |
| 51 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ | 53 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ |
| @@ -49,6 +49,8 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/ | @@ -49,6 +49,8 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/ | ||
| 49 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/stdlib-float.h \ | 49 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/stdlib-float.h \ |
| 50 | /mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/../JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ | 50 | /mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/../JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ |
| 51 | /mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/../JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ | 51 | /mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/../JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ |
| 52 | + /mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/../JZsdk_Code/./JZsdk_typedef/JZsdk_AttributeDef.h \ | ||
| 53 | + /mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/../JZsdk_Code/./JZsdk_typedef/./JZsdk_typedef.h \ | ||
| 52 | /mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/../JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ | 54 | /mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/../JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ |
| 53 | /mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/../JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ | 55 | /mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/../JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ |
| 54 | /mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/../JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ | 56 | /mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/../JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ |
| @@ -43,6 +43,8 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/ | @@ -43,6 +43,8 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/ | ||
| 43 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/stdlib-float.h \ | 43 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/stdlib-float.h \ |
| 44 | /mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/../JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ | 44 | /mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/../JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ |
| 45 | /mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/../JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ | 45 | /mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/../JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ |
| 46 | + /mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/../JZsdk_Code/./JZsdk_typedef/JZsdk_AttributeDef.h \ | ||
| 47 | + /mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/../JZsdk_Code/./JZsdk_typedef/./JZsdk_typedef.h \ | ||
| 46 | /mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/../JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ | 48 | /mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/../JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ |
| 47 | /mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/../JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ | 49 | /mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/../JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ |
| 48 | /mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/../JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ | 50 | /mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/../JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ |
| @@ -43,6 +43,8 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/ | @@ -43,6 +43,8 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/ | ||
| 43 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/stdlib-float.h \ | 43 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/stdlib-float.h \ |
| 44 | /mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/../JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ | 44 | /mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/../JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ |
| 45 | /mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/../JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ | 45 | /mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/../JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ |
| 46 | + /mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/../JZsdk_Code/./JZsdk_typedef/JZsdk_AttributeDef.h \ | ||
| 47 | + /mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/../JZsdk_Code/./JZsdk_typedef/./JZsdk_typedef.h \ | ||
| 46 | /mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/../JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ | 48 | /mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/../JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ |
| 47 | /mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/../JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ | 49 | /mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/../JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ |
| 48 | /mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/../JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ | 50 | /mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/../JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ |
| @@ -43,6 +43,8 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/ | @@ -43,6 +43,8 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/ | ||
| 43 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/stdlib-float.h \ | 43 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/stdlib-float.h \ |
| 44 | /mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/../JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ | 44 | /mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/../JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ |
| 45 | /mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/../JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ | 45 | /mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/../JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ |
| 46 | + /mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/../JZsdk_Code/./JZsdk_typedef/JZsdk_AttributeDef.h \ | ||
| 47 | + /mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/../JZsdk_Code/./JZsdk_typedef/./JZsdk_typedef.h \ | ||
| 46 | /mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/../JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ | 48 | /mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/../JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ |
| 47 | /mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/../JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ | 49 | /mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/../JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ |
| 48 | /mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/../JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ | 50 | /mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/../JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ |
| @@ -43,6 +43,8 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/ | @@ -43,6 +43,8 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/ | ||
| 43 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/stdlib-float.h \ | 43 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/stdlib-float.h \ |
| 44 | /mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/../JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ | 44 | /mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/../JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ |
| 45 | /mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/../JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ | 45 | /mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/../JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ |
| 46 | + /mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/../JZsdk_Code/./JZsdk_typedef/JZsdk_AttributeDef.h \ | ||
| 47 | + /mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/../JZsdk_Code/./JZsdk_typedef/./JZsdk_typedef.h \ | ||
| 46 | /mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/../JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ | 48 | /mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/../JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ |
| 47 | /mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/../JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ | 49 | /mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/../JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ |
| 48 | /mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/../JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ | 50 | /mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/../JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ |
| @@ -43,6 +43,8 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/ | @@ -43,6 +43,8 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/ | ||
| 43 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/stdlib-float.h \ | 43 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/stdlib-float.h \ |
| 44 | /mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/../JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ | 44 | /mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/../JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ |
| 45 | /mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/../JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ | 45 | /mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/../JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ |
| 46 | + /mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/../JZsdk_Code/./JZsdk_typedef/JZsdk_AttributeDef.h \ | ||
| 47 | + /mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/../JZsdk_Code/./JZsdk_typedef/./JZsdk_typedef.h \ | ||
| 46 | /mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/../JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ | 48 | /mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/../JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ |
| 47 | /mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/../JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ | 49 | /mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/../JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ |
| 48 | /mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/../JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ | 50 | /mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/../JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ |
| @@ -44,6 +44,8 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/ | @@ -44,6 +44,8 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/ | ||
| 44 | /usr/local/arm/4.9.3/lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/include/stdbool.h \ | 44 | /usr/local/arm/4.9.3/lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/include/stdbool.h \ |
| 45 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ | 45 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ |
| 46 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ | 46 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ |
| 47 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/JZsdk_AttributeDef.h \ | ||
| 48 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_typedef.h \ | ||
| 47 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ | 49 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ |
| 48 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ | 50 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ |
| 49 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ | 51 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ |
| @@ -46,6 +46,8 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/ | @@ -46,6 +46,8 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/ | ||
| 46 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/stdlib-float.h \ | 46 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/stdlib-float.h \ |
| 47 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ | 47 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ |
| 48 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ | 48 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ |
| 49 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/JZsdk_AttributeDef.h \ | ||
| 50 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_typedef.h \ | ||
| 49 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ | 51 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ |
| 50 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ | 52 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ |
| 51 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ | 53 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ |
| @@ -48,6 +48,8 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/ | @@ -48,6 +48,8 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/ | ||
| 48 | /usr/local/arm/4.9.3/lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/include/stdbool.h \ | 48 | /usr/local/arm/4.9.3/lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/include/stdbool.h \ |
| 49 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ | 49 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ |
| 50 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ | 50 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ |
| 51 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/JZsdk_AttributeDef.h \ | ||
| 52 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_typedef.h \ | ||
| 51 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ | 53 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ |
| 52 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ | 54 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ |
| 53 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ | 55 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ |
| @@ -44,6 +44,8 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Commo | @@ -44,6 +44,8 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Commo | ||
| 44 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/stdlib-float.h \ | 44 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/stdlib-float.h \ |
| 45 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ | 45 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ |
| 46 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ | 46 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ |
| 47 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/JZsdk_AttributeDef.h \ | ||
| 48 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_typedef.h \ | ||
| 47 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ | 49 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ |
| 48 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ | 50 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ |
| 49 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ | 51 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ |
| @@ -53,6 +53,8 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_TaskM | @@ -53,6 +53,8 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_TaskM | ||
| 53 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/string.h \ | 53 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/string.h \ |
| 54 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ | 54 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ |
| 55 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ | 55 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ |
| 56 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/JZsdk_AttributeDef.h \ | ||
| 57 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_typedef.h \ | ||
| 56 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ | 58 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ |
| 57 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ | 59 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ |
| 58 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ | 60 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ |
| @@ -53,6 +53,8 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_TaskM | @@ -53,6 +53,8 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_TaskM | ||
| 53 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/string.h \ | 53 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/string.h \ |
| 54 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ | 54 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ |
| 55 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ | 55 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ |
| 56 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/JZsdk_AttributeDef.h \ | ||
| 57 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_typedef.h \ | ||
| 56 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ | 58 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ |
| 57 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ | 59 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ |
| 58 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ | 60 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ |
| 1 | CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/BaseConfig.c.o: \ | 1 | CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/BaseConfig.c.o: \ |
| 2 | /mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/BaseConfig.c \ | 2 | /mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/BaseConfig.c \ |
| 3 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/stdc-predef.h \ | 3 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/stdc-predef.h \ |
| 4 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/stdio.h \ | 4 | + /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/pthread.h \ |
| 5 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/features.h \ | 5 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/features.h \ |
| 6 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/sys/cdefs.h \ | 6 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/sys/cdefs.h \ |
| 7 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/wordsize.h \ | 7 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/wordsize.h \ |
| 8 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/gnu/stubs.h \ | 8 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/gnu/stubs.h \ |
| 9 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/gnu/stubs-hard.h \ | 9 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/gnu/stubs-hard.h \ |
| 10 | - /usr/local/arm/4.9.3/lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/include/stddef.h \ | ||
| 11 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/types.h \ | ||
| 12 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/typesizes.h \ | ||
| 13 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/libio.h \ | ||
| 14 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/_G_config.h \ | ||
| 15 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/wchar.h \ | ||
| 16 | - /usr/local/arm/4.9.3/lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/include/stdarg.h \ | ||
| 17 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/stdio_lim.h \ | ||
| 18 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/sys_errlist.h \ | ||
| 19 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/stdlib.h \ | ||
| 20 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/waitflags.h \ | ||
| 21 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/waitstatus.h \ | ||
| 22 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/endian.h \ | 10 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/endian.h \ |
| 23 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/endian.h \ | 11 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/endian.h \ |
| 24 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/byteswap.h \ | 12 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/byteswap.h \ |
| 13 | + /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/types.h \ | ||
| 14 | + /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/typesizes.h \ | ||
| 25 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/byteswap-16.h \ | 15 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/byteswap-16.h \ |
| 26 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/sys/types.h \ | ||
| 27 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/time.h \ | ||
| 28 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/sys/select.h \ | ||
| 29 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/select.h \ | ||
| 30 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/sigset.h \ | ||
| 31 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/time.h \ | ||
| 32 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/sys/sysmacros.h \ | ||
| 33 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/pthreadtypes.h \ | ||
| 34 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/alloca.h \ | ||
| 35 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/stdlib-float.h \ | ||
| 36 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/pthread.h \ | ||
| 37 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/sched.h \ | 16 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/sched.h \ |
| 17 | + /usr/local/arm/4.9.3/lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/include/stddef.h \ | ||
| 18 | + /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/time.h \ | ||
| 38 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/sched.h \ | 19 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/sched.h \ |
| 20 | + /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/time.h \ | ||
| 39 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/xlocale.h \ | 21 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/xlocale.h \ |
| 22 | + /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/pthreadtypes.h \ | ||
| 40 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/setjmp.h \ | 23 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/setjmp.h \ |
| 41 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/string.h \ | ||
| 42 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdkLib.h \ | 24 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdkLib.h \ |
| 43 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdkBase.h \ | 25 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdkBase.h \ |
| 44 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Logger/JZsdk_Logger.h \ | 26 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Logger/JZsdk_Logger.h \ |
| @@ -48,8 +30,28 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/BaseConfig. | @@ -48,8 +30,28 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/BaseConfig. | ||
| 48 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/stdint.h \ | 30 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/stdint.h \ |
| 49 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/wchar.h \ | 31 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/wchar.h \ |
| 50 | /usr/local/arm/4.9.3/lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/include/stdbool.h \ | 32 | /usr/local/arm/4.9.3/lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/include/stdbool.h \ |
| 33 | + /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/string.h \ | ||
| 34 | + /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/stdlib.h \ | ||
| 35 | + /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/waitflags.h \ | ||
| 36 | + /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/waitstatus.h \ | ||
| 37 | + /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/sys/types.h \ | ||
| 38 | + /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/sys/select.h \ | ||
| 39 | + /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/select.h \ | ||
| 40 | + /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/sigset.h \ | ||
| 41 | + /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/sys/sysmacros.h \ | ||
| 42 | + /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/alloca.h \ | ||
| 43 | + /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/stdlib-float.h \ | ||
| 44 | + /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/stdio.h \ | ||
| 45 | + /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/libio.h \ | ||
| 46 | + /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/_G_config.h \ | ||
| 47 | + /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/wchar.h \ | ||
| 48 | + /usr/local/arm/4.9.3/lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/include/stdarg.h \ | ||
| 49 | + /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/stdio_lim.h \ | ||
| 50 | + /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/sys_errlist.h \ | ||
| 51 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ | 51 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ |
| 52 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ | 52 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ |
| 53 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/JZsdk_AttributeDef.h \ | ||
| 54 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_typedef.h \ | ||
| 53 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ | 55 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ |
| 54 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ | 56 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ |
| 55 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ | 57 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ |
| @@ -76,89 +78,41 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/BaseConfig. | @@ -76,89 +78,41 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/BaseConfig. | ||
| 76 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_CommonFuntion/JZsdk_string/JZsdk_string.h \ | 78 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_CommonFuntion/JZsdk_string/JZsdk_string.h \ |
| 77 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_CommonFuntion/JZsdk_math/JZsdk_math.h \ | 79 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_CommonFuntion/JZsdk_math/JZsdk_math.h \ |
| 78 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_TaskManagement/TaskManagement.h \ | 80 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_TaskManagement/TaskManagement.h \ |
| 79 | - /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_hal/Hal_Send/HalSend.h \ | ||
| 80 | - /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_hal/Hal_Send/HalSend_type1/HalSend_type1.h \ | ||
| 81 | /mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/BaseConfig.h \ | 81 | /mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/BaseConfig.h \ |
| 82 | /mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/version_choose.h \ | 82 | /mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/version_choose.h \ |
| 83 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/JZsdk_DeviceCode.h \ | 83 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/JZsdk_DeviceCode.h \ |
| 84 | /mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/./ParamterParsing.h \ | 84 | /mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/./ParamterParsing.h \ |
| 85 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_hal/Hal_Send/HalSend.h \ | ||
| 86 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_hal/Hal_Send/HalSend_type1/HalSend_type1.h \ | ||
| 87 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_hal/JZsdk_Hal.h \ | ||
| 85 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/Ircut/ircut.h \ | 88 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/Ircut/ircut.h \ |
| 86 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/Ircut/./ircutParams.h \ | 89 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/Ircut/./ircutParams.h \ |
| 87 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/Ircut/./Sysfs_gpio/Sysfs_gpio.h \ | 90 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/Ircut/./Sysfs_gpio/Sysfs_gpio.h \ |
| 88 | - /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/Gimbal/Gimbal.h \ | ||
| 89 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/UI_control/Psdk_UI_io.h \ | 91 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/UI_control/Psdk_UI_io.h \ |
| 90 | - /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/Lighting/Lighting_InAndOut.h \ | ||
| 91 | - /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_hal/JZsdk_network/JZsdk_network.h \ | ||
| 92 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_hal/JZsdk_haldata_deal/JZsdk_data_transmisson.h \ | 92 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_hal/JZsdk_haldata_deal/JZsdk_data_transmisson.h \ |
| 93 | - /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/MediaProc/MediaProc.h \ | ||
| 94 | - /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/MediaProc/./Camera/Camera.h \ | ||
| 95 | - /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/MediaProc/MediaProc_Param.h \ | ||
| 96 | - /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/MediaProc/Camera/Cam_FrameCatch/Cam_FrameCatch.h \ | ||
| 97 | - /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/MediaProc/Camera/V4L2_camera/V4L2_CameraParameterSetting.h \ | ||
| 98 | - /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/MediaProc/Camera/V4L2_camera/V4L2_Record.h \ | ||
| 99 | - /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/MediaProc/Camera/Cam_Zoom/Cam_Zoom.h \ | ||
| 100 | - /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/MediaProc/./VideoMgmt/VideoMgmt.h \ | ||
| 101 | - /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/MediaProc/./VideoMgmt/./VideoMgmt_Parm.h \ | ||
| 102 | - /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/MediaProc/./ImageProc/PseudoColor/PseudoColor.h \ | ||
| 103 | - /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/MediaProc/./IRC_funtion/IRC_funtion.h \ | ||
| 104 | - /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/MediaProc/IRC_funtion/IRC_Param.h \ | ||
| 105 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/UI_control/WidegMgmt/JZsdk_Widget.h \ | 93 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/UI_control/WidegMgmt/JZsdk_Widget.h \ |
| 106 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/UI_control/WidegMgmt/JZsdk_WidgetIndex.h \ | 94 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/UI_control/WidegMgmt/JZsdk_WidgetIndex.h \ |
| 107 | - /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/DeviceConfig/DeviceConfig.h \ | ||
| 108 | - /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/DeviceConfig/JZC1/JZC1.h \ | 95 | + /mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/DeviceSample.h \ |
| 96 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Config/DeviceSample/JZ_H1_series/JZ_H1E/JZ_h1e.h \ | ||
| 97 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Config/DeviceSample/JZ_H1_series/JZ_H1T/JZ_h1t.h \ | ||
| 98 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Config/DeviceSample/JZ_H10_series/JZ_H10/JZ_h10.h \ | ||
| 99 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Config/DeviceSample/JZ_H10_series/JZ_H10T/JZ_h10t.h \ | ||
| 100 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Config/DeviceSample/JZ_H150S_H150T/JZ_h150s_h150t.h \ | ||
| 101 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Config/DeviceSample/JZ_U3_series/JZ_U3/JZ_u3.h \ | ||
| 102 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Config/DeviceSample/JZ_U3_series/JZ_U3S/JZ_u3s.h \ | ||
| 103 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Config/DeviceSample/JZ_U3_series/JZ_U3D/JZ_u3d.h \ | ||
| 104 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Config/DeviceSample/JZ_U3_series/JZ_U30/JZ_u30.h \ | ||
| 105 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Config/DeviceSample/JZC1/JZC1.h \ | ||
| 106 | + /mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/TF_A1/TF_a1.h \ | ||
| 109 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/CommonMod/CommonMod.h \ | 107 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/CommonMod/CommonMod.h \ |
| 110 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/CommonMod/PowerManger/PowerManger.h \ | 108 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/CommonMod/PowerManger/PowerManger.h \ |
| 111 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/CommonMod/Upgrade/Upgrade.h \ | 109 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/CommonMod/Upgrade/Upgrade.h \ |
| 112 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/CommonMod/PresetTask/PresetTask.h \ | 110 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/CommonMod/PresetTask/PresetTask.h \ |
| 113 | - /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_hal/JZsdk_Hal.h \ | ||
| 114 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/DeviceInfo/DeviceInfo.h \ | 111 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/DeviceInfo/DeviceInfo.h \ |
| 115 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/DeviceInfo/DeviceMessage/DeviceMessage.h \ | 112 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/DeviceInfo/DeviceMessage/DeviceMessage.h \ |
| 116 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/DeviceInfo/SerialNumberProc/SerialProc.h \ | 113 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/DeviceInfo/SerialNumberProc/SerialProc.h \ |
| 117 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/DeviceInfo/SerialNumberProc/FirewareOriginMAT/FirewareOriginMAT.h \ | 114 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/DeviceInfo/SerialNumberProc/FirewareOriginMAT/FirewareOriginMAT.h \ |
| 118 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/DeviceInfo/HardwareInfo/HardwareInfo.h \ | 115 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/DeviceInfo/HardwareInfo/HardwareInfo.h \ |
| 119 | - /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/AudioDeal/AudioDeal.h \ | ||
| 120 | - /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/ffmpeg_6_0/include/libavutil/channel_layout.h \ | ||
| 121 | - /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/ffmpeg_6_0/include/libavutil/version.h \ | ||
| 122 | - /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/ffmpeg_6_0/include/libavutil/macros.h \ | ||
| 123 | - /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/ffmpeg_6_0/include/libavutil/avconfig.h \ | ||
| 124 | - /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/ffmpeg_6_0/include/libavutil/attributes.h \ | ||
| 125 | - /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/ffmpeg_6_0/include/libavutil/frame.h \ | ||
| 126 | - /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/ffmpeg_6_0/include/libavutil/avutil.h \ | ||
| 127 | - /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/ffmpeg_6_0/include/libavutil/common.h \ | ||
| 128 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/errno.h \ | ||
| 129 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/errno.h \ | ||
| 130 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/linux/errno.h \ | ||
| 131 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/asm/errno.h \ | ||
| 132 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/asm-generic/errno.h \ | ||
| 133 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/asm-generic/errno-base.h \ | ||
| 134 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/inttypes.h \ | ||
| 135 | - /usr/local/arm/4.9.3/lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/include-fixed/limits.h \ | ||
| 136 | - /usr/local/arm/4.9.3/lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/include-fixed/syslimits.h \ | ||
| 137 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/limits.h \ | ||
| 138 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/posix1_lim.h \ | ||
| 139 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/local_lim.h \ | ||
| 140 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/linux/limits.h \ | ||
| 141 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/posix2_lim.h \ | ||
| 142 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/math.h \ | ||
| 143 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/math-vector.h \ | ||
| 144 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/libm-simd-decl-stubs.h \ | ||
| 145 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/huge_val.h \ | ||
| 146 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/huge_valf.h \ | ||
| 147 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/huge_vall.h \ | ||
| 148 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/inf.h \ | ||
| 149 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/nan.h \ | ||
| 150 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/mathdef.h \ | ||
| 151 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/mathcalls.h \ | ||
| 152 | - /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/ffmpeg_6_0/include/libavutil/mem.h \ | ||
| 153 | - /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/ffmpeg_6_0/include/libavutil/error.h \ | ||
| 154 | - /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/ffmpeg_6_0/include/libavutil/rational.h \ | ||
| 155 | - /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/ffmpeg_6_0/include/libavutil/mathematics.h \ | ||
| 156 | - /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/ffmpeg_6_0/include/libavutil/intfloat.h \ | ||
| 157 | - /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/ffmpeg_6_0/include/libavutil/log.h \ | ||
| 158 | - /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/ffmpeg_6_0/include/libavutil/pixfmt.h \ | ||
| 159 | - /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/ffmpeg_6_0/include/libavutil/buffer.h \ | ||
| 160 | - /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/ffmpeg_6_0/include/libavutil/channel_layout.h \ | ||
| 161 | - /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/ffmpeg_6_0/include/libavutil/dict.h \ | ||
| 162 | - /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/ffmpeg_6_0/include/libavutil/samplefmt.h \ | 116 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/DeviceInfo/Attribute/Attribute.h \ |
| 163 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/Megaphone/Megaphone.h \ | 117 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/Megaphone/Megaphone.h \ |
| 164 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/Megaphone/PlayBack/Megaphone_PlayBack.h | 118 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/Megaphone/PlayBack/Megaphone_PlayBack.h |
| @@ -52,6 +52,8 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/ParamterPar | @@ -52,6 +52,8 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/ParamterPar | ||
| 52 | /usr/local/arm/4.9.3/lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/include/stdbool.h \ | 52 | /usr/local/arm/4.9.3/lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/include/stdbool.h \ |
| 53 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ | 53 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ |
| 54 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ | 54 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ |
| 55 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/JZsdk_AttributeDef.h \ | ||
| 56 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_typedef.h \ | ||
| 55 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ | 57 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ |
| 56 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ | 58 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ |
| 57 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ | 59 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ |
| @@ -48,6 +48,8 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_hal/JZsdk_haldata_ | @@ -48,6 +48,8 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_hal/JZsdk_haldata_ | ||
| 48 | /usr/local/arm/4.9.3/lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/include/stdbool.h \ | 48 | /usr/local/arm/4.9.3/lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/include/stdbool.h \ |
| 49 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ | 49 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ |
| 50 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ | 50 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ |
| 51 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/JZsdk_AttributeDef.h \ | ||
| 52 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_typedef.h \ | ||
| 51 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ | 53 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ |
| 52 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ | 54 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ |
| 53 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ | 55 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ |
| @@ -35,9 +35,11 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_hal/JZsdk_network/ | @@ -35,9 +35,11 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_hal/JZsdk_network/ | ||
| 35 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/pthreadtypes.h \ | 35 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/pthreadtypes.h \ |
| 36 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/alloca.h \ | 36 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/alloca.h \ |
| 37 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/stdlib-float.h \ | 37 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/stdlib-float.h \ |
| 38 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/termios.h \ | ||
| 39 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/termios.h \ | ||
| 40 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/sys/ttydefaults.h \ | 38 | + /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/unistd.h \ |
| 39 | + /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/posix_opt.h \ | ||
| 40 | + /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/environments.h \ | ||
| 41 | + /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/confname.h \ | ||
| 42 | + /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/getopt.h \ | ||
| 41 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/sys/socket.h \ | 43 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/sys/socket.h \ |
| 42 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/sys/uio.h \ | 44 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/sys/uio.h \ |
| 43 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/uio.h \ | 45 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/uio.h \ |
| @@ -54,6 +56,9 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_hal/JZsdk_network/ | @@ -54,6 +56,9 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_hal/JZsdk_network/ | ||
| 54 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/wchar.h \ | 56 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/wchar.h \ |
| 55 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/in.h \ | 57 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/in.h \ |
| 56 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/arpa/inet.h \ | 58 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/arpa/inet.h \ |
| 59 | + /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/termios.h \ | ||
| 60 | + /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/termios.h \ | ||
| 61 | + /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/sys/ttydefaults.h \ | ||
| 57 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Config/BaseConfig.h \ | 62 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Config/BaseConfig.h \ |
| 58 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Config/version_choose.h \ | 63 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Config/version_choose.h \ |
| 59 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/JZsdk_DeviceCode.h \ | 64 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/JZsdk_DeviceCode.h \ |
| @@ -65,6 +70,8 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_hal/JZsdk_network/ | @@ -65,6 +70,8 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_hal/JZsdk_network/ | ||
| 65 | /usr/local/arm/4.9.3/lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/include/stdbool.h \ | 70 | /usr/local/arm/4.9.3/lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/include/stdbool.h \ |
| 66 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ | 71 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ |
| 67 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ | 72 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ |
| 73 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/JZsdk_AttributeDef.h \ | ||
| 74 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_typedef.h \ | ||
| 68 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ | 75 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ |
| 69 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ | 76 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ |
| 70 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ | 77 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ |
| @@ -93,4 +100,6 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_hal/JZsdk_network/ | @@ -93,4 +100,6 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_hal/JZsdk_network/ | ||
| 93 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_TaskManagement/TaskManagement.h \ | 100 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_TaskManagement/TaskManagement.h \ |
| 94 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Config/./ParamterParsing.h \ | 101 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Config/./ParamterParsing.h \ |
| 95 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Config/version_choose.h \ | 102 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Config/version_choose.h \ |
| 96 | - /mnt/hgfs/share/JZSDK_Linux/JZsdk_hal/JZsdk_network/./JZsdk_network.h | 103 | + /mnt/hgfs/share/JZSDK_Linux/JZsdk_hal/JZsdk_network/./JZsdk_network.h \ |
| 104 | + /mnt/hgfs/share/JZSDK_Linux/JZsdk_hal/JZsdk_network/../Hal_Recv/HalRecv.h \ | ||
| 105 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_hal/Hal_Recv/HalRecv_type1/HalRecv_type1.h |
| @@ -63,6 +63,8 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_hal/JZsdk_uart/JZs | @@ -63,6 +63,8 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_hal/JZsdk_uart/JZs | ||
| 63 | /usr/local/arm/4.9.3/lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/include/stdbool.h \ | 63 | /usr/local/arm/4.9.3/lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/include/stdbool.h \ |
| 64 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ | 64 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ |
| 65 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ | 65 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ |
| 66 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/JZsdk_AttributeDef.h \ | ||
| 67 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_typedef.h \ | ||
| 66 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ | 68 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ |
| 67 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ | 69 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ |
| 68 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ | 70 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ |
| @@ -48,6 +48,8 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_hal/JZsdk_usb_bulk | @@ -48,6 +48,8 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_hal/JZsdk_usb_bulk | ||
| 48 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/xlocale.h \ | 48 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/xlocale.h \ |
| 49 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ | 49 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ |
| 50 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ | 50 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ |
| 51 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/JZsdk_AttributeDef.h \ | ||
| 52 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_typedef.h \ | ||
| 51 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ | 53 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ |
| 52 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ | 54 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ |
| 53 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ | 55 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ |
| @@ -50,6 +50,8 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/AudioDeal/Alsa/Pc | @@ -50,6 +50,8 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/AudioDeal/Alsa/Pc | ||
| 50 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/stdlib-float.h \ | 50 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/stdlib-float.h \ |
| 51 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ | 51 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ |
| 52 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ | 52 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ |
| 53 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/JZsdk_AttributeDef.h \ | ||
| 54 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_typedef.h \ | ||
| 53 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ | 55 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ |
| 54 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ | 56 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ |
| 55 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ | 57 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ |
| @@ -162,6 +162,8 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/AudioDeal/AudioDe | @@ -162,6 +162,8 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/AudioDeal/AudioDe | ||
| 162 | /usr/local/arm/4.9.3/lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/include/stdbool.h \ | 162 | /usr/local/arm/4.9.3/lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/include/stdbool.h \ |
| 163 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ | 163 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ |
| 164 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ | 164 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ |
| 165 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/JZsdk_AttributeDef.h \ | ||
| 166 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_typedef.h \ | ||
| 165 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ | 167 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ |
| 166 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ | 168 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ |
| 167 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ | 169 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ |
| @@ -55,6 +55,8 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/AudioDeal/AudioDe | @@ -55,6 +55,8 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/AudioDeal/AudioDe | ||
| 55 | /usr/local/arm/4.9.3/lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/include/stdbool.h \ | 55 | /usr/local/arm/4.9.3/lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/include/stdbool.h \ |
| 56 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ | 56 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ |
| 57 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ | 57 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ |
| 58 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/JZsdk_AttributeDef.h \ | ||
| 59 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_typedef.h \ | ||
| 58 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ | 60 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ |
| 59 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ | 61 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ |
| 60 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ | 62 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ |
| @@ -130,6 +130,8 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/AudioDeal/AudioSt | @@ -130,6 +130,8 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/AudioDeal/AudioSt | ||
| 130 | /usr/local/arm/4.9.3/lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/include/stdbool.h \ | 130 | /usr/local/arm/4.9.3/lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/include/stdbool.h \ |
| 131 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ | 131 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ |
| 132 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ | 132 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ |
| 133 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/JZsdk_AttributeDef.h \ | ||
| 134 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_typedef.h \ | ||
| 133 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ | 135 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ |
| 134 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ | 136 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ |
| 135 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ | 137 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ |
| @@ -127,6 +127,8 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/AudioDeal/AudioSt | @@ -127,6 +127,8 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/AudioDeal/AudioSt | ||
| 127 | /usr/local/arm/4.9.3/lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/include/stdbool.h \ | 127 | /usr/local/arm/4.9.3/lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/include/stdbool.h \ |
| 128 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ | 128 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ |
| 129 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ | 129 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ |
| 130 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/JZsdk_AttributeDef.h \ | ||
| 131 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_typedef.h \ | ||
| 130 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ | 132 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ |
| 131 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ | 133 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ |
| 132 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ | 134 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ |
| @@ -127,6 +127,8 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/AudioDeal/AudioSt | @@ -127,6 +127,8 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/AudioDeal/AudioSt | ||
| 127 | /usr/local/arm/4.9.3/lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/include/stdbool.h \ | 127 | /usr/local/arm/4.9.3/lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/include/stdbool.h \ |
| 128 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ | 128 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ |
| 129 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ | 129 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ |
| 130 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/JZsdk_AttributeDef.h \ | ||
| 131 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_typedef.h \ | ||
| 130 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ | 132 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ |
| 131 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ | 133 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ |
| 132 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ | 134 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ |
| @@ -130,6 +130,8 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/AudioDeal/Filter/ | @@ -130,6 +130,8 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/AudioDeal/Filter/ | ||
| 130 | /usr/local/arm/4.9.3/lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/include/stdbool.h \ | 130 | /usr/local/arm/4.9.3/lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/include/stdbool.h \ |
| 131 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ | 131 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ |
| 132 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ | 132 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ |
| 133 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/JZsdk_AttributeDef.h \ | ||
| 134 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_typedef.h \ | ||
| 133 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ | 135 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ |
| 134 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ | 136 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ |
| 135 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ | 137 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ |
| @@ -56,6 +56,8 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/AudioDeal/NoiseRe | @@ -56,6 +56,8 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/AudioDeal/NoiseRe | ||
| 56 | /usr/local/arm/4.9.3/lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/include/stdbool.h \ | 56 | /usr/local/arm/4.9.3/lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/include/stdbool.h \ |
| 57 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ | 57 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ |
| 58 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ | 58 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ |
| 59 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/JZsdk_AttributeDef.h \ | ||
| 60 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_typedef.h \ | ||
| 59 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ | 61 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ |
| 60 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ | 62 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ |
| 61 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ | 63 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ |
| @@ -127,6 +127,8 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/AudioDeal/Resampl | @@ -127,6 +127,8 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/AudioDeal/Resampl | ||
| 127 | /usr/local/arm/4.9.3/lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/include/stdbool.h \ | 127 | /usr/local/arm/4.9.3/lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/include/stdbool.h \ |
| 128 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ | 128 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ |
| 129 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ | 129 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ |
| 130 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/JZsdk_AttributeDef.h \ | ||
| 131 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_typedef.h \ | ||
| 130 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ | 132 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ |
| 131 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ | 133 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ |
| 132 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ | 134 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ |
| @@ -46,6 +46,8 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/Device | @@ -46,6 +46,8 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/Device | ||
| 46 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/stdlib-float.h \ | 46 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/stdlib-float.h \ |
| 47 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ | 47 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ |
| 48 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ | 48 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ |
| 49 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/JZsdk_AttributeDef.h \ | ||
| 50 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_typedef.h \ | ||
| 49 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ | 51 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ |
| 50 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ | 52 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ |
| 51 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ | 53 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ |
| @@ -81,4 +83,6 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/Device | @@ -81,4 +83,6 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/Device | ||
| 81 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/DeviceInfo/DeviceMessage/DeviceMessage.h \ | 83 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/DeviceInfo/DeviceMessage/DeviceMessage.h \ |
| 82 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/DeviceInfo/SerialNumberProc/SerialProc.h \ | 84 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/DeviceInfo/SerialNumberProc/SerialProc.h \ |
| 83 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/DeviceInfo/SerialNumberProc/FirewareOriginMAT/FirewareOriginMAT.h \ | 85 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/DeviceInfo/SerialNumberProc/FirewareOriginMAT/FirewareOriginMAT.h \ |
| 84 | - /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/DeviceInfo/HardwareInfo/HardwareInfo.h | 86 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/DeviceInfo/HardwareInfo/HardwareInfo.h \ |
| 87 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/DeviceInfo/Attribute/Attribute.h \ | ||
| 88 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_hal/JZsdk_Hal.h |
| @@ -46,6 +46,8 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/Device | @@ -46,6 +46,8 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/Device | ||
| 46 | /usr/local/arm/4.9.3/lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/include/stdbool.h \ | 46 | /usr/local/arm/4.9.3/lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/include/stdbool.h \ |
| 47 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ | 47 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ |
| 48 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ | 48 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ |
| 49 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/JZsdk_AttributeDef.h \ | ||
| 50 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_typedef.h \ | ||
| 49 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ | 51 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ |
| 50 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ | 52 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ |
| 51 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ | 53 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ |
| @@ -46,6 +46,8 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/Hardwa | @@ -46,6 +46,8 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/Hardwa | ||
| 46 | /usr/local/arm/4.9.3/lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/include/stdbool.h \ | 46 | /usr/local/arm/4.9.3/lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/include/stdbool.h \ |
| 47 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ | 47 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ |
| 48 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ | 48 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ |
| 49 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/JZsdk_AttributeDef.h \ | ||
| 50 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_typedef.h \ | ||
| 49 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ | 51 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ |
| 50 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ | 52 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ |
| 51 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ | 53 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ |
| @@ -44,6 +44,8 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/Serial | @@ -44,6 +44,8 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/Serial | ||
| 44 | /usr/local/arm/4.9.3/lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/include/stdbool.h \ | 44 | /usr/local/arm/4.9.3/lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/include/stdbool.h \ |
| 45 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ | 45 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ |
| 46 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ | 46 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ |
| 47 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/JZsdk_AttributeDef.h \ | ||
| 48 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_typedef.h \ | ||
| 47 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ | 49 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ |
| 48 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ | 50 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ |
| 49 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ | 51 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ |
| @@ -46,6 +46,8 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/Serial | @@ -46,6 +46,8 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/Serial | ||
| 46 | /usr/local/arm/4.9.3/lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/include/stdbool.h \ | 46 | /usr/local/arm/4.9.3/lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/include/stdbool.h \ |
| 47 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ | 47 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ |
| 48 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ | 48 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ |
| 49 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/JZsdk_AttributeDef.h \ | ||
| 50 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_typedef.h \ | ||
| 49 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ | 51 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ |
| 50 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ | 52 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ |
| 51 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ | 53 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ |
| @@ -44,6 +44,8 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/Serial | @@ -44,6 +44,8 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/Serial | ||
| 44 | /usr/local/arm/4.9.3/lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/include/stdbool.h \ | 44 | /usr/local/arm/4.9.3/lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/include/stdbool.h \ |
| 45 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ | 45 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ |
| 46 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ | 46 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ |
| 47 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/JZsdk_AttributeDef.h \ | ||
| 48 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_typedef.h \ | ||
| 47 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ | 49 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ |
| 48 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ | 50 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ |
| 49 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ | 51 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ |
| @@ -60,6 +60,8 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Gimbal/Gimbal.c.o | @@ -60,6 +60,8 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Gimbal/Gimbal.c.o | ||
| 60 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/string.h \ | 60 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/string.h \ |
| 61 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ | 61 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ |
| 62 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ | 62 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ |
| 63 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/JZsdk_AttributeDef.h \ | ||
| 64 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_typedef.h \ | ||
| 63 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ | 65 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ |
| 64 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ | 66 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ |
| 65 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ | 67 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ |
| @@ -46,6 +46,8 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Gimbal/Gimbal_Dat | @@ -46,6 +46,8 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Gimbal/Gimbal_Dat | ||
| 46 | /usr/local/arm/4.9.3/lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/include/stdbool.h \ | 46 | /usr/local/arm/4.9.3/lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/include/stdbool.h \ |
| 47 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ | 47 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ |
| 48 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ | 48 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ |
| 49 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/JZsdk_AttributeDef.h \ | ||
| 50 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_typedef.h \ | ||
| 49 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ | 51 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ |
| 50 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ | 52 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ |
| 51 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ | 53 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ |
| @@ -83,45 +85,4 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Gimbal/Gimbal_Dat | @@ -83,45 +85,4 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Gimbal/Gimbal_Dat | ||
| 83 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_hal/Hal_Send/HalSend.h \ | 85 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_hal/Hal_Send/HalSend.h \ |
| 84 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_hal/Hal_Send/HalSend_type1/HalSend_type1.h \ | 86 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_hal/Hal_Send/HalSend_type1/HalSend_type1.h \ |
| 85 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_hal/JZsdk_uart/JZsdk_Uart.h \ | 87 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_hal/JZsdk_uart/JZsdk_Uart.h \ |
| 86 | - /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/Ircut/H3_ircut/H3_ircut.h \ | ||
| 87 | - /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/wiringPi/wiringPi.h \ | ||
| 88 | - /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/wiringPi/boardtype_friendlyelec.h \ | ||
| 89 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/unistd.h \ | ||
| 90 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/posix_opt.h \ | ||
| 91 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/environments.h \ | ||
| 92 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/confname.h \ | ||
| 93 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/getopt.h \ | ||
| 94 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/sys/stat.h \ | ||
| 95 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/stat.h \ | ||
| 96 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/sys/ioctl.h \ | ||
| 97 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/ioctls.h \ | ||
| 98 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/asm/ioctls.h \ | ||
| 99 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/asm-generic/ioctls.h \ | ||
| 100 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/linux/ioctl.h \ | ||
| 101 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/asm/ioctl.h \ | ||
| 102 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/asm-generic/ioctl.h \ | ||
| 103 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/ioctl-types.h \ | ||
| 104 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/sys/ttydefaults.h \ | ||
| 105 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/fcntl.h \ | ||
| 106 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/fcntl.h \ | ||
| 107 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/fcntl-linux.h \ | ||
| 108 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/linux/fs.h \ | ||
| 109 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/linux/limits.h \ | ||
| 110 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/linux/types.h \ | ||
| 111 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/asm/types.h \ | ||
| 112 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/asm-generic/types.h \ | ||
| 113 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/asm-generic/int-ll64.h \ | ||
| 114 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/asm/bitsperlong.h \ | ||
| 115 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/asm-generic/bitsperlong.h \ | ||
| 116 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/linux/posix_types.h \ | ||
| 117 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/linux/stddef.h \ | ||
| 118 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/asm/posix_types.h \ | ||
| 119 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/asm-generic/posix_types.h \ | ||
| 120 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/errno.h \ | ||
| 121 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/errno.h \ | ||
| 122 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/linux/errno.h \ | ||
| 123 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/asm/errno.h \ | ||
| 124 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/asm-generic/errno.h \ | ||
| 125 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/asm-generic/errno-base.h \ | ||
| 126 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/sys/utsname.h \ | ||
| 127 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/utsname.h | 88 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/Ircut/H3_ircut/H3_ircut.h |
| @@ -46,6 +46,8 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Gimbal/Gimbal_Mot | @@ -46,6 +46,8 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Gimbal/Gimbal_Mot | ||
| 46 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/stdlib-float.h \ | 46 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/stdlib-float.h \ |
| 47 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ | 47 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ |
| 48 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ | 48 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ |
| 49 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/JZsdk_AttributeDef.h \ | ||
| 50 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_typedef.h \ | ||
| 49 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ | 51 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ |
| 50 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ | 52 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ |
| 51 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ | 53 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ |
| @@ -63,6 +63,8 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Gimbal/Gimbal_Spe | @@ -63,6 +63,8 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Gimbal/Gimbal_Spe | ||
| 63 | /usr/local/arm/4.9.3/lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/include/stdbool.h \ | 63 | /usr/local/arm/4.9.3/lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/include/stdbool.h \ |
| 64 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ | 64 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ |
| 65 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ | 65 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ |
| 66 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/JZsdk_AttributeDef.h \ | ||
| 67 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_typedef.h \ | ||
| 66 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ | 68 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ |
| 67 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ | 69 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ |
| 68 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ | 70 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ |
| @@ -44,6 +44,8 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Ircut/H3_ircut/H3 | @@ -44,6 +44,8 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Ircut/H3_ircut/H3 | ||
| 44 | /usr/local/arm/4.9.3/lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/include/stdbool.h \ | 44 | /usr/local/arm/4.9.3/lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/include/stdbool.h \ |
| 45 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ | 45 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ |
| 46 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ | 46 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ |
| 47 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/JZsdk_AttributeDef.h \ | ||
| 48 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_typedef.h \ | ||
| 47 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ | 49 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ |
| 48 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ | 50 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ |
| 49 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ | 51 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ |
| @@ -76,45 +78,4 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Ircut/H3_ircut/H3 | @@ -76,45 +78,4 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Ircut/H3_ircut/H3 | ||
| 76 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_CommonFuntion/JZsdk_string/JZsdk_string.h \ | 78 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_CommonFuntion/JZsdk_string/JZsdk_string.h \ |
| 77 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_CommonFuntion/JZsdk_math/JZsdk_math.h \ | 79 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_CommonFuntion/JZsdk_math/JZsdk_math.h \ |
| 78 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_TaskManagement/TaskManagement.h \ | 80 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_TaskManagement/TaskManagement.h \ |
| 79 | - /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Config/./ParamterParsing.h \ | ||
| 80 | - /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/wiringPi/wiringPi.h \ | ||
| 81 | - /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/wiringPi/boardtype_friendlyelec.h \ | ||
| 82 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/unistd.h \ | ||
| 83 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/posix_opt.h \ | ||
| 84 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/environments.h \ | ||
| 85 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/confname.h \ | ||
| 86 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/getopt.h \ | ||
| 87 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/sys/stat.h \ | ||
| 88 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/stat.h \ | ||
| 89 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/sys/ioctl.h \ | ||
| 90 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/ioctls.h \ | ||
| 91 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/asm/ioctls.h \ | ||
| 92 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/asm-generic/ioctls.h \ | ||
| 93 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/linux/ioctl.h \ | ||
| 94 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/asm/ioctl.h \ | ||
| 95 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/asm-generic/ioctl.h \ | ||
| 96 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/ioctl-types.h \ | ||
| 97 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/sys/ttydefaults.h \ | ||
| 98 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/fcntl.h \ | ||
| 99 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/fcntl.h \ | ||
| 100 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/fcntl-linux.h \ | ||
| 101 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/linux/fs.h \ | ||
| 102 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/linux/limits.h \ | ||
| 103 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/linux/types.h \ | ||
| 104 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/asm/types.h \ | ||
| 105 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/asm-generic/types.h \ | ||
| 106 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/asm-generic/int-ll64.h \ | ||
| 107 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/asm/bitsperlong.h \ | ||
| 108 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/asm-generic/bitsperlong.h \ | ||
| 109 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/linux/posix_types.h \ | ||
| 110 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/linux/stddef.h \ | ||
| 111 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/asm/posix_types.h \ | ||
| 112 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/asm-generic/posix_types.h \ | ||
| 113 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/errno.h \ | ||
| 114 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/errno.h \ | ||
| 115 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/linux/errno.h \ | ||
| 116 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/asm/errno.h \ | ||
| 117 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/asm-generic/errno.h \ | ||
| 118 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/asm-generic/errno-base.h \ | ||
| 119 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/sys/utsname.h \ | ||
| 120 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/utsname.h | 81 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Config/./ParamterParsing.h |
| @@ -48,6 +48,8 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Ircut/Sysfs_gpio/ | @@ -48,6 +48,8 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Ircut/Sysfs_gpio/ | ||
| 48 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/stdlib-float.h \ | 48 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/stdlib-float.h \ |
| 49 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ | 49 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ |
| 50 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ | 50 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ |
| 51 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/JZsdk_AttributeDef.h \ | ||
| 52 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_typedef.h \ | ||
| 51 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ | 53 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ |
| 52 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ | 54 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ |
| 53 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ | 55 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ |
| @@ -44,6 +44,8 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Ircut/V3s_ircut/V | @@ -44,6 +44,8 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Ircut/V3s_ircut/V | ||
| 44 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/sys_errlist.h \ | 44 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/sys_errlist.h \ |
| 45 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ | 45 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ |
| 46 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ | 46 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ |
| 47 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/JZsdk_AttributeDef.h \ | ||
| 48 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_typedef.h \ | ||
| 47 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ | 49 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ |
| 48 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ | 50 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ |
| 49 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ | 51 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ |
| @@ -46,6 +46,8 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Ircut/ircut.c.o: | @@ -46,6 +46,8 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Ircut/ircut.c.o: | ||
| 46 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/stdlib-float.h \ | 46 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/stdlib-float.h \ |
| 47 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ | 47 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ |
| 48 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ | 48 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ |
| 49 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/JZsdk_AttributeDef.h \ | ||
| 50 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_typedef.h \ | ||
| 49 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ | 51 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ |
| 50 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ | 52 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ |
| 51 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ | 53 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ |
| @@ -46,6 +46,8 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/Attenti | @@ -46,6 +46,8 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/Attenti | ||
| 46 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/stdlib-float.h \ | 46 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/stdlib-float.h \ |
| 47 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ | 47 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ |
| 48 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ | 48 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ |
| 49 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/JZsdk_AttributeDef.h \ | ||
| 50 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_typedef.h \ | ||
| 49 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ | 51 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ |
| 50 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ | 52 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ |
| 51 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ | 53 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ |
| @@ -80,4 +82,5 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/Attenti | @@ -80,4 +82,5 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/Attenti | ||
| 80 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/DeviceInfo/DeviceMessage/DeviceMessage.h \ | 82 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/DeviceInfo/DeviceMessage/DeviceMessage.h \ |
| 81 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/DeviceInfo/SerialNumberProc/SerialProc.h \ | 83 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/DeviceInfo/SerialNumberProc/SerialProc.h \ |
| 82 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/DeviceInfo/SerialNumberProc/FirewareOriginMAT/FirewareOriginMAT.h \ | 84 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/DeviceInfo/SerialNumberProc/FirewareOriginMAT/FirewareOriginMAT.h \ |
| 83 | - /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/DeviceInfo/HardwareInfo/HardwareInfo.h | 85 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/DeviceInfo/HardwareInfo/HardwareInfo.h \ |
| 86 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/DeviceInfo/Attribute/Attribute.h |
| @@ -79,6 +79,8 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/MegTemp | @@ -79,6 +79,8 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/MegTemp | ||
| 79 | /usr/local/arm/4.9.3/lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/include/stdbool.h \ | 79 | /usr/local/arm/4.9.3/lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/include/stdbool.h \ |
| 80 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ | 80 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ |
| 81 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ | 81 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ |
| 82 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/JZsdk_AttributeDef.h \ | ||
| 83 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_typedef.h \ | ||
| 82 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ | 84 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ |
| 83 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ | 85 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ |
| 84 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ | 86 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ |
| @@ -50,6 +50,8 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/Megapho | @@ -50,6 +50,8 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/Megapho | ||
| 50 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/stdlib-float.h \ | 50 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/stdlib-float.h \ |
| 51 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ | 51 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ |
| 52 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ | 52 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ |
| 53 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/JZsdk_AttributeDef.h \ | ||
| 54 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_typedef.h \ | ||
| 53 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ | 55 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ |
| 54 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ | 56 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ |
| 55 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ | 57 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ |
| @@ -136,6 +138,7 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/Megapho | @@ -136,6 +138,7 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/Megapho | ||
| 136 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/DeviceInfo/SerialNumberProc/SerialProc.h \ | 138 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/DeviceInfo/SerialNumberProc/SerialProc.h \ |
| 137 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/DeviceInfo/SerialNumberProc/FirewareOriginMAT/FirewareOriginMAT.h \ | 139 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/DeviceInfo/SerialNumberProc/FirewareOriginMAT/FirewareOriginMAT.h \ |
| 138 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/DeviceInfo/HardwareInfo/HardwareInfo.h \ | 140 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/DeviceInfo/HardwareInfo/HardwareInfo.h \ |
| 141 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/DeviceInfo/Attribute/Attribute.h \ | ||
| 139 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Config/BaseConfig.h \ | 142 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Config/BaseConfig.h \ |
| 140 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Config/version_choose.h \ | 143 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Config/version_choose.h \ |
| 141 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Config/./ParamterParsing.h \ | 144 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Config/./ParamterParsing.h \ |
| @@ -44,6 +44,8 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/TTS/Esp | @@ -44,6 +44,8 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/TTS/Esp | ||
| 44 | /usr/local/arm/4.9.3/lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/include/stdbool.h \ | 44 | /usr/local/arm/4.9.3/lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/include/stdbool.h \ |
| 45 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ | 45 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ |
| 46 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ | 46 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ |
| 47 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/JZsdk_AttributeDef.h \ | ||
| 48 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_typedef.h \ | ||
| 47 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ | 49 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ |
| 48 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ | 50 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ |
| 49 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ | 51 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ |
| @@ -46,6 +46,8 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/TTS/Meg | @@ -46,6 +46,8 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/TTS/Meg | ||
| 46 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/stdlib-float.h \ | 46 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/stdlib-float.h \ |
| 47 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ | 47 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ |
| 48 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ | 48 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ |
| 49 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/JZsdk_AttributeDef.h \ | ||
| 50 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_typedef.h \ | ||
| 49 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ | 51 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ |
| 50 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ | 52 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ |
| 51 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ | 53 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ |
| @@ -77,5 +79,6 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/TTS/Meg | @@ -77,5 +79,6 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/TTS/Meg | ||
| 77 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/DeviceInfo/SerialNumberProc/SerialProc.h \ | 79 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/DeviceInfo/SerialNumberProc/SerialProc.h \ |
| 78 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/DeviceInfo/SerialNumberProc/FirewareOriginMAT/FirewareOriginMAT.h \ | 80 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/DeviceInfo/SerialNumberProc/FirewareOriginMAT/FirewareOriginMAT.h \ |
| 79 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/DeviceInfo/HardwareInfo/HardwareInfo.h \ | 81 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/DeviceInfo/HardwareInfo/HardwareInfo.h \ |
| 82 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/DeviceInfo/Attribute/Attribute.h \ | ||
| 80 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/Megaphone/TTS/Espeak_tts/Espeak_tts.h \ | 83 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/Megaphone/TTS/Espeak_tts/Espeak_tts.h \ |
| 81 | /mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/TTS/./cnTTS/cnTTS.h | 84 | /mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/TTS/./cnTTS/cnTTS.h |
| @@ -48,6 +48,8 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/TTS/cnT | @@ -48,6 +48,8 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/TTS/cnT | ||
| 48 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/stdlib-float.h \ | 48 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/stdlib-float.h \ |
| 49 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ | 49 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ |
| 50 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ | 50 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ |
| 51 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/JZsdk_AttributeDef.h \ | ||
| 52 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_typedef.h \ | ||
| 51 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ | 53 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ |
| 52 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ | 54 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ |
| 53 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ | 55 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ |
| @@ -56,6 +56,8 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/Opus/Re | @@ -56,6 +56,8 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/Opus/Re | ||
| 56 | /usr/local/arm/4.9.3/lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/include/stdbool.h \ | 56 | /usr/local/arm/4.9.3/lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/include/stdbool.h \ |
| 57 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ | 57 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ |
| 58 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ | 58 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ |
| 59 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/JZsdk_AttributeDef.h \ | ||
| 60 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_typedef.h \ | ||
| 59 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ | 61 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ |
| 60 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ | 62 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ |
| 61 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ | 63 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ |
| @@ -46,6 +46,8 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/UI_control/Dji_Co | @@ -46,6 +46,8 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/UI_control/Dji_Co | ||
| 46 | /usr/local/arm/4.9.3/lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/include/stdbool.h \ | 46 | /usr/local/arm/4.9.3/lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/include/stdbool.h \ |
| 47 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ | 47 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ |
| 48 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ | 48 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ |
| 49 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/JZsdk_AttributeDef.h \ | ||
| 50 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_typedef.h \ | ||
| 49 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ | 51 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ |
| 50 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ | 52 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ |
| 51 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ | 53 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ |
| @@ -44,6 +44,8 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/UI_control/Psdk_U | @@ -44,6 +44,8 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/UI_control/Psdk_U | ||
| 44 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/stdlib-float.h \ | 44 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/stdlib-float.h \ |
| 45 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ | 45 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ |
| 46 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ | 46 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ |
| 47 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/JZsdk_AttributeDef.h \ | ||
| 48 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_typedef.h \ | ||
| 47 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ | 49 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ |
| 48 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ | 50 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ |
| 49 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ | 51 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ |
| @@ -99,4 +101,5 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/UI_control/Psdk_U | @@ -99,4 +101,5 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/UI_control/Psdk_U | ||
| 99 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/DeviceInfo/DeviceMessage/DeviceMessage.h \ | 101 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/DeviceInfo/DeviceMessage/DeviceMessage.h \ |
| 100 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/DeviceInfo/SerialNumberProc/SerialProc.h \ | 102 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/DeviceInfo/SerialNumberProc/SerialProc.h \ |
| 101 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/DeviceInfo/SerialNumberProc/FirewareOriginMAT/FirewareOriginMAT.h \ | 103 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/DeviceInfo/SerialNumberProc/FirewareOriginMAT/FirewareOriginMAT.h \ |
| 102 | - /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/DeviceInfo/HardwareInfo/HardwareInfo.h | 104 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/DeviceInfo/HardwareInfo/HardwareInfo.h \ |
| 105 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/DeviceInfo/Attribute/Attribute.h |
| @@ -46,6 +46,8 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/UI_control/UI_con | @@ -46,6 +46,8 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/UI_control/UI_con | ||
| 46 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/stdlib-float.h \ | 46 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/stdlib-float.h \ |
| 47 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ | 47 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ |
| 48 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ | 48 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ |
| 49 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/JZsdk_AttributeDef.h \ | ||
| 50 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_typedef.h \ | ||
| 49 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ | 51 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ |
| 50 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ | 52 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ |
| 51 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ | 53 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ |
| @@ -89,13 +91,33 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/UI_control/UI_con | @@ -89,13 +91,33 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/UI_control/UI_con | ||
| 89 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/DeviceInfo/SerialNumberProc/SerialProc.h \ | 91 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/DeviceInfo/SerialNumberProc/SerialProc.h \ |
| 90 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/DeviceInfo/SerialNumberProc/FirewareOriginMAT/FirewareOriginMAT.h \ | 92 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/DeviceInfo/SerialNumberProc/FirewareOriginMAT/FirewareOriginMAT.h \ |
| 91 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/DeviceInfo/HardwareInfo/HardwareInfo.h \ | 93 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/DeviceInfo/HardwareInfo/HardwareInfo.h \ |
| 94 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/DeviceInfo/Attribute/Attribute.h \ | ||
| 92 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/MediaProc/VideoMgmt/VideoMgmt.h \ | 95 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/MediaProc/VideoMgmt/VideoMgmt.h \ |
| 93 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/MediaProc/VideoMgmt/./VideoMgmt_Parm.h \ | 96 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/MediaProc/VideoMgmt/./VideoMgmt_Parm.h \ |
| 94 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/MediaProc/Camera/Camera.h \ | 97 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/MediaProc/Camera/Camera.h \ |
| 95 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/MediaProc/MediaProc_Param.h \ | 98 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/MediaProc/MediaProc_Param.h \ |
| 99 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/MediaProc/Camera/CameraDef.h \ | ||
| 96 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/MediaProc/Camera/Cam_FrameCatch/Cam_FrameCatch.h \ | 100 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/MediaProc/Camera/Cam_FrameCatch/Cam_FrameCatch.h \ |
| 97 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/MediaProc/Camera/V4L2_camera/V4L2_CameraParameterSetting.h \ | 101 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/MediaProc/Camera/V4L2_camera/V4L2_CameraParameterSetting.h \ |
| 102 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/MediaProc/Camera/V4L2_camera/../CameraDef.h \ | ||
| 98 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/MediaProc/Camera/V4L2_camera/V4L2_Record.h \ | 103 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/MediaProc/Camera/V4L2_camera/V4L2_Record.h \ |
| 104 | + /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/linux/videodev2.h \ | ||
| 105 | + /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/sys/time.h \ | ||
| 106 | + /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/linux/ioctl.h \ | ||
| 107 | + /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/asm/ioctl.h \ | ||
| 108 | + /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/asm-generic/ioctl.h \ | ||
| 109 | + /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/linux/types.h \ | ||
| 110 | + /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/asm/types.h \ | ||
| 111 | + /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/asm-generic/types.h \ | ||
| 112 | + /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/asm-generic/int-ll64.h \ | ||
| 113 | + /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/asm/bitsperlong.h \ | ||
| 114 | + /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/asm-generic/bitsperlong.h \ | ||
| 115 | + /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/linux/posix_types.h \ | ||
| 116 | + /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/linux/stddef.h \ | ||
| 117 | + /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/asm/posix_types.h \ | ||
| 118 | + /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/asm-generic/posix_types.h \ | ||
| 119 | + /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/linux/v4l2-common.h \ | ||
| 120 | + /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/linux/v4l2-controls.h \ | ||
| 99 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/MediaProc/Camera/Cam_Zoom/Cam_Zoom.h \ | 121 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/MediaProc/Camera/Cam_Zoom/Cam_Zoom.h \ |
| 100 | /mnt/hgfs/share/JZSDK_Linux/Module/UI_control/./UI_control.h \ | 122 | /mnt/hgfs/share/JZSDK_Linux/Module/UI_control/./UI_control.h \ |
| 101 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/CommonMod/CommonMod.h \ | 123 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/CommonMod/CommonMod.h \ |
| @@ -49,6 +49,8 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/UI_control/WidegM | @@ -49,6 +49,8 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/UI_control/WidegM | ||
| 49 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/stdlib-float.h \ | 49 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/stdlib-float.h \ |
| 50 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ | 50 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ |
| 51 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ | 51 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ |
| 52 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/JZsdk_AttributeDef.h \ | ||
| 53 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_typedef.h \ | ||
| 52 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ | 54 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ |
| 53 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ | 55 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ |
| 54 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ | 56 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ |
| @@ -53,6 +53,8 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/UI_control/WidegM | @@ -53,6 +53,8 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/UI_control/WidegM | ||
| 53 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/stdlib-float.h \ | 53 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/stdlib-float.h \ |
| 54 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ | 54 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ |
| 55 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ | 55 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ |
| 56 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/JZsdk_AttributeDef.h \ | ||
| 57 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_typedef.h \ | ||
| 56 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ | 58 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ |
| 57 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ | 59 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ |
| 58 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ | 60 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ |
| @@ -49,6 +49,8 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/UI_control/WidegM | @@ -49,6 +49,8 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/UI_control/WidegM | ||
| 49 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/stdlib-float.h \ | 49 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/stdlib-float.h \ |
| 50 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ | 50 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h \ |
| 51 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ | 51 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h \ |
| 52 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/JZsdk_AttributeDef.h \ | ||
| 53 | + /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_typedef.h \ | ||
| 52 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ | 54 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h \ |
| 53 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ | 55 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/../JZsdk_typedef/JZsdk_typedef.h \ |
| 54 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ | 56 | /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h \ |
| @@ -4,117 +4,100 @@ CMAKE_PROGRESS_3 = 2 | @@ -4,117 +4,100 @@ CMAKE_PROGRESS_3 = 2 | ||
| 4 | CMAKE_PROGRESS_4 = 3 | 4 | CMAKE_PROGRESS_4 = 3 |
| 5 | CMAKE_PROGRESS_5 = 4 | 5 | CMAKE_PROGRESS_5 = 4 |
| 6 | CMAKE_PROGRESS_6 = 5 | 6 | CMAKE_PROGRESS_6 = 5 |
| 7 | -CMAKE_PROGRESS_7 = | ||
| 8 | -CMAKE_PROGRESS_8 = 6 | ||
| 9 | -CMAKE_PROGRESS_9 = 7 | ||
| 10 | -CMAKE_PROGRESS_10 = 8 | ||
| 11 | -CMAKE_PROGRESS_11 = 9 | ||
| 12 | -CMAKE_PROGRESS_12 = 10 | ||
| 13 | -CMAKE_PROGRESS_13 = | ||
| 14 | -CMAKE_PROGRESS_14 = 11 | ||
| 15 | -CMAKE_PROGRESS_15 = 12 | ||
| 16 | -CMAKE_PROGRESS_16 = 13 | ||
| 17 | -CMAKE_PROGRESS_17 = 14 | ||
| 18 | -CMAKE_PROGRESS_18 = 15 | ||
| 19 | -CMAKE_PROGRESS_19 = | ||
| 20 | -CMAKE_PROGRESS_20 = 16 | ||
| 21 | -CMAKE_PROGRESS_21 = 17 | ||
| 22 | -CMAKE_PROGRESS_22 = 18 | ||
| 23 | -CMAKE_PROGRESS_23 = 19 | ||
| 24 | -CMAKE_PROGRESS_24 = 20 | ||
| 25 | -CMAKE_PROGRESS_25 = 21 | ||
| 26 | -CMAKE_PROGRESS_26 = | ||
| 27 | -CMAKE_PROGRESS_27 = 22 | ||
| 28 | -CMAKE_PROGRESS_28 = 23 | ||
| 29 | -CMAKE_PROGRESS_29 = 24 | ||
| 30 | -CMAKE_PROGRESS_30 = 25 | ||
| 31 | -CMAKE_PROGRESS_31 = 26 | ||
| 32 | -CMAKE_PROGRESS_32 = | ||
| 33 | -CMAKE_PROGRESS_33 = 27 | ||
| 34 | -CMAKE_PROGRESS_34 = 28 | ||
| 35 | -CMAKE_PROGRESS_35 = 29 | ||
| 36 | -CMAKE_PROGRESS_36 = 30 | ||
| 37 | -CMAKE_PROGRESS_37 = 31 | ||
| 38 | -CMAKE_PROGRESS_38 = | ||
| 39 | -CMAKE_PROGRESS_39 = 32 | ||
| 40 | -CMAKE_PROGRESS_40 = 33 | ||
| 41 | -CMAKE_PROGRESS_41 = 34 | ||
| 42 | -CMAKE_PROGRESS_42 = 35 | ||
| 43 | -CMAKE_PROGRESS_43 = 36 | ||
| 44 | -CMAKE_PROGRESS_44 = | ||
| 45 | -CMAKE_PROGRESS_45 = 37 | ||
| 46 | -CMAKE_PROGRESS_46 = 38 | ||
| 47 | -CMAKE_PROGRESS_47 = 39 | ||
| 48 | -CMAKE_PROGRESS_48 = 40 | ||
| 49 | -CMAKE_PROGRESS_49 = 41 | ||
| 50 | -CMAKE_PROGRESS_50 = 42 | ||
| 51 | -CMAKE_PROGRESS_51 = | ||
| 52 | -CMAKE_PROGRESS_52 = 43 | ||
| 53 | -CMAKE_PROGRESS_53 = 44 | ||
| 54 | -CMAKE_PROGRESS_54 = 45 | ||
| 55 | -CMAKE_PROGRESS_55 = 46 | ||
| 56 | -CMAKE_PROGRESS_56 = 47 | ||
| 57 | -CMAKE_PROGRESS_57 = | ||
| 58 | -CMAKE_PROGRESS_58 = 48 | ||
| 59 | -CMAKE_PROGRESS_59 = 49 | ||
| 60 | -CMAKE_PROGRESS_60 = 50 | ||
| 61 | -CMAKE_PROGRESS_61 = 51 | ||
| 62 | -CMAKE_PROGRESS_62 = 52 | ||
| 63 | -CMAKE_PROGRESS_63 = | ||
| 64 | -CMAKE_PROGRESS_64 = 53 | ||
| 65 | -CMAKE_PROGRESS_65 = 54 | ||
| 66 | -CMAKE_PROGRESS_66 = 55 | ||
| 67 | -CMAKE_PROGRESS_67 = 56 | ||
| 68 | -CMAKE_PROGRESS_68 = 57 | ||
| 69 | -CMAKE_PROGRESS_69 = | ||
| 70 | -CMAKE_PROGRESS_70 = 58 | ||
| 71 | -CMAKE_PROGRESS_71 = 59 | ||
| 72 | -CMAKE_PROGRESS_72 = 60 | ||
| 73 | -CMAKE_PROGRESS_73 = 61 | ||
| 74 | -CMAKE_PROGRESS_74 = 62 | ||
| 75 | -CMAKE_PROGRESS_75 = 63 | ||
| 76 | -CMAKE_PROGRESS_76 = | ||
| 77 | -CMAKE_PROGRESS_77 = 64 | ||
| 78 | -CMAKE_PROGRESS_78 = 65 | ||
| 79 | -CMAKE_PROGRESS_79 = 66 | ||
| 80 | -CMAKE_PROGRESS_80 = 67 | ||
| 81 | -CMAKE_PROGRESS_81 = 68 | ||
| 82 | -CMAKE_PROGRESS_82 = | ||
| 83 | -CMAKE_PROGRESS_83 = 69 | ||
| 84 | -CMAKE_PROGRESS_84 = 70 | ||
| 85 | -CMAKE_PROGRESS_85 = 71 | ||
| 86 | -CMAKE_PROGRESS_86 = 72 | ||
| 87 | -CMAKE_PROGRESS_87 = 73 | ||
| 88 | -CMAKE_PROGRESS_88 = | ||
| 89 | -CMAKE_PROGRESS_89 = 74 | ||
| 90 | -CMAKE_PROGRESS_90 = 75 | ||
| 91 | -CMAKE_PROGRESS_91 = 76 | ||
| 92 | -CMAKE_PROGRESS_92 = 77 | ||
| 93 | -CMAKE_PROGRESS_93 = 78 | ||
| 94 | -CMAKE_PROGRESS_94 = | ||
| 95 | -CMAKE_PROGRESS_95 = 79 | ||
| 96 | -CMAKE_PROGRESS_96 = 80 | ||
| 97 | -CMAKE_PROGRESS_97 = 81 | ||
| 98 | -CMAKE_PROGRESS_98 = 82 | ||
| 99 | -CMAKE_PROGRESS_99 = 83 | ||
| 100 | -CMAKE_PROGRESS_100 = 84 | ||
| 101 | -CMAKE_PROGRESS_101 = | ||
| 102 | -CMAKE_PROGRESS_102 = 85 | ||
| 103 | -CMAKE_PROGRESS_103 = 86 | ||
| 104 | -CMAKE_PROGRESS_104 = 87 | ||
| 105 | -CMAKE_PROGRESS_105 = 88 | ||
| 106 | -CMAKE_PROGRESS_106 = 89 | ||
| 107 | -CMAKE_PROGRESS_107 = | ||
| 108 | -CMAKE_PROGRESS_108 = 90 | ||
| 109 | -CMAKE_PROGRESS_109 = 91 | ||
| 110 | -CMAKE_PROGRESS_110 = 92 | ||
| 111 | -CMAKE_PROGRESS_111 = 93 | ||
| 112 | -CMAKE_PROGRESS_112 = 94 | ||
| 113 | -CMAKE_PROGRESS_113 = | ||
| 114 | -CMAKE_PROGRESS_114 = 95 | ||
| 115 | -CMAKE_PROGRESS_115 = 96 | ||
| 116 | -CMAKE_PROGRESS_116 = 97 | ||
| 117 | -CMAKE_PROGRESS_117 = 98 | ||
| 118 | -CMAKE_PROGRESS_118 = 99 | ||
| 119 | -CMAKE_PROGRESS_119 = 100 | 7 | +CMAKE_PROGRESS_7 = 6 |
| 8 | +CMAKE_PROGRESS_8 = 7 | ||
| 9 | +CMAKE_PROGRESS_9 = 8 | ||
| 10 | +CMAKE_PROGRESS_10 = 9 | ||
| 11 | +CMAKE_PROGRESS_11 = 10 | ||
| 12 | +CMAKE_PROGRESS_12 = 11 | ||
| 13 | +CMAKE_PROGRESS_13 = 12 | ||
| 14 | +CMAKE_PROGRESS_14 = 13 | ||
| 15 | +CMAKE_PROGRESS_15 = 14 | ||
| 16 | +CMAKE_PROGRESS_16 = 15 | ||
| 17 | +CMAKE_PROGRESS_17 = 16 | ||
| 18 | +CMAKE_PROGRESS_18 = 17 | ||
| 19 | +CMAKE_PROGRESS_19 = 18 | ||
| 20 | +CMAKE_PROGRESS_20 = 19 | ||
| 21 | +CMAKE_PROGRESS_21 = 20 | ||
| 22 | +CMAKE_PROGRESS_22 = 21 | ||
| 23 | +CMAKE_PROGRESS_23 = 22 | ||
| 24 | +CMAKE_PROGRESS_24 = 23 | ||
| 25 | +CMAKE_PROGRESS_25 = 24 | ||
| 26 | +CMAKE_PROGRESS_26 = 25 | ||
| 27 | +CMAKE_PROGRESS_27 = 26 | ||
| 28 | +CMAKE_PROGRESS_28 = 27 | ||
| 29 | +CMAKE_PROGRESS_29 = 28 | ||
| 30 | +CMAKE_PROGRESS_30 = 29 | ||
| 31 | +CMAKE_PROGRESS_31 = 30 | ||
| 32 | +CMAKE_PROGRESS_32 = 31 | ||
| 33 | +CMAKE_PROGRESS_33 = 32 | ||
| 34 | +CMAKE_PROGRESS_34 = 33 | ||
| 35 | +CMAKE_PROGRESS_35 = 34 | ||
| 36 | +CMAKE_PROGRESS_36 = 35 | ||
| 37 | +CMAKE_PROGRESS_37 = 36 | ||
| 38 | +CMAKE_PROGRESS_38 = 37 | ||
| 39 | +CMAKE_PROGRESS_39 = 38 | ||
| 40 | +CMAKE_PROGRESS_40 = 39 | ||
| 41 | +CMAKE_PROGRESS_41 = 40 | ||
| 42 | +CMAKE_PROGRESS_42 = 41 | ||
| 43 | +CMAKE_PROGRESS_43 = 42 | ||
| 44 | +CMAKE_PROGRESS_44 = 43 | ||
| 45 | +CMAKE_PROGRESS_45 = 44 | ||
| 46 | +CMAKE_PROGRESS_46 = 45 | ||
| 47 | +CMAKE_PROGRESS_47 = 46 | ||
| 48 | +CMAKE_PROGRESS_48 = 47 | ||
| 49 | +CMAKE_PROGRESS_49 = 48 | ||
| 50 | +CMAKE_PROGRESS_50 = 49 | ||
| 51 | +CMAKE_PROGRESS_51 = 50 | ||
| 52 | +CMAKE_PROGRESS_52 = | ||
| 53 | +CMAKE_PROGRESS_53 = 51 | ||
| 54 | +CMAKE_PROGRESS_54 = 52 | ||
| 55 | +CMAKE_PROGRESS_55 = 53 | ||
| 56 | +CMAKE_PROGRESS_56 = 54 | ||
| 57 | +CMAKE_PROGRESS_57 = 55 | ||
| 58 | +CMAKE_PROGRESS_58 = 56 | ||
| 59 | +CMAKE_PROGRESS_59 = 57 | ||
| 60 | +CMAKE_PROGRESS_60 = 58 | ||
| 61 | +CMAKE_PROGRESS_61 = 59 | ||
| 62 | +CMAKE_PROGRESS_62 = 60 | ||
| 63 | +CMAKE_PROGRESS_63 = 61 | ||
| 64 | +CMAKE_PROGRESS_64 = 62 | ||
| 65 | +CMAKE_PROGRESS_65 = 63 | ||
| 66 | +CMAKE_PROGRESS_66 = 64 | ||
| 67 | +CMAKE_PROGRESS_67 = 65 | ||
| 68 | +CMAKE_PROGRESS_68 = 66 | ||
| 69 | +CMAKE_PROGRESS_69 = 67 | ||
| 70 | +CMAKE_PROGRESS_70 = 68 | ||
| 71 | +CMAKE_PROGRESS_71 = 69 | ||
| 72 | +CMAKE_PROGRESS_72 = 70 | ||
| 73 | +CMAKE_PROGRESS_73 = 71 | ||
| 74 | +CMAKE_PROGRESS_74 = 72 | ||
| 75 | +CMAKE_PROGRESS_75 = 73 | ||
| 76 | +CMAKE_PROGRESS_76 = 74 | ||
| 77 | +CMAKE_PROGRESS_77 = 75 | ||
| 78 | +CMAKE_PROGRESS_78 = 76 | ||
| 79 | +CMAKE_PROGRESS_79 = 77 | ||
| 80 | +CMAKE_PROGRESS_80 = 78 | ||
| 81 | +CMAKE_PROGRESS_81 = 79 | ||
| 82 | +CMAKE_PROGRESS_82 = 80 | ||
| 83 | +CMAKE_PROGRESS_83 = 81 | ||
| 84 | +CMAKE_PROGRESS_84 = 82 | ||
| 85 | +CMAKE_PROGRESS_85 = 83 | ||
| 86 | +CMAKE_PROGRESS_86 = 84 | ||
| 87 | +CMAKE_PROGRESS_87 = 85 | ||
| 88 | +CMAKE_PROGRESS_88 = 86 | ||
| 89 | +CMAKE_PROGRESS_89 = 87 | ||
| 90 | +CMAKE_PROGRESS_90 = 88 | ||
| 91 | +CMAKE_PROGRESS_91 = 89 | ||
| 92 | +CMAKE_PROGRESS_92 = 90 | ||
| 93 | +CMAKE_PROGRESS_93 = 91 | ||
| 94 | +CMAKE_PROGRESS_94 = 92 | ||
| 95 | +CMAKE_PROGRESS_95 = 93 | ||
| 96 | +CMAKE_PROGRESS_96 = 94 | ||
| 97 | +CMAKE_PROGRESS_97 = 95 | ||
| 98 | +CMAKE_PROGRESS_98 = 96 | ||
| 99 | +CMAKE_PROGRESS_99 = 97 | ||
| 100 | +CMAKE_PROGRESS_100 = 98 | ||
| 101 | +CMAKE_PROGRESS_101 = 99 | ||
| 102 | +CMAKE_PROGRESS_102 = 100 | ||
| 120 | 103 |
| @@ -28,18 +28,18 @@ The CXX compiler identification is GNU, found in "/mnt/hgfs/share/JZSDK_Linux/pr | @@ -28,18 +28,18 @@ The CXX compiler identification is GNU, found in "/mnt/hgfs/share/JZSDK_Linux/pr | ||
| 28 | Detecting C compiler ABI info compiled with the following output: | 28 | Detecting C compiler ABI info compiled with the following output: |
| 29 | Change Dir: /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/CMakeTmp | 29 | Change Dir: /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/CMakeTmp |
| 30 | 30 | ||
| 31 | -Run Build Command(s):/usr/bin/make -f Makefile cmTC_6f5ef/fast && /usr/bin/make -f CMakeFiles/cmTC_6f5ef.dir/build.make CMakeFiles/cmTC_6f5ef.dir/build | 31 | +Run Build Command(s):/usr/bin/make -f Makefile cmTC_75746/fast && /usr/bin/make -f CMakeFiles/cmTC_75746.dir/build.make CMakeFiles/cmTC_75746.dir/build |
| 32 | make[1]: Entering directory '/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/CMakeTmp' | 32 | make[1]: Entering directory '/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/CMakeTmp' |
| 33 | -Building C object CMakeFiles/cmTC_6f5ef.dir/CMakeCCompilerABI.c.o | ||
| 34 | -/usr/bin/cc -v -o CMakeFiles/cmTC_6f5ef.dir/CMakeCCompilerABI.c.o -c /usr/local/share/cmake-3.24/Modules/CMakeCCompilerABI.c | 33 | +Building C object CMakeFiles/cmTC_75746.dir/CMakeCCompilerABI.c.o |
| 34 | +/usr/bin/cc -v -o CMakeFiles/cmTC_75746.dir/CMakeCCompilerABI.c.o -c /usr/local/share/cmake-3.24/Modules/CMakeCCompilerABI.c | ||
| 35 | Using built-in specs. | 35 | Using built-in specs. |
| 36 | COLLECT_GCC=/usr/bin/cc | 36 | COLLECT_GCC=/usr/bin/cc |
| 37 | Target: x86_64-linux-gnu | 37 | Target: x86_64-linux-gnu |
| 38 | Configured with: ../src/configure -v --with-pkgversion='Ubuntu 5.4.0-6ubuntu1~16.04.12' --with-bugurl=file:///usr/share/doc/gcc-5/README.Bugs --enable-languages=c,ada,c++,java,go,d,fortran,objc,obj-c++ --prefix=/usr --program-suffix=-5 --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --with-sysroot=/ --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-libmpx --enable-plugin --with-system-zlib --disable-browser-plugin --enable-java-awt=gtk --enable-gtk-cairo --with-java-home=/usr/lib/jvm/java-1.5.0-gcj-5-amd64/jre --enable-java-home --with-jvm-root-dir=/usr/lib/jvm/java-1.5.0-gcj-5-amd64 --with-jvm-jar-dir=/usr/lib/jvm-exports/java-1.5.0-gcj-5-amd64 --with-arch-directory=amd64 --with-ecj-jar=/usr/share/java/eclipse-ecj.jar --enable-objc-gc --enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu | 38 | Configured with: ../src/configure -v --with-pkgversion='Ubuntu 5.4.0-6ubuntu1~16.04.12' --with-bugurl=file:///usr/share/doc/gcc-5/README.Bugs --enable-languages=c,ada,c++,java,go,d,fortran,objc,obj-c++ --prefix=/usr --program-suffix=-5 --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --with-sysroot=/ --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-libmpx --enable-plugin --with-system-zlib --disable-browser-plugin --enable-java-awt=gtk --enable-gtk-cairo --with-java-home=/usr/lib/jvm/java-1.5.0-gcj-5-amd64/jre --enable-java-home --with-jvm-root-dir=/usr/lib/jvm/java-1.5.0-gcj-5-amd64 --with-jvm-jar-dir=/usr/lib/jvm-exports/java-1.5.0-gcj-5-amd64 --with-arch-directory=amd64 --with-ecj-jar=/usr/share/java/eclipse-ecj.jar --enable-objc-gc --enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu |
| 39 | Thread model: posix | 39 | Thread model: posix |
| 40 | gcc version 5.4.0 20160609 (Ubuntu 5.4.0-6ubuntu1~16.04.12) | 40 | gcc version 5.4.0 20160609 (Ubuntu 5.4.0-6ubuntu1~16.04.12) |
| 41 | -COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_6f5ef.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64' | ||
| 42 | - /usr/lib/gcc/x86_64-linux-gnu/5/cc1 -quiet -v -imultiarch x86_64-linux-gnu /usr/local/share/cmake-3.24/Modules/CMakeCCompilerABI.c -quiet -dumpbase CMakeCCompilerABI.c -mtune=generic -march=x86-64 -auxbase-strip CMakeFiles/cmTC_6f5ef.dir/CMakeCCompilerABI.c.o -version -fstack-protector-strong -Wformat -Wformat-security -o /tmp/cc23lNfe.s | 41 | +COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_75746.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64' |
| 42 | + /usr/lib/gcc/x86_64-linux-gnu/5/cc1 -quiet -v -imultiarch x86_64-linux-gnu /usr/local/share/cmake-3.24/Modules/CMakeCCompilerABI.c -quiet -dumpbase CMakeCCompilerABI.c -mtune=generic -march=x86-64 -auxbase-strip CMakeFiles/cmTC_75746.dir/CMakeCCompilerABI.c.o -version -fstack-protector-strong -Wformat -Wformat-security -o /tmp/ccLoxYGB.s | ||
| 43 | GNU C11 (Ubuntu 5.4.0-6ubuntu1~16.04.12) version 5.4.0 20160609 (x86_64-linux-gnu) | 43 | GNU C11 (Ubuntu 5.4.0-6ubuntu1~16.04.12) version 5.4.0 20160609 (x86_64-linux-gnu) |
| 44 | compiled by GNU C version 5.4.0 20160609, GMP version 6.1.0, MPFR version 3.1.4, MPC version 1.0.3 | 44 | compiled by GNU C version 5.4.0 20160609, GMP version 6.1.0, MPFR version 3.1.4, MPC version 1.0.3 |
| 45 | warning: GMP header version 6.1.0 differs from library version 6.1.2. | 45 | warning: GMP header version 6.1.0 differs from library version 6.1.2. |
| @@ -59,15 +59,15 @@ GNU C11 (Ubuntu 5.4.0-6ubuntu1~16.04.12) version 5.4.0 20160609 (x86_64-linux-gn | @@ -59,15 +59,15 @@ GNU C11 (Ubuntu 5.4.0-6ubuntu1~16.04.12) version 5.4.0 20160609 (x86_64-linux-gn | ||
| 59 | warning: GMP header version 6.1.0 differs from library version 6.1.2. | 59 | warning: GMP header version 6.1.0 differs from library version 6.1.2. |
| 60 | GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 | 60 | GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 |
| 61 | Compiler executable checksum: 8087146d2ee737d238113fb57fabb1f2 | 61 | Compiler executable checksum: 8087146d2ee737d238113fb57fabb1f2 |
| 62 | -COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_6f5ef.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64' | ||
| 63 | - as -v --64 -o CMakeFiles/cmTC_6f5ef.dir/CMakeCCompilerABI.c.o /tmp/cc23lNfe.s | 62 | +COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_75746.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64' |
| 63 | + as -v --64 -o CMakeFiles/cmTC_75746.dir/CMakeCCompilerABI.c.o /tmp/ccLoxYGB.s | ||
| 64 | GNU assembler version 2.26.1 (x86_64-linux-gnu) using BFD version (GNU Binutils for Ubuntu) 2.26.1 | 64 | GNU assembler version 2.26.1 (x86_64-linux-gnu) using BFD version (GNU Binutils for Ubuntu) 2.26.1 |
| 65 | COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/5/:/usr/lib/gcc/x86_64-linux-gnu/5/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/5/:/usr/lib/gcc/x86_64-linux-gnu/ | 65 | COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/5/:/usr/lib/gcc/x86_64-linux-gnu/5/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/5/:/usr/lib/gcc/x86_64-linux-gnu/ |
| 66 | LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/5/:/usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/5/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/5/../../../:/lib/:/usr/lib/ | 66 | LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/5/:/usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/5/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/5/../../../:/lib/:/usr/lib/ |
| 67 | -COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_6f5ef.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64' | ||
| 68 | -Linking C executable cmTC_6f5ef | ||
| 69 | -/usr/local/bin/cmake -E cmake_link_script CMakeFiles/cmTC_6f5ef.dir/link.txt --verbose=1 | ||
| 70 | -/usr/bin/cc -v -rdynamic CMakeFiles/cmTC_6f5ef.dir/CMakeCCompilerABI.c.o -o cmTC_6f5ef | 67 | +COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_75746.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64' |
| 68 | +Linking C executable cmTC_75746 | ||
| 69 | +/usr/local/bin/cmake -E cmake_link_script CMakeFiles/cmTC_75746.dir/link.txt --verbose=1 | ||
| 70 | +/usr/bin/cc -v -rdynamic CMakeFiles/cmTC_75746.dir/CMakeCCompilerABI.c.o -o cmTC_75746 | ||
| 71 | Using built-in specs. | 71 | Using built-in specs. |
| 72 | COLLECT_GCC=/usr/bin/cc | 72 | COLLECT_GCC=/usr/bin/cc |
| 73 | COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/5/lto-wrapper | 73 | COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/5/lto-wrapper |
| @@ -77,8 +77,8 @@ Thread model: posix | @@ -77,8 +77,8 @@ Thread model: posix | ||
| 77 | gcc version 5.4.0 20160609 (Ubuntu 5.4.0-6ubuntu1~16.04.12) | 77 | gcc version 5.4.0 20160609 (Ubuntu 5.4.0-6ubuntu1~16.04.12) |
| 78 | COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/5/:/usr/lib/gcc/x86_64-linux-gnu/5/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/5/:/usr/lib/gcc/x86_64-linux-gnu/ | 78 | COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/5/:/usr/lib/gcc/x86_64-linux-gnu/5/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/5/:/usr/lib/gcc/x86_64-linux-gnu/ |
| 79 | LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/5/:/usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/5/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/5/../../../:/lib/:/usr/lib/ | 79 | LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/5/:/usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/5/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/5/../../../:/lib/:/usr/lib/ |
| 80 | -COLLECT_GCC_OPTIONS='-v' '-rdynamic' '-o' 'cmTC_6f5ef' '-mtune=generic' '-march=x86-64' | ||
| 81 | - /usr/lib/gcc/x86_64-linux-gnu/5/collect2 -plugin /usr/lib/gcc/x86_64-linux-gnu/5/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/5/lto-wrapper -plugin-opt=-fresolution=/tmp/ccqJHMwf.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s --sysroot=/ --build-id --eh-frame-hdr -m elf_x86_64 --hash-style=gnu --as-needed -export-dynamic -dynamic-linker /lib64/ld-linux-x86-64.so.2 -z relro -o cmTC_6f5ef /usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/crt1.o /usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/5/crtbegin.o -L/usr/lib/gcc/x86_64-linux-gnu/5 -L/usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/5/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/5/../../.. CMakeFiles/cmTC_6f5ef.dir/CMakeCCompilerABI.c.o -lgcc --as-needed -lgcc_s --no-as-needed -lc -lgcc --as-needed -lgcc_s --no-as-needed /usr/lib/gcc/x86_64-linux-gnu/5/crtend.o /usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/crtn.o | 80 | +COLLECT_GCC_OPTIONS='-v' '-rdynamic' '-o' 'cmTC_75746' '-mtune=generic' '-march=x86-64' |
| 81 | + /usr/lib/gcc/x86_64-linux-gnu/5/collect2 -plugin /usr/lib/gcc/x86_64-linux-gnu/5/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/5/lto-wrapper -plugin-opt=-fresolution=/tmp/ccEQv1JE.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s --sysroot=/ --build-id --eh-frame-hdr -m elf_x86_64 --hash-style=gnu --as-needed -export-dynamic -dynamic-linker /lib64/ld-linux-x86-64.so.2 -z relro -o cmTC_75746 /usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/crt1.o /usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/5/crtbegin.o -L/usr/lib/gcc/x86_64-linux-gnu/5 -L/usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/5/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/5/../../.. CMakeFiles/cmTC_75746.dir/CMakeCCompilerABI.c.o -lgcc --as-needed -lgcc_s --no-as-needed -lc -lgcc --as-needed -lgcc_s --no-as-needed /usr/lib/gcc/x86_64-linux-gnu/5/crtend.o /usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/crtn.o | ||
| 82 | make[1]: Leaving directory '/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/CMakeTmp' | 82 | make[1]: Leaving directory '/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/CMakeTmp' |
| 83 | 83 | ||
| 84 | 84 | ||
| @@ -104,18 +104,18 @@ Parsed C implicit link information from above output: | @@ -104,18 +104,18 @@ Parsed C implicit link information from above output: | ||
| 104 | link line regex: [^( *|.*[/\])(ld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)] | 104 | link line regex: [^( *|.*[/\])(ld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)] |
| 105 | ignore line: [Change Dir: /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/CMakeTmp] | 105 | ignore line: [Change Dir: /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/CMakeTmp] |
| 106 | ignore line: [] | 106 | ignore line: [] |
| 107 | - ignore line: [Run Build Command(s):/usr/bin/make -f Makefile cmTC_6f5ef/fast && /usr/bin/make -f CMakeFiles/cmTC_6f5ef.dir/build.make CMakeFiles/cmTC_6f5ef.dir/build] | 107 | + ignore line: [Run Build Command(s):/usr/bin/make -f Makefile cmTC_75746/fast && /usr/bin/make -f CMakeFiles/cmTC_75746.dir/build.make CMakeFiles/cmTC_75746.dir/build] |
| 108 | ignore line: [make[1]: Entering directory '/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/CMakeTmp'] | 108 | ignore line: [make[1]: Entering directory '/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/CMakeTmp'] |
| 109 | - ignore line: [Building C object CMakeFiles/cmTC_6f5ef.dir/CMakeCCompilerABI.c.o] | ||
| 110 | - ignore line: [/usr/bin/cc -v -o CMakeFiles/cmTC_6f5ef.dir/CMakeCCompilerABI.c.o -c /usr/local/share/cmake-3.24/Modules/CMakeCCompilerABI.c] | 109 | + ignore line: [Building C object CMakeFiles/cmTC_75746.dir/CMakeCCompilerABI.c.o] |
| 110 | + ignore line: [/usr/bin/cc -v -o CMakeFiles/cmTC_75746.dir/CMakeCCompilerABI.c.o -c /usr/local/share/cmake-3.24/Modules/CMakeCCompilerABI.c] | ||
| 111 | ignore line: [Using built-in specs.] | 111 | ignore line: [Using built-in specs.] |
| 112 | ignore line: [COLLECT_GCC=/usr/bin/cc] | 112 | ignore line: [COLLECT_GCC=/usr/bin/cc] |
| 113 | ignore line: [Target: x86_64-linux-gnu] | 113 | ignore line: [Target: x86_64-linux-gnu] |
| 114 | ignore line: [Configured with: ../src/configure -v --with-pkgversion='Ubuntu 5.4.0-6ubuntu1~16.04.12' --with-bugurl=file:///usr/share/doc/gcc-5/README.Bugs --enable-languages=c ada c++ java go d fortran objc obj-c++ --prefix=/usr --program-suffix=-5 --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --with-sysroot=/ --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-libmpx --enable-plugin --with-system-zlib --disable-browser-plugin --enable-java-awt=gtk --enable-gtk-cairo --with-java-home=/usr/lib/jvm/java-1.5.0-gcj-5-amd64/jre --enable-java-home --with-jvm-root-dir=/usr/lib/jvm/java-1.5.0-gcj-5-amd64 --with-jvm-jar-dir=/usr/lib/jvm-exports/java-1.5.0-gcj-5-amd64 --with-arch-directory=amd64 --with-ecj-jar=/usr/share/java/eclipse-ecj.jar --enable-objc-gc --enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32 m64 mx32 --enable-multilib --with-tune=generic --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu] | 114 | ignore line: [Configured with: ../src/configure -v --with-pkgversion='Ubuntu 5.4.0-6ubuntu1~16.04.12' --with-bugurl=file:///usr/share/doc/gcc-5/README.Bugs --enable-languages=c ada c++ java go d fortran objc obj-c++ --prefix=/usr --program-suffix=-5 --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --with-sysroot=/ --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-libmpx --enable-plugin --with-system-zlib --disable-browser-plugin --enable-java-awt=gtk --enable-gtk-cairo --with-java-home=/usr/lib/jvm/java-1.5.0-gcj-5-amd64/jre --enable-java-home --with-jvm-root-dir=/usr/lib/jvm/java-1.5.0-gcj-5-amd64 --with-jvm-jar-dir=/usr/lib/jvm-exports/java-1.5.0-gcj-5-amd64 --with-arch-directory=amd64 --with-ecj-jar=/usr/share/java/eclipse-ecj.jar --enable-objc-gc --enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32 m64 mx32 --enable-multilib --with-tune=generic --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu] |
| 115 | ignore line: [Thread model: posix] | 115 | ignore line: [Thread model: posix] |
| 116 | ignore line: [gcc version 5.4.0 20160609 (Ubuntu 5.4.0-6ubuntu1~16.04.12) ] | 116 | ignore line: [gcc version 5.4.0 20160609 (Ubuntu 5.4.0-6ubuntu1~16.04.12) ] |
| 117 | - ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_6f5ef.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64'] | ||
| 118 | - ignore line: [ /usr/lib/gcc/x86_64-linux-gnu/5/cc1 -quiet -v -imultiarch x86_64-linux-gnu /usr/local/share/cmake-3.24/Modules/CMakeCCompilerABI.c -quiet -dumpbase CMakeCCompilerABI.c -mtune=generic -march=x86-64 -auxbase-strip CMakeFiles/cmTC_6f5ef.dir/CMakeCCompilerABI.c.o -version -fstack-protector-strong -Wformat -Wformat-security -o /tmp/cc23lNfe.s] | 117 | + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_75746.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64'] |
| 118 | + ignore line: [ /usr/lib/gcc/x86_64-linux-gnu/5/cc1 -quiet -v -imultiarch x86_64-linux-gnu /usr/local/share/cmake-3.24/Modules/CMakeCCompilerABI.c -quiet -dumpbase CMakeCCompilerABI.c -mtune=generic -march=x86-64 -auxbase-strip CMakeFiles/cmTC_75746.dir/CMakeCCompilerABI.c.o -version -fstack-protector-strong -Wformat -Wformat-security -o /tmp/ccLoxYGB.s] | ||
| 119 | ignore line: [GNU C11 (Ubuntu 5.4.0-6ubuntu1~16.04.12) version 5.4.0 20160609 (x86_64-linux-gnu)] | 119 | ignore line: [GNU C11 (Ubuntu 5.4.0-6ubuntu1~16.04.12) version 5.4.0 20160609 (x86_64-linux-gnu)] |
| 120 | ignore line: [ compiled by GNU C version 5.4.0 20160609 GMP version 6.1.0 MPFR version 3.1.4 MPC version 1.0.3] | 120 | ignore line: [ compiled by GNU C version 5.4.0 20160609 GMP version 6.1.0 MPFR version 3.1.4 MPC version 1.0.3] |
| 121 | ignore line: [warning: GMP header version 6.1.0 differs from library version 6.1.2.] | 121 | ignore line: [warning: GMP header version 6.1.0 differs from library version 6.1.2.] |
| @@ -135,15 +135,15 @@ Parsed C implicit link information from above output: | @@ -135,15 +135,15 @@ Parsed C implicit link information from above output: | ||
| 135 | ignore line: [warning: GMP header version 6.1.0 differs from library version 6.1.2.] | 135 | ignore line: [warning: GMP header version 6.1.0 differs from library version 6.1.2.] |
| 136 | ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072] | 136 | ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072] |
| 137 | ignore line: [Compiler executable checksum: 8087146d2ee737d238113fb57fabb1f2] | 137 | ignore line: [Compiler executable checksum: 8087146d2ee737d238113fb57fabb1f2] |
| 138 | - ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_6f5ef.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64'] | ||
| 139 | - ignore line: [ as -v --64 -o CMakeFiles/cmTC_6f5ef.dir/CMakeCCompilerABI.c.o /tmp/cc23lNfe.s] | 138 | + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_75746.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64'] |
| 139 | + ignore line: [ as -v --64 -o CMakeFiles/cmTC_75746.dir/CMakeCCompilerABI.c.o /tmp/ccLoxYGB.s] | ||
| 140 | ignore line: [GNU assembler version 2.26.1 (x86_64-linux-gnu) using BFD version (GNU Binutils for Ubuntu) 2.26.1] | 140 | ignore line: [GNU assembler version 2.26.1 (x86_64-linux-gnu) using BFD version (GNU Binutils for Ubuntu) 2.26.1] |
| 141 | ignore line: [COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/5/:/usr/lib/gcc/x86_64-linux-gnu/5/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/5/:/usr/lib/gcc/x86_64-linux-gnu/] | 141 | ignore line: [COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/5/:/usr/lib/gcc/x86_64-linux-gnu/5/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/5/:/usr/lib/gcc/x86_64-linux-gnu/] |
| 142 | ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/5/:/usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/5/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/5/../../../:/lib/:/usr/lib/] | 142 | ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/5/:/usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/5/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/5/../../../:/lib/:/usr/lib/] |
| 143 | - ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_6f5ef.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64'] | ||
| 144 | - ignore line: [Linking C executable cmTC_6f5ef] | ||
| 145 | - ignore line: [/usr/local/bin/cmake -E cmake_link_script CMakeFiles/cmTC_6f5ef.dir/link.txt --verbose=1] | ||
| 146 | - ignore line: [/usr/bin/cc -v -rdynamic CMakeFiles/cmTC_6f5ef.dir/CMakeCCompilerABI.c.o -o cmTC_6f5ef ] | 143 | + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_75746.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64'] |
| 144 | + ignore line: [Linking C executable cmTC_75746] | ||
| 145 | + ignore line: [/usr/local/bin/cmake -E cmake_link_script CMakeFiles/cmTC_75746.dir/link.txt --verbose=1] | ||
| 146 | + ignore line: [/usr/bin/cc -v -rdynamic CMakeFiles/cmTC_75746.dir/CMakeCCompilerABI.c.o -o cmTC_75746 ] | ||
| 147 | ignore line: [Using built-in specs.] | 147 | ignore line: [Using built-in specs.] |
| 148 | ignore line: [COLLECT_GCC=/usr/bin/cc] | 148 | ignore line: [COLLECT_GCC=/usr/bin/cc] |
| 149 | ignore line: [COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/5/lto-wrapper] | 149 | ignore line: [COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/5/lto-wrapper] |
| @@ -153,13 +153,13 @@ Parsed C implicit link information from above output: | @@ -153,13 +153,13 @@ Parsed C implicit link information from above output: | ||
| 153 | ignore line: [gcc version 5.4.0 20160609 (Ubuntu 5.4.0-6ubuntu1~16.04.12) ] | 153 | ignore line: [gcc version 5.4.0 20160609 (Ubuntu 5.4.0-6ubuntu1~16.04.12) ] |
| 154 | ignore line: [COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/5/:/usr/lib/gcc/x86_64-linux-gnu/5/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/5/:/usr/lib/gcc/x86_64-linux-gnu/] | 154 | ignore line: [COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/5/:/usr/lib/gcc/x86_64-linux-gnu/5/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/5/:/usr/lib/gcc/x86_64-linux-gnu/] |
| 155 | ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/5/:/usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/5/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/5/../../../:/lib/:/usr/lib/] | 155 | ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/5/:/usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/5/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/5/../../../:/lib/:/usr/lib/] |
| 156 | - ignore line: [COLLECT_GCC_OPTIONS='-v' '-rdynamic' '-o' 'cmTC_6f5ef' '-mtune=generic' '-march=x86-64'] | ||
| 157 | - link line: [ /usr/lib/gcc/x86_64-linux-gnu/5/collect2 -plugin /usr/lib/gcc/x86_64-linux-gnu/5/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/5/lto-wrapper -plugin-opt=-fresolution=/tmp/ccqJHMwf.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s --sysroot=/ --build-id --eh-frame-hdr -m elf_x86_64 --hash-style=gnu --as-needed -export-dynamic -dynamic-linker /lib64/ld-linux-x86-64.so.2 -z relro -o cmTC_6f5ef /usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/crt1.o /usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/5/crtbegin.o -L/usr/lib/gcc/x86_64-linux-gnu/5 -L/usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/5/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/5/../../.. CMakeFiles/cmTC_6f5ef.dir/CMakeCCompilerABI.c.o -lgcc --as-needed -lgcc_s --no-as-needed -lc -lgcc --as-needed -lgcc_s --no-as-needed /usr/lib/gcc/x86_64-linux-gnu/5/crtend.o /usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/crtn.o] | 156 | + ignore line: [COLLECT_GCC_OPTIONS='-v' '-rdynamic' '-o' 'cmTC_75746' '-mtune=generic' '-march=x86-64'] |
| 157 | + link line: [ /usr/lib/gcc/x86_64-linux-gnu/5/collect2 -plugin /usr/lib/gcc/x86_64-linux-gnu/5/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/5/lto-wrapper -plugin-opt=-fresolution=/tmp/ccEQv1JE.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s --sysroot=/ --build-id --eh-frame-hdr -m elf_x86_64 --hash-style=gnu --as-needed -export-dynamic -dynamic-linker /lib64/ld-linux-x86-64.so.2 -z relro -o cmTC_75746 /usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/crt1.o /usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/5/crtbegin.o -L/usr/lib/gcc/x86_64-linux-gnu/5 -L/usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/5/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/5/../../.. CMakeFiles/cmTC_75746.dir/CMakeCCompilerABI.c.o -lgcc --as-needed -lgcc_s --no-as-needed -lc -lgcc --as-needed -lgcc_s --no-as-needed /usr/lib/gcc/x86_64-linux-gnu/5/crtend.o /usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/crtn.o] | ||
| 158 | arg [/usr/lib/gcc/x86_64-linux-gnu/5/collect2] ==> ignore | 158 | arg [/usr/lib/gcc/x86_64-linux-gnu/5/collect2] ==> ignore |
| 159 | arg [-plugin] ==> ignore | 159 | arg [-plugin] ==> ignore |
| 160 | arg [/usr/lib/gcc/x86_64-linux-gnu/5/liblto_plugin.so] ==> ignore | 160 | arg [/usr/lib/gcc/x86_64-linux-gnu/5/liblto_plugin.so] ==> ignore |
| 161 | arg [-plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/5/lto-wrapper] ==> ignore | 161 | arg [-plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/5/lto-wrapper] ==> ignore |
| 162 | - arg [-plugin-opt=-fresolution=/tmp/ccqJHMwf.res] ==> ignore | 162 | + arg [-plugin-opt=-fresolution=/tmp/ccEQv1JE.res] ==> ignore |
| 163 | arg [-plugin-opt=-pass-through=-lgcc] ==> ignore | 163 | arg [-plugin-opt=-pass-through=-lgcc] ==> ignore |
| 164 | arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore | 164 | arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore |
| 165 | arg [-plugin-opt=-pass-through=-lc] ==> ignore | 165 | arg [-plugin-opt=-pass-through=-lc] ==> ignore |
| @@ -177,7 +177,7 @@ Parsed C implicit link information from above output: | @@ -177,7 +177,7 @@ Parsed C implicit link information from above output: | ||
| 177 | arg [/lib64/ld-linux-x86-64.so.2] ==> ignore | 177 | arg [/lib64/ld-linux-x86-64.so.2] ==> ignore |
| 178 | arg [-zrelro] ==> ignore | 178 | arg [-zrelro] ==> ignore |
| 179 | arg [-o] ==> ignore | 179 | arg [-o] ==> ignore |
| 180 | - arg [cmTC_6f5ef] ==> ignore | 180 | + arg [cmTC_75746] ==> ignore |
| 181 | arg [/usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/crt1.o] ==> obj [/usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/crt1.o] | 181 | arg [/usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/crt1.o] ==> obj [/usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/crt1.o] |
| 182 | arg [/usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/crti.o] ==> obj [/usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/crti.o] | 182 | arg [/usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/crti.o] ==> obj [/usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/crti.o] |
| 183 | arg [/usr/lib/gcc/x86_64-linux-gnu/5/crtbegin.o] ==> obj [/usr/lib/gcc/x86_64-linux-gnu/5/crtbegin.o] | 183 | arg [/usr/lib/gcc/x86_64-linux-gnu/5/crtbegin.o] ==> obj [/usr/lib/gcc/x86_64-linux-gnu/5/crtbegin.o] |
| @@ -189,7 +189,7 @@ Parsed C implicit link information from above output: | @@ -189,7 +189,7 @@ Parsed C implicit link information from above output: | ||
| 189 | arg [-L/usr/lib/x86_64-linux-gnu] ==> dir [/usr/lib/x86_64-linux-gnu] | 189 | arg [-L/usr/lib/x86_64-linux-gnu] ==> dir [/usr/lib/x86_64-linux-gnu] |
| 190 | arg [-L/usr/lib/../lib] ==> dir [/usr/lib/../lib] | 190 | arg [-L/usr/lib/../lib] ==> dir [/usr/lib/../lib] |
| 191 | arg [-L/usr/lib/gcc/x86_64-linux-gnu/5/../../..] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/5/../../..] | 191 | arg [-L/usr/lib/gcc/x86_64-linux-gnu/5/../../..] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/5/../../..] |
| 192 | - arg [CMakeFiles/cmTC_6f5ef.dir/CMakeCCompilerABI.c.o] ==> ignore | 192 | + arg [CMakeFiles/cmTC_75746.dir/CMakeCCompilerABI.c.o] ==> ignore |
| 193 | arg [-lgcc] ==> lib [gcc] | 193 | arg [-lgcc] ==> lib [gcc] |
| 194 | arg [--as-needed] ==> ignore | 194 | arg [--as-needed] ==> ignore |
| 195 | arg [-lgcc_s] ==> lib [gcc_s] | 195 | arg [-lgcc_s] ==> lib [gcc_s] |
| @@ -221,18 +221,18 @@ Parsed C implicit link information from above output: | @@ -221,18 +221,18 @@ Parsed C implicit link information from above output: | ||
| 221 | Detecting CXX compiler ABI info compiled with the following output: | 221 | Detecting CXX compiler ABI info compiled with the following output: |
| 222 | Change Dir: /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/CMakeTmp | 222 | Change Dir: /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/CMakeTmp |
| 223 | 223 | ||
| 224 | -Run Build Command(s):/usr/bin/make -f Makefile cmTC_b3074/fast && /usr/bin/make -f CMakeFiles/cmTC_b3074.dir/build.make CMakeFiles/cmTC_b3074.dir/build | 224 | +Run Build Command(s):/usr/bin/make -f Makefile cmTC_5e372/fast && /usr/bin/make -f CMakeFiles/cmTC_5e372.dir/build.make CMakeFiles/cmTC_5e372.dir/build |
| 225 | make[1]: Entering directory '/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/CMakeTmp' | 225 | make[1]: Entering directory '/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/CMakeTmp' |
| 226 | -Building CXX object CMakeFiles/cmTC_b3074.dir/CMakeCXXCompilerABI.cpp.o | ||
| 227 | -/usr/bin/c++ -v -o CMakeFiles/cmTC_b3074.dir/CMakeCXXCompilerABI.cpp.o -c /usr/local/share/cmake-3.24/Modules/CMakeCXXCompilerABI.cpp | 226 | +Building CXX object CMakeFiles/cmTC_5e372.dir/CMakeCXXCompilerABI.cpp.o |
| 227 | +/usr/bin/c++ -v -o CMakeFiles/cmTC_5e372.dir/CMakeCXXCompilerABI.cpp.o -c /usr/local/share/cmake-3.24/Modules/CMakeCXXCompilerABI.cpp | ||
| 228 | Using built-in specs. | 228 | Using built-in specs. |
| 229 | COLLECT_GCC=/usr/bin/c++ | 229 | COLLECT_GCC=/usr/bin/c++ |
| 230 | Target: x86_64-linux-gnu | 230 | Target: x86_64-linux-gnu |
| 231 | Configured with: ../src/configure -v --with-pkgversion='Ubuntu 5.4.0-6ubuntu1~16.04.12' --with-bugurl=file:///usr/share/doc/gcc-5/README.Bugs --enable-languages=c,ada,c++,java,go,d,fortran,objc,obj-c++ --prefix=/usr --program-suffix=-5 --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --with-sysroot=/ --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-libmpx --enable-plugin --with-system-zlib --disable-browser-plugin --enable-java-awt=gtk --enable-gtk-cairo --with-java-home=/usr/lib/jvm/java-1.5.0-gcj-5-amd64/jre --enable-java-home --with-jvm-root-dir=/usr/lib/jvm/java-1.5.0-gcj-5-amd64 --with-jvm-jar-dir=/usr/lib/jvm-exports/java-1.5.0-gcj-5-amd64 --with-arch-directory=amd64 --with-ecj-jar=/usr/share/java/eclipse-ecj.jar --enable-objc-gc --enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu | 231 | Configured with: ../src/configure -v --with-pkgversion='Ubuntu 5.4.0-6ubuntu1~16.04.12' --with-bugurl=file:///usr/share/doc/gcc-5/README.Bugs --enable-languages=c,ada,c++,java,go,d,fortran,objc,obj-c++ --prefix=/usr --program-suffix=-5 --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --with-sysroot=/ --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-libmpx --enable-plugin --with-system-zlib --disable-browser-plugin --enable-java-awt=gtk --enable-gtk-cairo --with-java-home=/usr/lib/jvm/java-1.5.0-gcj-5-amd64/jre --enable-java-home --with-jvm-root-dir=/usr/lib/jvm/java-1.5.0-gcj-5-amd64 --with-jvm-jar-dir=/usr/lib/jvm-exports/java-1.5.0-gcj-5-amd64 --with-arch-directory=amd64 --with-ecj-jar=/usr/share/java/eclipse-ecj.jar --enable-objc-gc --enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu |
| 232 | Thread model: posix | 232 | Thread model: posix |
| 233 | gcc version 5.4.0 20160609 (Ubuntu 5.4.0-6ubuntu1~16.04.12) | 233 | gcc version 5.4.0 20160609 (Ubuntu 5.4.0-6ubuntu1~16.04.12) |
| 234 | -COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_b3074.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64' | ||
| 235 | - /usr/lib/gcc/x86_64-linux-gnu/5/cc1plus -quiet -v -imultiarch x86_64-linux-gnu -D_GNU_SOURCE /usr/local/share/cmake-3.24/Modules/CMakeCXXCompilerABI.cpp -quiet -dumpbase CMakeCXXCompilerABI.cpp -mtune=generic -march=x86-64 -auxbase-strip CMakeFiles/cmTC_b3074.dir/CMakeCXXCompilerABI.cpp.o -version -fstack-protector-strong -Wformat -Wformat-security -o /tmp/cciDc7fJ.s | 234 | +COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_5e372.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64' |
| 235 | + /usr/lib/gcc/x86_64-linux-gnu/5/cc1plus -quiet -v -imultiarch x86_64-linux-gnu -D_GNU_SOURCE /usr/local/share/cmake-3.24/Modules/CMakeCXXCompilerABI.cpp -quiet -dumpbase CMakeCXXCompilerABI.cpp -mtune=generic -march=x86-64 -auxbase-strip CMakeFiles/cmTC_5e372.dir/CMakeCXXCompilerABI.cpp.o -version -fstack-protector-strong -Wformat -Wformat-security -o /tmp/ccZjFFIQ.s | ||
| 236 | GNU C++ (Ubuntu 5.4.0-6ubuntu1~16.04.12) version 5.4.0 20160609 (x86_64-linux-gnu) | 236 | GNU C++ (Ubuntu 5.4.0-6ubuntu1~16.04.12) version 5.4.0 20160609 (x86_64-linux-gnu) |
| 237 | compiled by GNU C version 5.4.0 20160609, GMP version 6.1.0, MPFR version 3.1.4, MPC version 1.0.3 | 237 | compiled by GNU C version 5.4.0 20160609, GMP version 6.1.0, MPFR version 3.1.4, MPC version 1.0.3 |
| 238 | warning: GMP header version 6.1.0 differs from library version 6.1.2. | 238 | warning: GMP header version 6.1.0 differs from library version 6.1.2. |
| @@ -256,15 +256,15 @@ GNU C++ (Ubuntu 5.4.0-6ubuntu1~16.04.12) version 5.4.0 20160609 (x86_64-linux-gn | @@ -256,15 +256,15 @@ GNU C++ (Ubuntu 5.4.0-6ubuntu1~16.04.12) version 5.4.0 20160609 (x86_64-linux-gn | ||
| 256 | warning: GMP header version 6.1.0 differs from library version 6.1.2. | 256 | warning: GMP header version 6.1.0 differs from library version 6.1.2. |
| 257 | GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 | 257 | GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 |
| 258 | Compiler executable checksum: 85af4995304287cdd19cfa43cf5d6cf1 | 258 | Compiler executable checksum: 85af4995304287cdd19cfa43cf5d6cf1 |
| 259 | -COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_b3074.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64' | ||
| 260 | - as -v --64 -o CMakeFiles/cmTC_b3074.dir/CMakeCXXCompilerABI.cpp.o /tmp/cciDc7fJ.s | 259 | +COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_5e372.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64' |
| 260 | + as -v --64 -o CMakeFiles/cmTC_5e372.dir/CMakeCXXCompilerABI.cpp.o /tmp/ccZjFFIQ.s | ||
| 261 | GNU assembler version 2.26.1 (x86_64-linux-gnu) using BFD version (GNU Binutils for Ubuntu) 2.26.1 | 261 | GNU assembler version 2.26.1 (x86_64-linux-gnu) using BFD version (GNU Binutils for Ubuntu) 2.26.1 |
| 262 | COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/5/:/usr/lib/gcc/x86_64-linux-gnu/5/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/5/:/usr/lib/gcc/x86_64-linux-gnu/ | 262 | COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/5/:/usr/lib/gcc/x86_64-linux-gnu/5/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/5/:/usr/lib/gcc/x86_64-linux-gnu/ |
| 263 | LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/5/:/usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/5/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/5/../../../:/lib/:/usr/lib/ | 263 | LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/5/:/usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/5/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/5/../../../:/lib/:/usr/lib/ |
| 264 | -COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_b3074.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64' | ||
| 265 | -Linking CXX executable cmTC_b3074 | ||
| 266 | -/usr/local/bin/cmake -E cmake_link_script CMakeFiles/cmTC_b3074.dir/link.txt --verbose=1 | ||
| 267 | -/usr/bin/c++ -v -rdynamic CMakeFiles/cmTC_b3074.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_b3074 | 264 | +COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_5e372.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64' |
| 265 | +Linking CXX executable cmTC_5e372 | ||
| 266 | +/usr/local/bin/cmake -E cmake_link_script CMakeFiles/cmTC_5e372.dir/link.txt --verbose=1 | ||
| 267 | +/usr/bin/c++ -v -rdynamic CMakeFiles/cmTC_5e372.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_5e372 | ||
| 268 | Using built-in specs. | 268 | Using built-in specs. |
| 269 | COLLECT_GCC=/usr/bin/c++ | 269 | COLLECT_GCC=/usr/bin/c++ |
| 270 | COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/5/lto-wrapper | 270 | COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/5/lto-wrapper |
| @@ -274,8 +274,8 @@ Thread model: posix | @@ -274,8 +274,8 @@ Thread model: posix | ||
| 274 | gcc version 5.4.0 20160609 (Ubuntu 5.4.0-6ubuntu1~16.04.12) | 274 | gcc version 5.4.0 20160609 (Ubuntu 5.4.0-6ubuntu1~16.04.12) |
| 275 | COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/5/:/usr/lib/gcc/x86_64-linux-gnu/5/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/5/:/usr/lib/gcc/x86_64-linux-gnu/ | 275 | COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/5/:/usr/lib/gcc/x86_64-linux-gnu/5/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/5/:/usr/lib/gcc/x86_64-linux-gnu/ |
| 276 | LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/5/:/usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/5/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/5/../../../:/lib/:/usr/lib/ | 276 | LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/5/:/usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/5/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/5/../../../:/lib/:/usr/lib/ |
| 277 | -COLLECT_GCC_OPTIONS='-v' '-rdynamic' '-o' 'cmTC_b3074' '-shared-libgcc' '-mtune=generic' '-march=x86-64' | ||
| 278 | - /usr/lib/gcc/x86_64-linux-gnu/5/collect2 -plugin /usr/lib/gcc/x86_64-linux-gnu/5/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/5/lto-wrapper -plugin-opt=-fresolution=/tmp/ccRyMthP.res -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc --sysroot=/ --build-id --eh-frame-hdr -m elf_x86_64 --hash-style=gnu --as-needed -export-dynamic -dynamic-linker /lib64/ld-linux-x86-64.so.2 -z relro -o cmTC_b3074 /usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/crt1.o /usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/5/crtbegin.o -L/usr/lib/gcc/x86_64-linux-gnu/5 -L/usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/5/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/5/../../.. CMakeFiles/cmTC_b3074.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm -lgcc_s -lgcc -lc -lgcc_s -lgcc /usr/lib/gcc/x86_64-linux-gnu/5/crtend.o /usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/crtn.o | 277 | +COLLECT_GCC_OPTIONS='-v' '-rdynamic' '-o' 'cmTC_5e372' '-shared-libgcc' '-mtune=generic' '-march=x86-64' |
| 278 | + /usr/lib/gcc/x86_64-linux-gnu/5/collect2 -plugin /usr/lib/gcc/x86_64-linux-gnu/5/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/5/lto-wrapper -plugin-opt=-fresolution=/tmp/cc91ymQT.res -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc --sysroot=/ --build-id --eh-frame-hdr -m elf_x86_64 --hash-style=gnu --as-needed -export-dynamic -dynamic-linker /lib64/ld-linux-x86-64.so.2 -z relro -o cmTC_5e372 /usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/crt1.o /usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/5/crtbegin.o -L/usr/lib/gcc/x86_64-linux-gnu/5 -L/usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/5/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/5/../../.. CMakeFiles/cmTC_5e372.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm -lgcc_s -lgcc -lc -lgcc_s -lgcc /usr/lib/gcc/x86_64-linux-gnu/5/crtend.o /usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/crtn.o | ||
| 279 | make[1]: Leaving directory '/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/CMakeTmp' | 279 | make[1]: Leaving directory '/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/CMakeTmp' |
| 280 | 280 | ||
| 281 | 281 | ||
| @@ -307,18 +307,18 @@ Parsed CXX implicit link information from above output: | @@ -307,18 +307,18 @@ Parsed CXX implicit link information from above output: | ||
| 307 | link line regex: [^( *|.*[/\])(ld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)] | 307 | link line regex: [^( *|.*[/\])(ld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)] |
| 308 | ignore line: [Change Dir: /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/CMakeTmp] | 308 | ignore line: [Change Dir: /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/CMakeTmp] |
| 309 | ignore line: [] | 309 | ignore line: [] |
| 310 | - ignore line: [Run Build Command(s):/usr/bin/make -f Makefile cmTC_b3074/fast && /usr/bin/make -f CMakeFiles/cmTC_b3074.dir/build.make CMakeFiles/cmTC_b3074.dir/build] | 310 | + ignore line: [Run Build Command(s):/usr/bin/make -f Makefile cmTC_5e372/fast && /usr/bin/make -f CMakeFiles/cmTC_5e372.dir/build.make CMakeFiles/cmTC_5e372.dir/build] |
| 311 | ignore line: [make[1]: Entering directory '/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/CMakeTmp'] | 311 | ignore line: [make[1]: Entering directory '/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/CMakeTmp'] |
| 312 | - ignore line: [Building CXX object CMakeFiles/cmTC_b3074.dir/CMakeCXXCompilerABI.cpp.o] | ||
| 313 | - ignore line: [/usr/bin/c++ -v -o CMakeFiles/cmTC_b3074.dir/CMakeCXXCompilerABI.cpp.o -c /usr/local/share/cmake-3.24/Modules/CMakeCXXCompilerABI.cpp] | 312 | + ignore line: [Building CXX object CMakeFiles/cmTC_5e372.dir/CMakeCXXCompilerABI.cpp.o] |
| 313 | + ignore line: [/usr/bin/c++ -v -o CMakeFiles/cmTC_5e372.dir/CMakeCXXCompilerABI.cpp.o -c /usr/local/share/cmake-3.24/Modules/CMakeCXXCompilerABI.cpp] | ||
| 314 | ignore line: [Using built-in specs.] | 314 | ignore line: [Using built-in specs.] |
| 315 | ignore line: [COLLECT_GCC=/usr/bin/c++] | 315 | ignore line: [COLLECT_GCC=/usr/bin/c++] |
| 316 | ignore line: [Target: x86_64-linux-gnu] | 316 | ignore line: [Target: x86_64-linux-gnu] |
| 317 | ignore line: [Configured with: ../src/configure -v --with-pkgversion='Ubuntu 5.4.0-6ubuntu1~16.04.12' --with-bugurl=file:///usr/share/doc/gcc-5/README.Bugs --enable-languages=c ada c++ java go d fortran objc obj-c++ --prefix=/usr --program-suffix=-5 --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --with-sysroot=/ --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-libmpx --enable-plugin --with-system-zlib --disable-browser-plugin --enable-java-awt=gtk --enable-gtk-cairo --with-java-home=/usr/lib/jvm/java-1.5.0-gcj-5-amd64/jre --enable-java-home --with-jvm-root-dir=/usr/lib/jvm/java-1.5.0-gcj-5-amd64 --with-jvm-jar-dir=/usr/lib/jvm-exports/java-1.5.0-gcj-5-amd64 --with-arch-directory=amd64 --with-ecj-jar=/usr/share/java/eclipse-ecj.jar --enable-objc-gc --enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32 m64 mx32 --enable-multilib --with-tune=generic --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu] | 317 | ignore line: [Configured with: ../src/configure -v --with-pkgversion='Ubuntu 5.4.0-6ubuntu1~16.04.12' --with-bugurl=file:///usr/share/doc/gcc-5/README.Bugs --enable-languages=c ada c++ java go d fortran objc obj-c++ --prefix=/usr --program-suffix=-5 --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --with-sysroot=/ --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-libmpx --enable-plugin --with-system-zlib --disable-browser-plugin --enable-java-awt=gtk --enable-gtk-cairo --with-java-home=/usr/lib/jvm/java-1.5.0-gcj-5-amd64/jre --enable-java-home --with-jvm-root-dir=/usr/lib/jvm/java-1.5.0-gcj-5-amd64 --with-jvm-jar-dir=/usr/lib/jvm-exports/java-1.5.0-gcj-5-amd64 --with-arch-directory=amd64 --with-ecj-jar=/usr/share/java/eclipse-ecj.jar --enable-objc-gc --enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32 m64 mx32 --enable-multilib --with-tune=generic --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu] |
| 318 | ignore line: [Thread model: posix] | 318 | ignore line: [Thread model: posix] |
| 319 | ignore line: [gcc version 5.4.0 20160609 (Ubuntu 5.4.0-6ubuntu1~16.04.12) ] | 319 | ignore line: [gcc version 5.4.0 20160609 (Ubuntu 5.4.0-6ubuntu1~16.04.12) ] |
| 320 | - ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_b3074.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64'] | ||
| 321 | - ignore line: [ /usr/lib/gcc/x86_64-linux-gnu/5/cc1plus -quiet -v -imultiarch x86_64-linux-gnu -D_GNU_SOURCE /usr/local/share/cmake-3.24/Modules/CMakeCXXCompilerABI.cpp -quiet -dumpbase CMakeCXXCompilerABI.cpp -mtune=generic -march=x86-64 -auxbase-strip CMakeFiles/cmTC_b3074.dir/CMakeCXXCompilerABI.cpp.o -version -fstack-protector-strong -Wformat -Wformat-security -o /tmp/cciDc7fJ.s] | 320 | + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_5e372.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64'] |
| 321 | + ignore line: [ /usr/lib/gcc/x86_64-linux-gnu/5/cc1plus -quiet -v -imultiarch x86_64-linux-gnu -D_GNU_SOURCE /usr/local/share/cmake-3.24/Modules/CMakeCXXCompilerABI.cpp -quiet -dumpbase CMakeCXXCompilerABI.cpp -mtune=generic -march=x86-64 -auxbase-strip CMakeFiles/cmTC_5e372.dir/CMakeCXXCompilerABI.cpp.o -version -fstack-protector-strong -Wformat -Wformat-security -o /tmp/ccZjFFIQ.s] | ||
| 322 | ignore line: [GNU C++ (Ubuntu 5.4.0-6ubuntu1~16.04.12) version 5.4.0 20160609 (x86_64-linux-gnu)] | 322 | ignore line: [GNU C++ (Ubuntu 5.4.0-6ubuntu1~16.04.12) version 5.4.0 20160609 (x86_64-linux-gnu)] |
| 323 | ignore line: [ compiled by GNU C version 5.4.0 20160609 GMP version 6.1.0 MPFR version 3.1.4 MPC version 1.0.3] | 323 | ignore line: [ compiled by GNU C version 5.4.0 20160609 GMP version 6.1.0 MPFR version 3.1.4 MPC version 1.0.3] |
| 324 | ignore line: [warning: GMP header version 6.1.0 differs from library version 6.1.2.] | 324 | ignore line: [warning: GMP header version 6.1.0 differs from library version 6.1.2.] |
| @@ -342,15 +342,15 @@ Parsed CXX implicit link information from above output: | @@ -342,15 +342,15 @@ Parsed CXX implicit link information from above output: | ||
| 342 | ignore line: [warning: GMP header version 6.1.0 differs from library version 6.1.2.] | 342 | ignore line: [warning: GMP header version 6.1.0 differs from library version 6.1.2.] |
| 343 | ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072] | 343 | ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072] |
| 344 | ignore line: [Compiler executable checksum: 85af4995304287cdd19cfa43cf5d6cf1] | 344 | ignore line: [Compiler executable checksum: 85af4995304287cdd19cfa43cf5d6cf1] |
| 345 | - ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_b3074.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64'] | ||
| 346 | - ignore line: [ as -v --64 -o CMakeFiles/cmTC_b3074.dir/CMakeCXXCompilerABI.cpp.o /tmp/cciDc7fJ.s] | 345 | + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_5e372.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64'] |
| 346 | + ignore line: [ as -v --64 -o CMakeFiles/cmTC_5e372.dir/CMakeCXXCompilerABI.cpp.o /tmp/ccZjFFIQ.s] | ||
| 347 | ignore line: [GNU assembler version 2.26.1 (x86_64-linux-gnu) using BFD version (GNU Binutils for Ubuntu) 2.26.1] | 347 | ignore line: [GNU assembler version 2.26.1 (x86_64-linux-gnu) using BFD version (GNU Binutils for Ubuntu) 2.26.1] |
| 348 | ignore line: [COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/5/:/usr/lib/gcc/x86_64-linux-gnu/5/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/5/:/usr/lib/gcc/x86_64-linux-gnu/] | 348 | ignore line: [COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/5/:/usr/lib/gcc/x86_64-linux-gnu/5/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/5/:/usr/lib/gcc/x86_64-linux-gnu/] |
| 349 | ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/5/:/usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/5/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/5/../../../:/lib/:/usr/lib/] | 349 | ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/5/:/usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/5/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/5/../../../:/lib/:/usr/lib/] |
| 350 | - ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_b3074.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64'] | ||
| 351 | - ignore line: [Linking CXX executable cmTC_b3074] | ||
| 352 | - ignore line: [/usr/local/bin/cmake -E cmake_link_script CMakeFiles/cmTC_b3074.dir/link.txt --verbose=1] | ||
| 353 | - ignore line: [/usr/bin/c++ -v -rdynamic CMakeFiles/cmTC_b3074.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_b3074 ] | 350 | + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_5e372.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64'] |
| 351 | + ignore line: [Linking CXX executable cmTC_5e372] | ||
| 352 | + ignore line: [/usr/local/bin/cmake -E cmake_link_script CMakeFiles/cmTC_5e372.dir/link.txt --verbose=1] | ||
| 353 | + ignore line: [/usr/bin/c++ -v -rdynamic CMakeFiles/cmTC_5e372.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_5e372 ] | ||
| 354 | ignore line: [Using built-in specs.] | 354 | ignore line: [Using built-in specs.] |
| 355 | ignore line: [COLLECT_GCC=/usr/bin/c++] | 355 | ignore line: [COLLECT_GCC=/usr/bin/c++] |
| 356 | ignore line: [COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/5/lto-wrapper] | 356 | ignore line: [COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/5/lto-wrapper] |
| @@ -360,13 +360,13 @@ Parsed CXX implicit link information from above output: | @@ -360,13 +360,13 @@ Parsed CXX implicit link information from above output: | ||
| 360 | ignore line: [gcc version 5.4.0 20160609 (Ubuntu 5.4.0-6ubuntu1~16.04.12) ] | 360 | ignore line: [gcc version 5.4.0 20160609 (Ubuntu 5.4.0-6ubuntu1~16.04.12) ] |
| 361 | ignore line: [COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/5/:/usr/lib/gcc/x86_64-linux-gnu/5/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/5/:/usr/lib/gcc/x86_64-linux-gnu/] | 361 | ignore line: [COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/5/:/usr/lib/gcc/x86_64-linux-gnu/5/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/5/:/usr/lib/gcc/x86_64-linux-gnu/] |
| 362 | ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/5/:/usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/5/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/5/../../../:/lib/:/usr/lib/] | 362 | ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/5/:/usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/5/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/5/../../../:/lib/:/usr/lib/] |
| 363 | - ignore line: [COLLECT_GCC_OPTIONS='-v' '-rdynamic' '-o' 'cmTC_b3074' '-shared-libgcc' '-mtune=generic' '-march=x86-64'] | ||
| 364 | - link line: [ /usr/lib/gcc/x86_64-linux-gnu/5/collect2 -plugin /usr/lib/gcc/x86_64-linux-gnu/5/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/5/lto-wrapper -plugin-opt=-fresolution=/tmp/ccRyMthP.res -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc --sysroot=/ --build-id --eh-frame-hdr -m elf_x86_64 --hash-style=gnu --as-needed -export-dynamic -dynamic-linker /lib64/ld-linux-x86-64.so.2 -z relro -o cmTC_b3074 /usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/crt1.o /usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/5/crtbegin.o -L/usr/lib/gcc/x86_64-linux-gnu/5 -L/usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/5/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/5/../../.. CMakeFiles/cmTC_b3074.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm -lgcc_s -lgcc -lc -lgcc_s -lgcc /usr/lib/gcc/x86_64-linux-gnu/5/crtend.o /usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/crtn.o] | 363 | + ignore line: [COLLECT_GCC_OPTIONS='-v' '-rdynamic' '-o' 'cmTC_5e372' '-shared-libgcc' '-mtune=generic' '-march=x86-64'] |
| 364 | + link line: [ /usr/lib/gcc/x86_64-linux-gnu/5/collect2 -plugin /usr/lib/gcc/x86_64-linux-gnu/5/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/5/lto-wrapper -plugin-opt=-fresolution=/tmp/cc91ymQT.res -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc --sysroot=/ --build-id --eh-frame-hdr -m elf_x86_64 --hash-style=gnu --as-needed -export-dynamic -dynamic-linker /lib64/ld-linux-x86-64.so.2 -z relro -o cmTC_5e372 /usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/crt1.o /usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/5/crtbegin.o -L/usr/lib/gcc/x86_64-linux-gnu/5 -L/usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/5/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/5/../../.. CMakeFiles/cmTC_5e372.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm -lgcc_s -lgcc -lc -lgcc_s -lgcc /usr/lib/gcc/x86_64-linux-gnu/5/crtend.o /usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/crtn.o] | ||
| 365 | arg [/usr/lib/gcc/x86_64-linux-gnu/5/collect2] ==> ignore | 365 | arg [/usr/lib/gcc/x86_64-linux-gnu/5/collect2] ==> ignore |
| 366 | arg [-plugin] ==> ignore | 366 | arg [-plugin] ==> ignore |
| 367 | arg [/usr/lib/gcc/x86_64-linux-gnu/5/liblto_plugin.so] ==> ignore | 367 | arg [/usr/lib/gcc/x86_64-linux-gnu/5/liblto_plugin.so] ==> ignore |
| 368 | arg [-plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/5/lto-wrapper] ==> ignore | 368 | arg [-plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/5/lto-wrapper] ==> ignore |
| 369 | - arg [-plugin-opt=-fresolution=/tmp/ccRyMthP.res] ==> ignore | 369 | + arg [-plugin-opt=-fresolution=/tmp/cc91ymQT.res] ==> ignore |
| 370 | arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore | 370 | arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore |
| 371 | arg [-plugin-opt=-pass-through=-lgcc] ==> ignore | 371 | arg [-plugin-opt=-pass-through=-lgcc] ==> ignore |
| 372 | arg [-plugin-opt=-pass-through=-lc] ==> ignore | 372 | arg [-plugin-opt=-pass-through=-lc] ==> ignore |
| @@ -384,7 +384,7 @@ Parsed CXX implicit link information from above output: | @@ -384,7 +384,7 @@ Parsed CXX implicit link information from above output: | ||
| 384 | arg [/lib64/ld-linux-x86-64.so.2] ==> ignore | 384 | arg [/lib64/ld-linux-x86-64.so.2] ==> ignore |
| 385 | arg [-zrelro] ==> ignore | 385 | arg [-zrelro] ==> ignore |
| 386 | arg [-o] ==> ignore | 386 | arg [-o] ==> ignore |
| 387 | - arg [cmTC_b3074] ==> ignore | 387 | + arg [cmTC_5e372] ==> ignore |
| 388 | arg [/usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/crt1.o] ==> obj [/usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/crt1.o] | 388 | arg [/usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/crt1.o] ==> obj [/usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/crt1.o] |
| 389 | arg [/usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/crti.o] ==> obj [/usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/crti.o] | 389 | arg [/usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/crti.o] ==> obj [/usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/crti.o] |
| 390 | arg [/usr/lib/gcc/x86_64-linux-gnu/5/crtbegin.o] ==> obj [/usr/lib/gcc/x86_64-linux-gnu/5/crtbegin.o] | 390 | arg [/usr/lib/gcc/x86_64-linux-gnu/5/crtbegin.o] ==> obj [/usr/lib/gcc/x86_64-linux-gnu/5/crtbegin.o] |
| @@ -396,7 +396,7 @@ Parsed CXX implicit link information from above output: | @@ -396,7 +396,7 @@ Parsed CXX implicit link information from above output: | ||
| 396 | arg [-L/usr/lib/x86_64-linux-gnu] ==> dir [/usr/lib/x86_64-linux-gnu] | 396 | arg [-L/usr/lib/x86_64-linux-gnu] ==> dir [/usr/lib/x86_64-linux-gnu] |
| 397 | arg [-L/usr/lib/../lib] ==> dir [/usr/lib/../lib] | 397 | arg [-L/usr/lib/../lib] ==> dir [/usr/lib/../lib] |
| 398 | arg [-L/usr/lib/gcc/x86_64-linux-gnu/5/../../..] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/5/../../..] | 398 | arg [-L/usr/lib/gcc/x86_64-linux-gnu/5/../../..] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/5/../../..] |
| 399 | - arg [CMakeFiles/cmTC_b3074.dir/CMakeCXXCompilerABI.cpp.o] ==> ignore | 399 | + arg [CMakeFiles/cmTC_5e372.dir/CMakeCXXCompilerABI.cpp.o] ==> ignore |
| 400 | arg [-lstdc++] ==> lib [stdc++] | 400 | arg [-lstdc++] ==> lib [stdc++] |
| 401 | arg [-lm] ==> lib [m] | 401 | arg [-lm] ==> lib [m] |
| 402 | arg [-lgcc_s] ==> lib [gcc_s] | 402 | arg [-lgcc_s] ==> lib [gcc_s] |
| @@ -777,6 +777,30 @@ mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/BaseConfig.c.s: | @@ -777,6 +777,30 @@ mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/BaseConfig.c.s: | ||
| 777 | $(MAKE) $(MAKESILENT) -f CMakeFiles/ATTENTION_APP.dir/build.make CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/BaseConfig.c.s | 777 | $(MAKE) $(MAKESILENT) -f CMakeFiles/ATTENTION_APP.dir/build.make CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/BaseConfig.c.s |
| 778 | .PHONY : mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/BaseConfig.c.s | 778 | .PHONY : mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/BaseConfig.c.s |
| 779 | 779 | ||
| 780 | +mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_U3_series/JZ_U3/JZ_u3.o: mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_U3_series/JZ_U3/JZ_u3.c.o | ||
| 781 | +.PHONY : mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_U3_series/JZ_U3/JZ_u3.o | ||
| 782 | + | ||
| 783 | +# target to build an object file | ||
| 784 | +mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_U3_series/JZ_U3/JZ_u3.c.o: | ||
| 785 | + $(MAKE) $(MAKESILENT) -f CMakeFiles/ATTENTION_APP.dir/build.make CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_U3_series/JZ_U3/JZ_u3.c.o | ||
| 786 | +.PHONY : mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_U3_series/JZ_U3/JZ_u3.c.o | ||
| 787 | + | ||
| 788 | +mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_U3_series/JZ_U3/JZ_u3.i: mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_U3_series/JZ_U3/JZ_u3.c.i | ||
| 789 | +.PHONY : mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_U3_series/JZ_U3/JZ_u3.i | ||
| 790 | + | ||
| 791 | +# target to preprocess a source file | ||
| 792 | +mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_U3_series/JZ_U3/JZ_u3.c.i: | ||
| 793 | + $(MAKE) $(MAKESILENT) -f CMakeFiles/ATTENTION_APP.dir/build.make CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_U3_series/JZ_U3/JZ_u3.c.i | ||
| 794 | +.PHONY : mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_U3_series/JZ_U3/JZ_u3.c.i | ||
| 795 | + | ||
| 796 | +mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_U3_series/JZ_U3/JZ_u3.s: mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_U3_series/JZ_U3/JZ_u3.c.s | ||
| 797 | +.PHONY : mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_U3_series/JZ_U3/JZ_u3.s | ||
| 798 | + | ||
| 799 | +# target to generate assembly for a file | ||
| 800 | +mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_U3_series/JZ_U3/JZ_u3.c.s: | ||
| 801 | + $(MAKE) $(MAKESILENT) -f CMakeFiles/ATTENTION_APP.dir/build.make CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_U3_series/JZ_U3/JZ_u3.c.s | ||
| 802 | +.PHONY : mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_U3_series/JZ_U3/JZ_u3.c.s | ||
| 803 | + | ||
| 780 | mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/ParamterParsing.o: mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/ParamterParsing.c.o | 804 | mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/ParamterParsing.o: mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/ParamterParsing.c.o |
| 781 | .PHONY : mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/ParamterParsing.o | 805 | .PHONY : mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/ParamterParsing.o |
| 782 | 806 | ||
| @@ -1425,29 +1449,29 @@ mnt/hgfs/share/JZSDK_Linux/Module/CommonMod/Upgrade/Upgrade.c.s: | @@ -1425,29 +1449,29 @@ mnt/hgfs/share/JZSDK_Linux/Module/CommonMod/Upgrade/Upgrade.c.s: | ||
| 1425 | $(MAKE) $(MAKESILENT) -f CMakeFiles/ATTENTION_APP.dir/build.make CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/CommonMod/Upgrade/Upgrade.c.s | 1449 | $(MAKE) $(MAKESILENT) -f CMakeFiles/ATTENTION_APP.dir/build.make CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/CommonMod/Upgrade/Upgrade.c.s |
| 1426 | .PHONY : mnt/hgfs/share/JZSDK_Linux/Module/CommonMod/Upgrade/Upgrade.c.s | 1450 | .PHONY : mnt/hgfs/share/JZSDK_Linux/Module/CommonMod/Upgrade/Upgrade.c.s |
| 1427 | 1451 | ||
| 1428 | -mnt/hgfs/share/JZSDK_Linux/Module/DeviceConfig/JZC1/JZC1.o: mnt/hgfs/share/JZSDK_Linux/Module/DeviceConfig/JZC1/JZC1.c.o | ||
| 1429 | -.PHONY : mnt/hgfs/share/JZSDK_Linux/Module/DeviceConfig/JZC1/JZC1.o | 1452 | +mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/Attribute/Attribute.o: mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/Attribute/Attribute.c.o |
| 1453 | +.PHONY : mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/Attribute/Attribute.o | ||
| 1430 | 1454 | ||
| 1431 | # target to build an object file | 1455 | # target to build an object file |
| 1432 | -mnt/hgfs/share/JZSDK_Linux/Module/DeviceConfig/JZC1/JZC1.c.o: | ||
| 1433 | - $(MAKE) $(MAKESILENT) -f CMakeFiles/ATTENTION_APP.dir/build.make CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceConfig/JZC1/JZC1.c.o | ||
| 1434 | -.PHONY : mnt/hgfs/share/JZSDK_Linux/Module/DeviceConfig/JZC1/JZC1.c.o | 1456 | +mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/Attribute/Attribute.c.o: |
| 1457 | + $(MAKE) $(MAKESILENT) -f CMakeFiles/ATTENTION_APP.dir/build.make CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/Attribute/Attribute.c.o | ||
| 1458 | +.PHONY : mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/Attribute/Attribute.c.o | ||
| 1435 | 1459 | ||
| 1436 | -mnt/hgfs/share/JZSDK_Linux/Module/DeviceConfig/JZC1/JZC1.i: mnt/hgfs/share/JZSDK_Linux/Module/DeviceConfig/JZC1/JZC1.c.i | ||
| 1437 | -.PHONY : mnt/hgfs/share/JZSDK_Linux/Module/DeviceConfig/JZC1/JZC1.i | 1460 | +mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/Attribute/Attribute.i: mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/Attribute/Attribute.c.i |
| 1461 | +.PHONY : mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/Attribute/Attribute.i | ||
| 1438 | 1462 | ||
| 1439 | # target to preprocess a source file | 1463 | # target to preprocess a source file |
| 1440 | -mnt/hgfs/share/JZSDK_Linux/Module/DeviceConfig/JZC1/JZC1.c.i: | ||
| 1441 | - $(MAKE) $(MAKESILENT) -f CMakeFiles/ATTENTION_APP.dir/build.make CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceConfig/JZC1/JZC1.c.i | ||
| 1442 | -.PHONY : mnt/hgfs/share/JZSDK_Linux/Module/DeviceConfig/JZC1/JZC1.c.i | 1464 | +mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/Attribute/Attribute.c.i: |
| 1465 | + $(MAKE) $(MAKESILENT) -f CMakeFiles/ATTENTION_APP.dir/build.make CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/Attribute/Attribute.c.i | ||
| 1466 | +.PHONY : mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/Attribute/Attribute.c.i | ||
| 1443 | 1467 | ||
| 1444 | -mnt/hgfs/share/JZSDK_Linux/Module/DeviceConfig/JZC1/JZC1.s: mnt/hgfs/share/JZSDK_Linux/Module/DeviceConfig/JZC1/JZC1.c.s | ||
| 1445 | -.PHONY : mnt/hgfs/share/JZSDK_Linux/Module/DeviceConfig/JZC1/JZC1.s | 1468 | +mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/Attribute/Attribute.s: mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/Attribute/Attribute.c.s |
| 1469 | +.PHONY : mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/Attribute/Attribute.s | ||
| 1446 | 1470 | ||
| 1447 | # target to generate assembly for a file | 1471 | # target to generate assembly for a file |
| 1448 | -mnt/hgfs/share/JZSDK_Linux/Module/DeviceConfig/JZC1/JZC1.c.s: | ||
| 1449 | - $(MAKE) $(MAKESILENT) -f CMakeFiles/ATTENTION_APP.dir/build.make CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceConfig/JZC1/JZC1.c.s | ||
| 1450 | -.PHONY : mnt/hgfs/share/JZSDK_Linux/Module/DeviceConfig/JZC1/JZC1.c.s | 1472 | +mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/Attribute/Attribute.c.s: |
| 1473 | + $(MAKE) $(MAKESILENT) -f CMakeFiles/ATTENTION_APP.dir/build.make CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/Attribute/Attribute.c.s | ||
| 1474 | +.PHONY : mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/Attribute/Attribute.c.s | ||
| 1451 | 1475 | ||
| 1452 | mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/DeviceInfo.o: mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/DeviceInfo.c.o | 1476 | mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/DeviceInfo.o: mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/DeviceInfo.c.o |
| 1453 | .PHONY : mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/DeviceInfo.o | 1477 | .PHONY : mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/DeviceInfo.o |
| @@ -1545,6 +1569,30 @@ mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/SerialNumberProc/ActivateMAT/Activa | @@ -1545,6 +1569,30 @@ mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/SerialNumberProc/ActivateMAT/Activa | ||
| 1545 | $(MAKE) $(MAKESILENT) -f CMakeFiles/ATTENTION_APP.dir/build.make CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/SerialNumberProc/ActivateMAT/ActivateMAT.c.s | 1569 | $(MAKE) $(MAKESILENT) -f CMakeFiles/ATTENTION_APP.dir/build.make CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/SerialNumberProc/ActivateMAT/ActivateMAT.c.s |
| 1546 | .PHONY : mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/SerialNumberProc/ActivateMAT/ActivateMAT.c.s | 1570 | .PHONY : mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/SerialNumberProc/ActivateMAT/ActivateMAT.c.s |
| 1547 | 1571 | ||
| 1572 | +mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/SerialNumberProc/FirewareOriginMAT/Country_Code.o: mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/SerialNumberProc/FirewareOriginMAT/Country_Code.c.o | ||
| 1573 | +.PHONY : mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/SerialNumberProc/FirewareOriginMAT/Country_Code.o | ||
| 1574 | + | ||
| 1575 | +# target to build an object file | ||
| 1576 | +mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/SerialNumberProc/FirewareOriginMAT/Country_Code.c.o: | ||
| 1577 | + $(MAKE) $(MAKESILENT) -f CMakeFiles/ATTENTION_APP.dir/build.make CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/SerialNumberProc/FirewareOriginMAT/Country_Code.c.o | ||
| 1578 | +.PHONY : mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/SerialNumberProc/FirewareOriginMAT/Country_Code.c.o | ||
| 1579 | + | ||
| 1580 | +mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/SerialNumberProc/FirewareOriginMAT/Country_Code.i: mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/SerialNumberProc/FirewareOriginMAT/Country_Code.c.i | ||
| 1581 | +.PHONY : mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/SerialNumberProc/FirewareOriginMAT/Country_Code.i | ||
| 1582 | + | ||
| 1583 | +# target to preprocess a source file | ||
| 1584 | +mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/SerialNumberProc/FirewareOriginMAT/Country_Code.c.i: | ||
| 1585 | + $(MAKE) $(MAKESILENT) -f CMakeFiles/ATTENTION_APP.dir/build.make CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/SerialNumberProc/FirewareOriginMAT/Country_Code.c.i | ||
| 1586 | +.PHONY : mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/SerialNumberProc/FirewareOriginMAT/Country_Code.c.i | ||
| 1587 | + | ||
| 1588 | +mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/SerialNumberProc/FirewareOriginMAT/Country_Code.s: mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/SerialNumberProc/FirewareOriginMAT/Country_Code.c.s | ||
| 1589 | +.PHONY : mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/SerialNumberProc/FirewareOriginMAT/Country_Code.s | ||
| 1590 | + | ||
| 1591 | +# target to generate assembly for a file | ||
| 1592 | +mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/SerialNumberProc/FirewareOriginMAT/Country_Code.c.s: | ||
| 1593 | + $(MAKE) $(MAKESILENT) -f CMakeFiles/ATTENTION_APP.dir/build.make CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/SerialNumberProc/FirewareOriginMAT/Country_Code.c.s | ||
| 1594 | +.PHONY : mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/SerialNumberProc/FirewareOriginMAT/Country_Code.c.s | ||
| 1595 | + | ||
| 1548 | mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/SerialNumberProc/FirewareOriginMAT/FirewareOriginMAT.o: mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/SerialNumberProc/FirewareOriginMAT/FirewareOriginMAT.c.o | 1596 | mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/SerialNumberProc/FirewareOriginMAT/FirewareOriginMAT.o: mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/SerialNumberProc/FirewareOriginMAT/FirewareOriginMAT.c.o |
| 1549 | .PHONY : mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/SerialNumberProc/FirewareOriginMAT/FirewareOriginMAT.o | 1597 | .PHONY : mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/SerialNumberProc/FirewareOriginMAT/FirewareOriginMAT.o |
| 1550 | 1598 | ||
| @@ -1785,6 +1833,198 @@ mnt/hgfs/share/JZSDK_Linux/Module/Ircut/ircut.c.s: | @@ -1785,6 +1833,198 @@ mnt/hgfs/share/JZSDK_Linux/Module/Ircut/ircut.c.s: | ||
| 1785 | $(MAKE) $(MAKESILENT) -f CMakeFiles/ATTENTION_APP.dir/build.make CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Ircut/ircut.c.s | 1833 | $(MAKE) $(MAKESILENT) -f CMakeFiles/ATTENTION_APP.dir/build.make CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Ircut/ircut.c.s |
| 1786 | .PHONY : mnt/hgfs/share/JZSDK_Linux/Module/Ircut/ircut.c.s | 1834 | .PHONY : mnt/hgfs/share/JZSDK_Linux/Module/Ircut/ircut.c.s |
| 1787 | 1835 | ||
| 1836 | +mnt/hgfs/share/JZSDK_Linux/Module/Lighting/Lighting_InAndOut.o: mnt/hgfs/share/JZSDK_Linux/Module/Lighting/Lighting_InAndOut.c.o | ||
| 1837 | +.PHONY : mnt/hgfs/share/JZSDK_Linux/Module/Lighting/Lighting_InAndOut.o | ||
| 1838 | + | ||
| 1839 | +# target to build an object file | ||
| 1840 | +mnt/hgfs/share/JZSDK_Linux/Module/Lighting/Lighting_InAndOut.c.o: | ||
| 1841 | + $(MAKE) $(MAKESILENT) -f CMakeFiles/ATTENTION_APP.dir/build.make CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Lighting/Lighting_InAndOut.c.o | ||
| 1842 | +.PHONY : mnt/hgfs/share/JZSDK_Linux/Module/Lighting/Lighting_InAndOut.c.o | ||
| 1843 | + | ||
| 1844 | +mnt/hgfs/share/JZSDK_Linux/Module/Lighting/Lighting_InAndOut.i: mnt/hgfs/share/JZSDK_Linux/Module/Lighting/Lighting_InAndOut.c.i | ||
| 1845 | +.PHONY : mnt/hgfs/share/JZSDK_Linux/Module/Lighting/Lighting_InAndOut.i | ||
| 1846 | + | ||
| 1847 | +# target to preprocess a source file | ||
| 1848 | +mnt/hgfs/share/JZSDK_Linux/Module/Lighting/Lighting_InAndOut.c.i: | ||
| 1849 | + $(MAKE) $(MAKESILENT) -f CMakeFiles/ATTENTION_APP.dir/build.make CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Lighting/Lighting_InAndOut.c.i | ||
| 1850 | +.PHONY : mnt/hgfs/share/JZSDK_Linux/Module/Lighting/Lighting_InAndOut.c.i | ||
| 1851 | + | ||
| 1852 | +mnt/hgfs/share/JZSDK_Linux/Module/Lighting/Lighting_InAndOut.s: mnt/hgfs/share/JZSDK_Linux/Module/Lighting/Lighting_InAndOut.c.s | ||
| 1853 | +.PHONY : mnt/hgfs/share/JZSDK_Linux/Module/Lighting/Lighting_InAndOut.s | ||
| 1854 | + | ||
| 1855 | +# target to generate assembly for a file | ||
| 1856 | +mnt/hgfs/share/JZSDK_Linux/Module/Lighting/Lighting_InAndOut.c.s: | ||
| 1857 | + $(MAKE) $(MAKESILENT) -f CMakeFiles/ATTENTION_APP.dir/build.make CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Lighting/Lighting_InAndOut.c.s | ||
| 1858 | +.PHONY : mnt/hgfs/share/JZSDK_Linux/Module/Lighting/Lighting_InAndOut.c.s | ||
| 1859 | + | ||
| 1860 | +mnt/hgfs/share/JZSDK_Linux/Module/Lighting/SearchLight/SearchLightTemControl/JZ_SearchLightTemp_calculation.o: mnt/hgfs/share/JZSDK_Linux/Module/Lighting/SearchLight/SearchLightTemControl/JZ_SearchLightTemp_calculation.c.o | ||
| 1861 | +.PHONY : mnt/hgfs/share/JZSDK_Linux/Module/Lighting/SearchLight/SearchLightTemControl/JZ_SearchLightTemp_calculation.o | ||
| 1862 | + | ||
| 1863 | +# target to build an object file | ||
| 1864 | +mnt/hgfs/share/JZSDK_Linux/Module/Lighting/SearchLight/SearchLightTemControl/JZ_SearchLightTemp_calculation.c.o: | ||
| 1865 | + $(MAKE) $(MAKESILENT) -f CMakeFiles/ATTENTION_APP.dir/build.make CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Lighting/SearchLight/SearchLightTemControl/JZ_SearchLightTemp_calculation.c.o | ||
| 1866 | +.PHONY : mnt/hgfs/share/JZSDK_Linux/Module/Lighting/SearchLight/SearchLightTemControl/JZ_SearchLightTemp_calculation.c.o | ||
| 1867 | + | ||
| 1868 | +mnt/hgfs/share/JZSDK_Linux/Module/Lighting/SearchLight/SearchLightTemControl/JZ_SearchLightTemp_calculation.i: mnt/hgfs/share/JZSDK_Linux/Module/Lighting/SearchLight/SearchLightTemControl/JZ_SearchLightTemp_calculation.c.i | ||
| 1869 | +.PHONY : mnt/hgfs/share/JZSDK_Linux/Module/Lighting/SearchLight/SearchLightTemControl/JZ_SearchLightTemp_calculation.i | ||
| 1870 | + | ||
| 1871 | +# target to preprocess a source file | ||
| 1872 | +mnt/hgfs/share/JZSDK_Linux/Module/Lighting/SearchLight/SearchLightTemControl/JZ_SearchLightTemp_calculation.c.i: | ||
| 1873 | + $(MAKE) $(MAKESILENT) -f CMakeFiles/ATTENTION_APP.dir/build.make CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Lighting/SearchLight/SearchLightTemControl/JZ_SearchLightTemp_calculation.c.i | ||
| 1874 | +.PHONY : mnt/hgfs/share/JZSDK_Linux/Module/Lighting/SearchLight/SearchLightTemControl/JZ_SearchLightTemp_calculation.c.i | ||
| 1875 | + | ||
| 1876 | +mnt/hgfs/share/JZSDK_Linux/Module/Lighting/SearchLight/SearchLightTemControl/JZ_SearchLightTemp_calculation.s: mnt/hgfs/share/JZSDK_Linux/Module/Lighting/SearchLight/SearchLightTemControl/JZ_SearchLightTemp_calculation.c.s | ||
| 1877 | +.PHONY : mnt/hgfs/share/JZSDK_Linux/Module/Lighting/SearchLight/SearchLightTemControl/JZ_SearchLightTemp_calculation.s | ||
| 1878 | + | ||
| 1879 | +# target to generate assembly for a file | ||
| 1880 | +mnt/hgfs/share/JZSDK_Linux/Module/Lighting/SearchLight/SearchLightTemControl/JZ_SearchLightTemp_calculation.c.s: | ||
| 1881 | + $(MAKE) $(MAKESILENT) -f CMakeFiles/ATTENTION_APP.dir/build.make CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Lighting/SearchLight/SearchLightTemControl/JZ_SearchLightTemp_calculation.c.s | ||
| 1882 | +.PHONY : mnt/hgfs/share/JZSDK_Linux/Module/Lighting/SearchLight/SearchLightTemControl/JZ_SearchLightTemp_calculation.c.s | ||
| 1883 | + | ||
| 1884 | +mnt/hgfs/share/JZSDK_Linux/Module/Lighting/SearchLight/SearchLightTemControl/SearchLightTemControl.o: mnt/hgfs/share/JZSDK_Linux/Module/Lighting/SearchLight/SearchLightTemControl/SearchLightTemControl.c.o | ||
| 1885 | +.PHONY : mnt/hgfs/share/JZSDK_Linux/Module/Lighting/SearchLight/SearchLightTemControl/SearchLightTemControl.o | ||
| 1886 | + | ||
| 1887 | +# target to build an object file | ||
| 1888 | +mnt/hgfs/share/JZSDK_Linux/Module/Lighting/SearchLight/SearchLightTemControl/SearchLightTemControl.c.o: | ||
| 1889 | + $(MAKE) $(MAKESILENT) -f CMakeFiles/ATTENTION_APP.dir/build.make CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Lighting/SearchLight/SearchLightTemControl/SearchLightTemControl.c.o | ||
| 1890 | +.PHONY : mnt/hgfs/share/JZSDK_Linux/Module/Lighting/SearchLight/SearchLightTemControl/SearchLightTemControl.c.o | ||
| 1891 | + | ||
| 1892 | +mnt/hgfs/share/JZSDK_Linux/Module/Lighting/SearchLight/SearchLightTemControl/SearchLightTemControl.i: mnt/hgfs/share/JZSDK_Linux/Module/Lighting/SearchLight/SearchLightTemControl/SearchLightTemControl.c.i | ||
| 1893 | +.PHONY : mnt/hgfs/share/JZSDK_Linux/Module/Lighting/SearchLight/SearchLightTemControl/SearchLightTemControl.i | ||
| 1894 | + | ||
| 1895 | +# target to preprocess a source file | ||
| 1896 | +mnt/hgfs/share/JZSDK_Linux/Module/Lighting/SearchLight/SearchLightTemControl/SearchLightTemControl.c.i: | ||
| 1897 | + $(MAKE) $(MAKESILENT) -f CMakeFiles/ATTENTION_APP.dir/build.make CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Lighting/SearchLight/SearchLightTemControl/SearchLightTemControl.c.i | ||
| 1898 | +.PHONY : mnt/hgfs/share/JZSDK_Linux/Module/Lighting/SearchLight/SearchLightTemControl/SearchLightTemControl.c.i | ||
| 1899 | + | ||
| 1900 | +mnt/hgfs/share/JZSDK_Linux/Module/Lighting/SearchLight/SearchLightTemControl/SearchLightTemControl.s: mnt/hgfs/share/JZSDK_Linux/Module/Lighting/SearchLight/SearchLightTemControl/SearchLightTemControl.c.s | ||
| 1901 | +.PHONY : mnt/hgfs/share/JZSDK_Linux/Module/Lighting/SearchLight/SearchLightTemControl/SearchLightTemControl.s | ||
| 1902 | + | ||
| 1903 | +# target to generate assembly for a file | ||
| 1904 | +mnt/hgfs/share/JZSDK_Linux/Module/Lighting/SearchLight/SearchLightTemControl/SearchLightTemControl.c.s: | ||
| 1905 | + $(MAKE) $(MAKESILENT) -f CMakeFiles/ATTENTION_APP.dir/build.make CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Lighting/SearchLight/SearchLightTemControl/SearchLightTemControl.c.s | ||
| 1906 | +.PHONY : mnt/hgfs/share/JZSDK_Linux/Module/Lighting/SearchLight/SearchLightTemControl/SearchLightTemControl.c.s | ||
| 1907 | + | ||
| 1908 | +mnt/hgfs/share/JZSDK_Linux/Module/Lighting/SearchLight/SearchLight_V3S/SearchLight_V3S_H1T/SearchLight_V3S_H1T.o: mnt/hgfs/share/JZSDK_Linux/Module/Lighting/SearchLight/SearchLight_V3S/SearchLight_V3S_H1T/SearchLight_V3S_H1T.c.o | ||
| 1909 | +.PHONY : mnt/hgfs/share/JZSDK_Linux/Module/Lighting/SearchLight/SearchLight_V3S/SearchLight_V3S_H1T/SearchLight_V3S_H1T.o | ||
| 1910 | + | ||
| 1911 | +# target to build an object file | ||
| 1912 | +mnt/hgfs/share/JZSDK_Linux/Module/Lighting/SearchLight/SearchLight_V3S/SearchLight_V3S_H1T/SearchLight_V3S_H1T.c.o: | ||
| 1913 | + $(MAKE) $(MAKESILENT) -f CMakeFiles/ATTENTION_APP.dir/build.make CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Lighting/SearchLight/SearchLight_V3S/SearchLight_V3S_H1T/SearchLight_V3S_H1T.c.o | ||
| 1914 | +.PHONY : mnt/hgfs/share/JZSDK_Linux/Module/Lighting/SearchLight/SearchLight_V3S/SearchLight_V3S_H1T/SearchLight_V3S_H1T.c.o | ||
| 1915 | + | ||
| 1916 | +mnt/hgfs/share/JZSDK_Linux/Module/Lighting/SearchLight/SearchLight_V3S/SearchLight_V3S_H1T/SearchLight_V3S_H1T.i: mnt/hgfs/share/JZSDK_Linux/Module/Lighting/SearchLight/SearchLight_V3S/SearchLight_V3S_H1T/SearchLight_V3S_H1T.c.i | ||
| 1917 | +.PHONY : mnt/hgfs/share/JZSDK_Linux/Module/Lighting/SearchLight/SearchLight_V3S/SearchLight_V3S_H1T/SearchLight_V3S_H1T.i | ||
| 1918 | + | ||
| 1919 | +# target to preprocess a source file | ||
| 1920 | +mnt/hgfs/share/JZSDK_Linux/Module/Lighting/SearchLight/SearchLight_V3S/SearchLight_V3S_H1T/SearchLight_V3S_H1T.c.i: | ||
| 1921 | + $(MAKE) $(MAKESILENT) -f CMakeFiles/ATTENTION_APP.dir/build.make CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Lighting/SearchLight/SearchLight_V3S/SearchLight_V3S_H1T/SearchLight_V3S_H1T.c.i | ||
| 1922 | +.PHONY : mnt/hgfs/share/JZSDK_Linux/Module/Lighting/SearchLight/SearchLight_V3S/SearchLight_V3S_H1T/SearchLight_V3S_H1T.c.i | ||
| 1923 | + | ||
| 1924 | +mnt/hgfs/share/JZSDK_Linux/Module/Lighting/SearchLight/SearchLight_V3S/SearchLight_V3S_H1T/SearchLight_V3S_H1T.s: mnt/hgfs/share/JZSDK_Linux/Module/Lighting/SearchLight/SearchLight_V3S/SearchLight_V3S_H1T/SearchLight_V3S_H1T.c.s | ||
| 1925 | +.PHONY : mnt/hgfs/share/JZSDK_Linux/Module/Lighting/SearchLight/SearchLight_V3S/SearchLight_V3S_H1T/SearchLight_V3S_H1T.s | ||
| 1926 | + | ||
| 1927 | +# target to generate assembly for a file | ||
| 1928 | +mnt/hgfs/share/JZSDK_Linux/Module/Lighting/SearchLight/SearchLight_V3S/SearchLight_V3S_H1T/SearchLight_V3S_H1T.c.s: | ||
| 1929 | + $(MAKE) $(MAKESILENT) -f CMakeFiles/ATTENTION_APP.dir/build.make CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Lighting/SearchLight/SearchLight_V3S/SearchLight_V3S_H1T/SearchLight_V3S_H1T.c.s | ||
| 1930 | +.PHONY : mnt/hgfs/share/JZSDK_Linux/Module/Lighting/SearchLight/SearchLight_V3S/SearchLight_V3S_H1T/SearchLight_V3S_H1T.c.s | ||
| 1931 | + | ||
| 1932 | +mnt/hgfs/share/JZSDK_Linux/Module/Lighting/SearchLight/SearchLight_V3S/SearchLight_V3S_TFA1/SearchLight_V3S_TFA1.o: mnt/hgfs/share/JZSDK_Linux/Module/Lighting/SearchLight/SearchLight_V3S/SearchLight_V3S_TFA1/SearchLight_V3S_TFA1.c.o | ||
| 1933 | +.PHONY : mnt/hgfs/share/JZSDK_Linux/Module/Lighting/SearchLight/SearchLight_V3S/SearchLight_V3S_TFA1/SearchLight_V3S_TFA1.o | ||
| 1934 | + | ||
| 1935 | +# target to build an object file | ||
| 1936 | +mnt/hgfs/share/JZSDK_Linux/Module/Lighting/SearchLight/SearchLight_V3S/SearchLight_V3S_TFA1/SearchLight_V3S_TFA1.c.o: | ||
| 1937 | + $(MAKE) $(MAKESILENT) -f CMakeFiles/ATTENTION_APP.dir/build.make CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Lighting/SearchLight/SearchLight_V3S/SearchLight_V3S_TFA1/SearchLight_V3S_TFA1.c.o | ||
| 1938 | +.PHONY : mnt/hgfs/share/JZSDK_Linux/Module/Lighting/SearchLight/SearchLight_V3S/SearchLight_V3S_TFA1/SearchLight_V3S_TFA1.c.o | ||
| 1939 | + | ||
| 1940 | +mnt/hgfs/share/JZSDK_Linux/Module/Lighting/SearchLight/SearchLight_V3S/SearchLight_V3S_TFA1/SearchLight_V3S_TFA1.i: mnt/hgfs/share/JZSDK_Linux/Module/Lighting/SearchLight/SearchLight_V3S/SearchLight_V3S_TFA1/SearchLight_V3S_TFA1.c.i | ||
| 1941 | +.PHONY : mnt/hgfs/share/JZSDK_Linux/Module/Lighting/SearchLight/SearchLight_V3S/SearchLight_V3S_TFA1/SearchLight_V3S_TFA1.i | ||
| 1942 | + | ||
| 1943 | +# target to preprocess a source file | ||
| 1944 | +mnt/hgfs/share/JZSDK_Linux/Module/Lighting/SearchLight/SearchLight_V3S/SearchLight_V3S_TFA1/SearchLight_V3S_TFA1.c.i: | ||
| 1945 | + $(MAKE) $(MAKESILENT) -f CMakeFiles/ATTENTION_APP.dir/build.make CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Lighting/SearchLight/SearchLight_V3S/SearchLight_V3S_TFA1/SearchLight_V3S_TFA1.c.i | ||
| 1946 | +.PHONY : mnt/hgfs/share/JZSDK_Linux/Module/Lighting/SearchLight/SearchLight_V3S/SearchLight_V3S_TFA1/SearchLight_V3S_TFA1.c.i | ||
| 1947 | + | ||
| 1948 | +mnt/hgfs/share/JZSDK_Linux/Module/Lighting/SearchLight/SearchLight_V3S/SearchLight_V3S_TFA1/SearchLight_V3S_TFA1.s: mnt/hgfs/share/JZSDK_Linux/Module/Lighting/SearchLight/SearchLight_V3S/SearchLight_V3S_TFA1/SearchLight_V3S_TFA1.c.s | ||
| 1949 | +.PHONY : mnt/hgfs/share/JZSDK_Linux/Module/Lighting/SearchLight/SearchLight_V3S/SearchLight_V3S_TFA1/SearchLight_V3S_TFA1.s | ||
| 1950 | + | ||
| 1951 | +# target to generate assembly for a file | ||
| 1952 | +mnt/hgfs/share/JZSDK_Linux/Module/Lighting/SearchLight/SearchLight_V3S/SearchLight_V3S_TFA1/SearchLight_V3S_TFA1.c.s: | ||
| 1953 | + $(MAKE) $(MAKESILENT) -f CMakeFiles/ATTENTION_APP.dir/build.make CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Lighting/SearchLight/SearchLight_V3S/SearchLight_V3S_TFA1/SearchLight_V3S_TFA1.c.s | ||
| 1954 | +.PHONY : mnt/hgfs/share/JZSDK_Linux/Module/Lighting/SearchLight/SearchLight_V3S/SearchLight_V3S_TFA1/SearchLight_V3S_TFA1.c.s | ||
| 1955 | + | ||
| 1956 | +mnt/hgfs/share/JZSDK_Linux/Module/Lighting/SearchLight/SearchLight_V3S/SearchLight_V3S_U3/SearchLight_V3S_U3.o: mnt/hgfs/share/JZSDK_Linux/Module/Lighting/SearchLight/SearchLight_V3S/SearchLight_V3S_U3/SearchLight_V3S_U3.c.o | ||
| 1957 | +.PHONY : mnt/hgfs/share/JZSDK_Linux/Module/Lighting/SearchLight/SearchLight_V3S/SearchLight_V3S_U3/SearchLight_V3S_U3.o | ||
| 1958 | + | ||
| 1959 | +# target to build an object file | ||
| 1960 | +mnt/hgfs/share/JZSDK_Linux/Module/Lighting/SearchLight/SearchLight_V3S/SearchLight_V3S_U3/SearchLight_V3S_U3.c.o: | ||
| 1961 | + $(MAKE) $(MAKESILENT) -f CMakeFiles/ATTENTION_APP.dir/build.make CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Lighting/SearchLight/SearchLight_V3S/SearchLight_V3S_U3/SearchLight_V3S_U3.c.o | ||
| 1962 | +.PHONY : mnt/hgfs/share/JZSDK_Linux/Module/Lighting/SearchLight/SearchLight_V3S/SearchLight_V3S_U3/SearchLight_V3S_U3.c.o | ||
| 1963 | + | ||
| 1964 | +mnt/hgfs/share/JZSDK_Linux/Module/Lighting/SearchLight/SearchLight_V3S/SearchLight_V3S_U3/SearchLight_V3S_U3.i: mnt/hgfs/share/JZSDK_Linux/Module/Lighting/SearchLight/SearchLight_V3S/SearchLight_V3S_U3/SearchLight_V3S_U3.c.i | ||
| 1965 | +.PHONY : mnt/hgfs/share/JZSDK_Linux/Module/Lighting/SearchLight/SearchLight_V3S/SearchLight_V3S_U3/SearchLight_V3S_U3.i | ||
| 1966 | + | ||
| 1967 | +# target to preprocess a source file | ||
| 1968 | +mnt/hgfs/share/JZSDK_Linux/Module/Lighting/SearchLight/SearchLight_V3S/SearchLight_V3S_U3/SearchLight_V3S_U3.c.i: | ||
| 1969 | + $(MAKE) $(MAKESILENT) -f CMakeFiles/ATTENTION_APP.dir/build.make CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Lighting/SearchLight/SearchLight_V3S/SearchLight_V3S_U3/SearchLight_V3S_U3.c.i | ||
| 1970 | +.PHONY : mnt/hgfs/share/JZSDK_Linux/Module/Lighting/SearchLight/SearchLight_V3S/SearchLight_V3S_U3/SearchLight_V3S_U3.c.i | ||
| 1971 | + | ||
| 1972 | +mnt/hgfs/share/JZSDK_Linux/Module/Lighting/SearchLight/SearchLight_V3S/SearchLight_V3S_U3/SearchLight_V3S_U3.s: mnt/hgfs/share/JZSDK_Linux/Module/Lighting/SearchLight/SearchLight_V3S/SearchLight_V3S_U3/SearchLight_V3S_U3.c.s | ||
| 1973 | +.PHONY : mnt/hgfs/share/JZSDK_Linux/Module/Lighting/SearchLight/SearchLight_V3S/SearchLight_V3S_U3/SearchLight_V3S_U3.s | ||
| 1974 | + | ||
| 1975 | +# target to generate assembly for a file | ||
| 1976 | +mnt/hgfs/share/JZSDK_Linux/Module/Lighting/SearchLight/SearchLight_V3S/SearchLight_V3S_U3/SearchLight_V3S_U3.c.s: | ||
| 1977 | + $(MAKE) $(MAKESILENT) -f CMakeFiles/ATTENTION_APP.dir/build.make CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Lighting/SearchLight/SearchLight_V3S/SearchLight_V3S_U3/SearchLight_V3S_U3.c.s | ||
| 1978 | +.PHONY : mnt/hgfs/share/JZSDK_Linux/Module/Lighting/SearchLight/SearchLight_V3S/SearchLight_V3S_U3/SearchLight_V3S_U3.c.s | ||
| 1979 | + | ||
| 1980 | +mnt/hgfs/share/JZSDK_Linux/Module/Lighting/WarningLight/WarningLight_V3S/WarningLight_V3S_H1T/WarningLight_V3S_H1T.o: mnt/hgfs/share/JZSDK_Linux/Module/Lighting/WarningLight/WarningLight_V3S/WarningLight_V3S_H1T/WarningLight_V3S_H1T.c.o | ||
| 1981 | +.PHONY : mnt/hgfs/share/JZSDK_Linux/Module/Lighting/WarningLight/WarningLight_V3S/WarningLight_V3S_H1T/WarningLight_V3S_H1T.o | ||
| 1982 | + | ||
| 1983 | +# target to build an object file | ||
| 1984 | +mnt/hgfs/share/JZSDK_Linux/Module/Lighting/WarningLight/WarningLight_V3S/WarningLight_V3S_H1T/WarningLight_V3S_H1T.c.o: | ||
| 1985 | + $(MAKE) $(MAKESILENT) -f CMakeFiles/ATTENTION_APP.dir/build.make CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Lighting/WarningLight/WarningLight_V3S/WarningLight_V3S_H1T/WarningLight_V3S_H1T.c.o | ||
| 1986 | +.PHONY : mnt/hgfs/share/JZSDK_Linux/Module/Lighting/WarningLight/WarningLight_V3S/WarningLight_V3S_H1T/WarningLight_V3S_H1T.c.o | ||
| 1987 | + | ||
| 1988 | +mnt/hgfs/share/JZSDK_Linux/Module/Lighting/WarningLight/WarningLight_V3S/WarningLight_V3S_H1T/WarningLight_V3S_H1T.i: mnt/hgfs/share/JZSDK_Linux/Module/Lighting/WarningLight/WarningLight_V3S/WarningLight_V3S_H1T/WarningLight_V3S_H1T.c.i | ||
| 1989 | +.PHONY : mnt/hgfs/share/JZSDK_Linux/Module/Lighting/WarningLight/WarningLight_V3S/WarningLight_V3S_H1T/WarningLight_V3S_H1T.i | ||
| 1990 | + | ||
| 1991 | +# target to preprocess a source file | ||
| 1992 | +mnt/hgfs/share/JZSDK_Linux/Module/Lighting/WarningLight/WarningLight_V3S/WarningLight_V3S_H1T/WarningLight_V3S_H1T.c.i: | ||
| 1993 | + $(MAKE) $(MAKESILENT) -f CMakeFiles/ATTENTION_APP.dir/build.make CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Lighting/WarningLight/WarningLight_V3S/WarningLight_V3S_H1T/WarningLight_V3S_H1T.c.i | ||
| 1994 | +.PHONY : mnt/hgfs/share/JZSDK_Linux/Module/Lighting/WarningLight/WarningLight_V3S/WarningLight_V3S_H1T/WarningLight_V3S_H1T.c.i | ||
| 1995 | + | ||
| 1996 | +mnt/hgfs/share/JZSDK_Linux/Module/Lighting/WarningLight/WarningLight_V3S/WarningLight_V3S_H1T/WarningLight_V3S_H1T.s: mnt/hgfs/share/JZSDK_Linux/Module/Lighting/WarningLight/WarningLight_V3S/WarningLight_V3S_H1T/WarningLight_V3S_H1T.c.s | ||
| 1997 | +.PHONY : mnt/hgfs/share/JZSDK_Linux/Module/Lighting/WarningLight/WarningLight_V3S/WarningLight_V3S_H1T/WarningLight_V3S_H1T.s | ||
| 1998 | + | ||
| 1999 | +# target to generate assembly for a file | ||
| 2000 | +mnt/hgfs/share/JZSDK_Linux/Module/Lighting/WarningLight/WarningLight_V3S/WarningLight_V3S_H1T/WarningLight_V3S_H1T.c.s: | ||
| 2001 | + $(MAKE) $(MAKESILENT) -f CMakeFiles/ATTENTION_APP.dir/build.make CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Lighting/WarningLight/WarningLight_V3S/WarningLight_V3S_H1T/WarningLight_V3S_H1T.c.s | ||
| 2002 | +.PHONY : mnt/hgfs/share/JZSDK_Linux/Module/Lighting/WarningLight/WarningLight_V3S/WarningLight_V3S_H1T/WarningLight_V3S_H1T.c.s | ||
| 2003 | + | ||
| 2004 | +mnt/hgfs/share/JZSDK_Linux/Module/Lighting/WarningLight/WarningLight_V3S/WarningLight_V3S_TFA1/WarningLight_V3S_TFA1.o: mnt/hgfs/share/JZSDK_Linux/Module/Lighting/WarningLight/WarningLight_V3S/WarningLight_V3S_TFA1/WarningLight_V3S_TFA1.c.o | ||
| 2005 | +.PHONY : mnt/hgfs/share/JZSDK_Linux/Module/Lighting/WarningLight/WarningLight_V3S/WarningLight_V3S_TFA1/WarningLight_V3S_TFA1.o | ||
| 2006 | + | ||
| 2007 | +# target to build an object file | ||
| 2008 | +mnt/hgfs/share/JZSDK_Linux/Module/Lighting/WarningLight/WarningLight_V3S/WarningLight_V3S_TFA1/WarningLight_V3S_TFA1.c.o: | ||
| 2009 | + $(MAKE) $(MAKESILENT) -f CMakeFiles/ATTENTION_APP.dir/build.make CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Lighting/WarningLight/WarningLight_V3S/WarningLight_V3S_TFA1/WarningLight_V3S_TFA1.c.o | ||
| 2010 | +.PHONY : mnt/hgfs/share/JZSDK_Linux/Module/Lighting/WarningLight/WarningLight_V3S/WarningLight_V3S_TFA1/WarningLight_V3S_TFA1.c.o | ||
| 2011 | + | ||
| 2012 | +mnt/hgfs/share/JZSDK_Linux/Module/Lighting/WarningLight/WarningLight_V3S/WarningLight_V3S_TFA1/WarningLight_V3S_TFA1.i: mnt/hgfs/share/JZSDK_Linux/Module/Lighting/WarningLight/WarningLight_V3S/WarningLight_V3S_TFA1/WarningLight_V3S_TFA1.c.i | ||
| 2013 | +.PHONY : mnt/hgfs/share/JZSDK_Linux/Module/Lighting/WarningLight/WarningLight_V3S/WarningLight_V3S_TFA1/WarningLight_V3S_TFA1.i | ||
| 2014 | + | ||
| 2015 | +# target to preprocess a source file | ||
| 2016 | +mnt/hgfs/share/JZSDK_Linux/Module/Lighting/WarningLight/WarningLight_V3S/WarningLight_V3S_TFA1/WarningLight_V3S_TFA1.c.i: | ||
| 2017 | + $(MAKE) $(MAKESILENT) -f CMakeFiles/ATTENTION_APP.dir/build.make CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Lighting/WarningLight/WarningLight_V3S/WarningLight_V3S_TFA1/WarningLight_V3S_TFA1.c.i | ||
| 2018 | +.PHONY : mnt/hgfs/share/JZSDK_Linux/Module/Lighting/WarningLight/WarningLight_V3S/WarningLight_V3S_TFA1/WarningLight_V3S_TFA1.c.i | ||
| 2019 | + | ||
| 2020 | +mnt/hgfs/share/JZSDK_Linux/Module/Lighting/WarningLight/WarningLight_V3S/WarningLight_V3S_TFA1/WarningLight_V3S_TFA1.s: mnt/hgfs/share/JZSDK_Linux/Module/Lighting/WarningLight/WarningLight_V3S/WarningLight_V3S_TFA1/WarningLight_V3S_TFA1.c.s | ||
| 2021 | +.PHONY : mnt/hgfs/share/JZSDK_Linux/Module/Lighting/WarningLight/WarningLight_V3S/WarningLight_V3S_TFA1/WarningLight_V3S_TFA1.s | ||
| 2022 | + | ||
| 2023 | +# target to generate assembly for a file | ||
| 2024 | +mnt/hgfs/share/JZSDK_Linux/Module/Lighting/WarningLight/WarningLight_V3S/WarningLight_V3S_TFA1/WarningLight_V3S_TFA1.c.s: | ||
| 2025 | + $(MAKE) $(MAKESILENT) -f CMakeFiles/ATTENTION_APP.dir/build.make CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Lighting/WarningLight/WarningLight_V3S/WarningLight_V3S_TFA1/WarningLight_V3S_TFA1.c.s | ||
| 2026 | +.PHONY : mnt/hgfs/share/JZSDK_Linux/Module/Lighting/WarningLight/WarningLight_V3S/WarningLight_V3S_TFA1/WarningLight_V3S_TFA1.c.s | ||
| 2027 | + | ||
| 1788 | mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/AttentionVoice/AttentionVoice.o: mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/AttentionVoice/AttentionVoice.c.o | 2028 | mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/AttentionVoice/AttentionVoice.o: mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/AttentionVoice/AttentionVoice.c.o |
| 1789 | .PHONY : mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/AttentionVoice/AttentionVoice.o | 2029 | .PHONY : mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/AttentionVoice/AttentionVoice.o |
| 1790 | 2030 | ||
| @@ -2313,654 +2553,6 @@ mnt/hgfs/share/JZSDK_Linux/Module/UI_control/WidegMgmt/JZsdk_WidgetIndex.c.s: | @@ -2313,654 +2553,6 @@ mnt/hgfs/share/JZSDK_Linux/Module/UI_control/WidegMgmt/JZsdk_WidgetIndex.c.s: | ||
| 2313 | $(MAKE) $(MAKESILENT) -f CMakeFiles/ATTENTION_APP.dir/build.make CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/UI_control/WidegMgmt/JZsdk_WidgetIndex.c.s | 2553 | $(MAKE) $(MAKESILENT) -f CMakeFiles/ATTENTION_APP.dir/build.make CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/UI_control/WidegMgmt/JZsdk_WidgetIndex.c.s |
| 2314 | .PHONY : mnt/hgfs/share/JZSDK_Linux/Module/UI_control/WidegMgmt/JZsdk_WidgetIndex.c.s | 2554 | .PHONY : mnt/hgfs/share/JZSDK_Linux/Module/UI_control/WidegMgmt/JZsdk_WidgetIndex.c.s |
| 2315 | 2555 | ||
| 2316 | -mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/boardtype_friendlyelec.o: mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/boardtype_friendlyelec.c.o | ||
| 2317 | -.PHONY : mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/boardtype_friendlyelec.o | ||
| 2318 | - | ||
| 2319 | -# target to build an object file | ||
| 2320 | -mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/boardtype_friendlyelec.c.o: | ||
| 2321 | - $(MAKE) $(MAKESILENT) -f CMakeFiles/ATTENTION_APP.dir/build.make CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/boardtype_friendlyelec.c.o | ||
| 2322 | -.PHONY : mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/boardtype_friendlyelec.c.o | ||
| 2323 | - | ||
| 2324 | -mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/boardtype_friendlyelec.i: mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/boardtype_friendlyelec.c.i | ||
| 2325 | -.PHONY : mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/boardtype_friendlyelec.i | ||
| 2326 | - | ||
| 2327 | -# target to preprocess a source file | ||
| 2328 | -mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/boardtype_friendlyelec.c.i: | ||
| 2329 | - $(MAKE) $(MAKESILENT) -f CMakeFiles/ATTENTION_APP.dir/build.make CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/boardtype_friendlyelec.c.i | ||
| 2330 | -.PHONY : mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/boardtype_friendlyelec.c.i | ||
| 2331 | - | ||
| 2332 | -mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/boardtype_friendlyelec.s: mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/boardtype_friendlyelec.c.s | ||
| 2333 | -.PHONY : mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/boardtype_friendlyelec.s | ||
| 2334 | - | ||
| 2335 | -# target to generate assembly for a file | ||
| 2336 | -mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/boardtype_friendlyelec.c.s: | ||
| 2337 | - $(MAKE) $(MAKESILENT) -f CMakeFiles/ATTENTION_APP.dir/build.make CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/boardtype_friendlyelec.c.s | ||
| 2338 | -.PHONY : mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/boardtype_friendlyelec.c.s | ||
| 2339 | - | ||
| 2340 | -mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/drcSerial.o: mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/drcSerial.c.o | ||
| 2341 | -.PHONY : mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/drcSerial.o | ||
| 2342 | - | ||
| 2343 | -# target to build an object file | ||
| 2344 | -mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/drcSerial.c.o: | ||
| 2345 | - $(MAKE) $(MAKESILENT) -f CMakeFiles/ATTENTION_APP.dir/build.make CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/drcSerial.c.o | ||
| 2346 | -.PHONY : mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/drcSerial.c.o | ||
| 2347 | - | ||
| 2348 | -mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/drcSerial.i: mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/drcSerial.c.i | ||
| 2349 | -.PHONY : mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/drcSerial.i | ||
| 2350 | - | ||
| 2351 | -# target to preprocess a source file | ||
| 2352 | -mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/drcSerial.c.i: | ||
| 2353 | - $(MAKE) $(MAKESILENT) -f CMakeFiles/ATTENTION_APP.dir/build.make CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/drcSerial.c.i | ||
| 2354 | -.PHONY : mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/drcSerial.c.i | ||
| 2355 | - | ||
| 2356 | -mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/drcSerial.s: mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/drcSerial.c.s | ||
| 2357 | -.PHONY : mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/drcSerial.s | ||
| 2358 | - | ||
| 2359 | -# target to generate assembly for a file | ||
| 2360 | -mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/drcSerial.c.s: | ||
| 2361 | - $(MAKE) $(MAKESILENT) -f CMakeFiles/ATTENTION_APP.dir/build.make CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/drcSerial.c.s | ||
| 2362 | -.PHONY : mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/drcSerial.c.s | ||
| 2363 | - | ||
| 2364 | -mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/max31855.o: mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/max31855.c.o | ||
| 2365 | -.PHONY : mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/max31855.o | ||
| 2366 | - | ||
| 2367 | -# target to build an object file | ||
| 2368 | -mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/max31855.c.o: | ||
| 2369 | - $(MAKE) $(MAKESILENT) -f CMakeFiles/ATTENTION_APP.dir/build.make CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/max31855.c.o | ||
| 2370 | -.PHONY : mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/max31855.c.o | ||
| 2371 | - | ||
| 2372 | -mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/max31855.i: mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/max31855.c.i | ||
| 2373 | -.PHONY : mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/max31855.i | ||
| 2374 | - | ||
| 2375 | -# target to preprocess a source file | ||
| 2376 | -mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/max31855.c.i: | ||
| 2377 | - $(MAKE) $(MAKESILENT) -f CMakeFiles/ATTENTION_APP.dir/build.make CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/max31855.c.i | ||
| 2378 | -.PHONY : mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/max31855.c.i | ||
| 2379 | - | ||
| 2380 | -mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/max31855.s: mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/max31855.c.s | ||
| 2381 | -.PHONY : mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/max31855.s | ||
| 2382 | - | ||
| 2383 | -# target to generate assembly for a file | ||
| 2384 | -mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/max31855.c.s: | ||
| 2385 | - $(MAKE) $(MAKESILENT) -f CMakeFiles/ATTENTION_APP.dir/build.make CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/max31855.c.s | ||
| 2386 | -.PHONY : mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/max31855.c.s | ||
| 2387 | - | ||
| 2388 | -mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/max5322.o: mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/max5322.c.o | ||
| 2389 | -.PHONY : mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/max5322.o | ||
| 2390 | - | ||
| 2391 | -# target to build an object file | ||
| 2392 | -mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/max5322.c.o: | ||
| 2393 | - $(MAKE) $(MAKESILENT) -f CMakeFiles/ATTENTION_APP.dir/build.make CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/max5322.c.o | ||
| 2394 | -.PHONY : mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/max5322.c.o | ||
| 2395 | - | ||
| 2396 | -mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/max5322.i: mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/max5322.c.i | ||
| 2397 | -.PHONY : mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/max5322.i | ||
| 2398 | - | ||
| 2399 | -# target to preprocess a source file | ||
| 2400 | -mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/max5322.c.i: | ||
| 2401 | - $(MAKE) $(MAKESILENT) -f CMakeFiles/ATTENTION_APP.dir/build.make CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/max5322.c.i | ||
| 2402 | -.PHONY : mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/max5322.c.i | ||
| 2403 | - | ||
| 2404 | -mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/max5322.s: mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/max5322.c.s | ||
| 2405 | -.PHONY : mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/max5322.s | ||
| 2406 | - | ||
| 2407 | -# target to generate assembly for a file | ||
| 2408 | -mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/max5322.c.s: | ||
| 2409 | - $(MAKE) $(MAKESILENT) -f CMakeFiles/ATTENTION_APP.dir/build.make CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/max5322.c.s | ||
| 2410 | -.PHONY : mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/max5322.c.s | ||
| 2411 | - | ||
| 2412 | -mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp23008.o: mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp23008.c.o | ||
| 2413 | -.PHONY : mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp23008.o | ||
| 2414 | - | ||
| 2415 | -# target to build an object file | ||
| 2416 | -mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp23008.c.o: | ||
| 2417 | - $(MAKE) $(MAKESILENT) -f CMakeFiles/ATTENTION_APP.dir/build.make CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp23008.c.o | ||
| 2418 | -.PHONY : mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp23008.c.o | ||
| 2419 | - | ||
| 2420 | -mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp23008.i: mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp23008.c.i | ||
| 2421 | -.PHONY : mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp23008.i | ||
| 2422 | - | ||
| 2423 | -# target to preprocess a source file | ||
| 2424 | -mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp23008.c.i: | ||
| 2425 | - $(MAKE) $(MAKESILENT) -f CMakeFiles/ATTENTION_APP.dir/build.make CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp23008.c.i | ||
| 2426 | -.PHONY : mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp23008.c.i | ||
| 2427 | - | ||
| 2428 | -mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp23008.s: mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp23008.c.s | ||
| 2429 | -.PHONY : mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp23008.s | ||
| 2430 | - | ||
| 2431 | -# target to generate assembly for a file | ||
| 2432 | -mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp23008.c.s: | ||
| 2433 | - $(MAKE) $(MAKESILENT) -f CMakeFiles/ATTENTION_APP.dir/build.make CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp23008.c.s | ||
| 2434 | -.PHONY : mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp23008.c.s | ||
| 2435 | - | ||
| 2436 | -mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp23016.o: mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp23016.c.o | ||
| 2437 | -.PHONY : mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp23016.o | ||
| 2438 | - | ||
| 2439 | -# target to build an object file | ||
| 2440 | -mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp23016.c.o: | ||
| 2441 | - $(MAKE) $(MAKESILENT) -f CMakeFiles/ATTENTION_APP.dir/build.make CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp23016.c.o | ||
| 2442 | -.PHONY : mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp23016.c.o | ||
| 2443 | - | ||
| 2444 | -mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp23016.i: mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp23016.c.i | ||
| 2445 | -.PHONY : mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp23016.i | ||
| 2446 | - | ||
| 2447 | -# target to preprocess a source file | ||
| 2448 | -mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp23016.c.i: | ||
| 2449 | - $(MAKE) $(MAKESILENT) -f CMakeFiles/ATTENTION_APP.dir/build.make CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp23016.c.i | ||
| 2450 | -.PHONY : mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp23016.c.i | ||
| 2451 | - | ||
| 2452 | -mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp23016.s: mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp23016.c.s | ||
| 2453 | -.PHONY : mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp23016.s | ||
| 2454 | - | ||
| 2455 | -# target to generate assembly for a file | ||
| 2456 | -mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp23016.c.s: | ||
| 2457 | - $(MAKE) $(MAKESILENT) -f CMakeFiles/ATTENTION_APP.dir/build.make CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp23016.c.s | ||
| 2458 | -.PHONY : mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp23016.c.s | ||
| 2459 | - | ||
| 2460 | -mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp23017.o: mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp23017.c.o | ||
| 2461 | -.PHONY : mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp23017.o | ||
| 2462 | - | ||
| 2463 | -# target to build an object file | ||
| 2464 | -mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp23017.c.o: | ||
| 2465 | - $(MAKE) $(MAKESILENT) -f CMakeFiles/ATTENTION_APP.dir/build.make CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp23017.c.o | ||
| 2466 | -.PHONY : mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp23017.c.o | ||
| 2467 | - | ||
| 2468 | -mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp23017.i: mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp23017.c.i | ||
| 2469 | -.PHONY : mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp23017.i | ||
| 2470 | - | ||
| 2471 | -# target to preprocess a source file | ||
| 2472 | -mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp23017.c.i: | ||
| 2473 | - $(MAKE) $(MAKESILENT) -f CMakeFiles/ATTENTION_APP.dir/build.make CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp23017.c.i | ||
| 2474 | -.PHONY : mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp23017.c.i | ||
| 2475 | - | ||
| 2476 | -mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp23017.s: mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp23017.c.s | ||
| 2477 | -.PHONY : mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp23017.s | ||
| 2478 | - | ||
| 2479 | -# target to generate assembly for a file | ||
| 2480 | -mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp23017.c.s: | ||
| 2481 | - $(MAKE) $(MAKESILENT) -f CMakeFiles/ATTENTION_APP.dir/build.make CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp23017.c.s | ||
| 2482 | -.PHONY : mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp23017.c.s | ||
| 2483 | - | ||
| 2484 | -mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp23s08.o: mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp23s08.c.o | ||
| 2485 | -.PHONY : mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp23s08.o | ||
| 2486 | - | ||
| 2487 | -# target to build an object file | ||
| 2488 | -mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp23s08.c.o: | ||
| 2489 | - $(MAKE) $(MAKESILENT) -f CMakeFiles/ATTENTION_APP.dir/build.make CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp23s08.c.o | ||
| 2490 | -.PHONY : mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp23s08.c.o | ||
| 2491 | - | ||
| 2492 | -mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp23s08.i: mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp23s08.c.i | ||
| 2493 | -.PHONY : mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp23s08.i | ||
| 2494 | - | ||
| 2495 | -# target to preprocess a source file | ||
| 2496 | -mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp23s08.c.i: | ||
| 2497 | - $(MAKE) $(MAKESILENT) -f CMakeFiles/ATTENTION_APP.dir/build.make CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp23s08.c.i | ||
| 2498 | -.PHONY : mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp23s08.c.i | ||
| 2499 | - | ||
| 2500 | -mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp23s08.s: mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp23s08.c.s | ||
| 2501 | -.PHONY : mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp23s08.s | ||
| 2502 | - | ||
| 2503 | -# target to generate assembly for a file | ||
| 2504 | -mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp23s08.c.s: | ||
| 2505 | - $(MAKE) $(MAKESILENT) -f CMakeFiles/ATTENTION_APP.dir/build.make CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp23s08.c.s | ||
| 2506 | -.PHONY : mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp23s08.c.s | ||
| 2507 | - | ||
| 2508 | -mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp23s17.o: mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp23s17.c.o | ||
| 2509 | -.PHONY : mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp23s17.o | ||
| 2510 | - | ||
| 2511 | -# target to build an object file | ||
| 2512 | -mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp23s17.c.o: | ||
| 2513 | - $(MAKE) $(MAKESILENT) -f CMakeFiles/ATTENTION_APP.dir/build.make CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp23s17.c.o | ||
| 2514 | -.PHONY : mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp23s17.c.o | ||
| 2515 | - | ||
| 2516 | -mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp23s17.i: mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp23s17.c.i | ||
| 2517 | -.PHONY : mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp23s17.i | ||
| 2518 | - | ||
| 2519 | -# target to preprocess a source file | ||
| 2520 | -mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp23s17.c.i: | ||
| 2521 | - $(MAKE) $(MAKESILENT) -f CMakeFiles/ATTENTION_APP.dir/build.make CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp23s17.c.i | ||
| 2522 | -.PHONY : mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp23s17.c.i | ||
| 2523 | - | ||
| 2524 | -mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp23s17.s: mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp23s17.c.s | ||
| 2525 | -.PHONY : mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp23s17.s | ||
| 2526 | - | ||
| 2527 | -# target to generate assembly for a file | ||
| 2528 | -mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp23s17.c.s: | ||
| 2529 | - $(MAKE) $(MAKESILENT) -f CMakeFiles/ATTENTION_APP.dir/build.make CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp23s17.c.s | ||
| 2530 | -.PHONY : mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp23s17.c.s | ||
| 2531 | - | ||
| 2532 | -mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp3002.o: mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp3002.c.o | ||
| 2533 | -.PHONY : mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp3002.o | ||
| 2534 | - | ||
| 2535 | -# target to build an object file | ||
| 2536 | -mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp3002.c.o: | ||
| 2537 | - $(MAKE) $(MAKESILENT) -f CMakeFiles/ATTENTION_APP.dir/build.make CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp3002.c.o | ||
| 2538 | -.PHONY : mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp3002.c.o | ||
| 2539 | - | ||
| 2540 | -mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp3002.i: mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp3002.c.i | ||
| 2541 | -.PHONY : mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp3002.i | ||
| 2542 | - | ||
| 2543 | -# target to preprocess a source file | ||
| 2544 | -mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp3002.c.i: | ||
| 2545 | - $(MAKE) $(MAKESILENT) -f CMakeFiles/ATTENTION_APP.dir/build.make CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp3002.c.i | ||
| 2546 | -.PHONY : mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp3002.c.i | ||
| 2547 | - | ||
| 2548 | -mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp3002.s: mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp3002.c.s | ||
| 2549 | -.PHONY : mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp3002.s | ||
| 2550 | - | ||
| 2551 | -# target to generate assembly for a file | ||
| 2552 | -mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp3002.c.s: | ||
| 2553 | - $(MAKE) $(MAKESILENT) -f CMakeFiles/ATTENTION_APP.dir/build.make CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp3002.c.s | ||
| 2554 | -.PHONY : mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp3002.c.s | ||
| 2555 | - | ||
| 2556 | -mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp3004.o: mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp3004.c.o | ||
| 2557 | -.PHONY : mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp3004.o | ||
| 2558 | - | ||
| 2559 | -# target to build an object file | ||
| 2560 | -mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp3004.c.o: | ||
| 2561 | - $(MAKE) $(MAKESILENT) -f CMakeFiles/ATTENTION_APP.dir/build.make CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp3004.c.o | ||
| 2562 | -.PHONY : mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp3004.c.o | ||
| 2563 | - | ||
| 2564 | -mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp3004.i: mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp3004.c.i | ||
| 2565 | -.PHONY : mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp3004.i | ||
| 2566 | - | ||
| 2567 | -# target to preprocess a source file | ||
| 2568 | -mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp3004.c.i: | ||
| 2569 | - $(MAKE) $(MAKESILENT) -f CMakeFiles/ATTENTION_APP.dir/build.make CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp3004.c.i | ||
| 2570 | -.PHONY : mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp3004.c.i | ||
| 2571 | - | ||
| 2572 | -mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp3004.s: mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp3004.c.s | ||
| 2573 | -.PHONY : mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp3004.s | ||
| 2574 | - | ||
| 2575 | -# target to generate assembly for a file | ||
| 2576 | -mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp3004.c.s: | ||
| 2577 | - $(MAKE) $(MAKESILENT) -f CMakeFiles/ATTENTION_APP.dir/build.make CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp3004.c.s | ||
| 2578 | -.PHONY : mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp3004.c.s | ||
| 2579 | - | ||
| 2580 | -mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp3422.o: mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp3422.c.o | ||
| 2581 | -.PHONY : mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp3422.o | ||
| 2582 | - | ||
| 2583 | -# target to build an object file | ||
| 2584 | -mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp3422.c.o: | ||
| 2585 | - $(MAKE) $(MAKESILENT) -f CMakeFiles/ATTENTION_APP.dir/build.make CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp3422.c.o | ||
| 2586 | -.PHONY : mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp3422.c.o | ||
| 2587 | - | ||
| 2588 | -mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp3422.i: mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp3422.c.i | ||
| 2589 | -.PHONY : mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp3422.i | ||
| 2590 | - | ||
| 2591 | -# target to preprocess a source file | ||
| 2592 | -mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp3422.c.i: | ||
| 2593 | - $(MAKE) $(MAKESILENT) -f CMakeFiles/ATTENTION_APP.dir/build.make CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp3422.c.i | ||
| 2594 | -.PHONY : mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp3422.c.i | ||
| 2595 | - | ||
| 2596 | -mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp3422.s: mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp3422.c.s | ||
| 2597 | -.PHONY : mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp3422.s | ||
| 2598 | - | ||
| 2599 | -# target to generate assembly for a file | ||
| 2600 | -mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp3422.c.s: | ||
| 2601 | - $(MAKE) $(MAKESILENT) -f CMakeFiles/ATTENTION_APP.dir/build.make CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp3422.c.s | ||
| 2602 | -.PHONY : mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp3422.c.s | ||
| 2603 | - | ||
| 2604 | -mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp4802.o: mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp4802.c.o | ||
| 2605 | -.PHONY : mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp4802.o | ||
| 2606 | - | ||
| 2607 | -# target to build an object file | ||
| 2608 | -mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp4802.c.o: | ||
| 2609 | - $(MAKE) $(MAKESILENT) -f CMakeFiles/ATTENTION_APP.dir/build.make CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp4802.c.o | ||
| 2610 | -.PHONY : mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp4802.c.o | ||
| 2611 | - | ||
| 2612 | -mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp4802.i: mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp4802.c.i | ||
| 2613 | -.PHONY : mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp4802.i | ||
| 2614 | - | ||
| 2615 | -# target to preprocess a source file | ||
| 2616 | -mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp4802.c.i: | ||
| 2617 | - $(MAKE) $(MAKESILENT) -f CMakeFiles/ATTENTION_APP.dir/build.make CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp4802.c.i | ||
| 2618 | -.PHONY : mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp4802.c.i | ||
| 2619 | - | ||
| 2620 | -mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp4802.s: mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp4802.c.s | ||
| 2621 | -.PHONY : mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp4802.s | ||
| 2622 | - | ||
| 2623 | -# target to generate assembly for a file | ||
| 2624 | -mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp4802.c.s: | ||
| 2625 | - $(MAKE) $(MAKESILENT) -f CMakeFiles/ATTENTION_APP.dir/build.make CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp4802.c.s | ||
| 2626 | -.PHONY : mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp4802.c.s | ||
| 2627 | - | ||
| 2628 | -mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/pcf8574.o: mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/pcf8574.c.o | ||
| 2629 | -.PHONY : mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/pcf8574.o | ||
| 2630 | - | ||
| 2631 | -# target to build an object file | ||
| 2632 | -mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/pcf8574.c.o: | ||
| 2633 | - $(MAKE) $(MAKESILENT) -f CMakeFiles/ATTENTION_APP.dir/build.make CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/pcf8574.c.o | ||
| 2634 | -.PHONY : mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/pcf8574.c.o | ||
| 2635 | - | ||
| 2636 | -mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/pcf8574.i: mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/pcf8574.c.i | ||
| 2637 | -.PHONY : mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/pcf8574.i | ||
| 2638 | - | ||
| 2639 | -# target to preprocess a source file | ||
| 2640 | -mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/pcf8574.c.i: | ||
| 2641 | - $(MAKE) $(MAKESILENT) -f CMakeFiles/ATTENTION_APP.dir/build.make CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/pcf8574.c.i | ||
| 2642 | -.PHONY : mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/pcf8574.c.i | ||
| 2643 | - | ||
| 2644 | -mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/pcf8574.s: mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/pcf8574.c.s | ||
| 2645 | -.PHONY : mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/pcf8574.s | ||
| 2646 | - | ||
| 2647 | -# target to generate assembly for a file | ||
| 2648 | -mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/pcf8574.c.s: | ||
| 2649 | - $(MAKE) $(MAKESILENT) -f CMakeFiles/ATTENTION_APP.dir/build.make CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/pcf8574.c.s | ||
| 2650 | -.PHONY : mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/pcf8574.c.s | ||
| 2651 | - | ||
| 2652 | -mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/pcf8591.o: mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/pcf8591.c.o | ||
| 2653 | -.PHONY : mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/pcf8591.o | ||
| 2654 | - | ||
| 2655 | -# target to build an object file | ||
| 2656 | -mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/pcf8591.c.o: | ||
| 2657 | - $(MAKE) $(MAKESILENT) -f CMakeFiles/ATTENTION_APP.dir/build.make CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/pcf8591.c.o | ||
| 2658 | -.PHONY : mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/pcf8591.c.o | ||
| 2659 | - | ||
| 2660 | -mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/pcf8591.i: mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/pcf8591.c.i | ||
| 2661 | -.PHONY : mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/pcf8591.i | ||
| 2662 | - | ||
| 2663 | -# target to preprocess a source file | ||
| 2664 | -mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/pcf8591.c.i: | ||
| 2665 | - $(MAKE) $(MAKESILENT) -f CMakeFiles/ATTENTION_APP.dir/build.make CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/pcf8591.c.i | ||
| 2666 | -.PHONY : mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/pcf8591.c.i | ||
| 2667 | - | ||
| 2668 | -mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/pcf8591.s: mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/pcf8591.c.s | ||
| 2669 | -.PHONY : mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/pcf8591.s | ||
| 2670 | - | ||
| 2671 | -# target to generate assembly for a file | ||
| 2672 | -mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/pcf8591.c.s: | ||
| 2673 | - $(MAKE) $(MAKESILENT) -f CMakeFiles/ATTENTION_APP.dir/build.make CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/pcf8591.c.s | ||
| 2674 | -.PHONY : mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/pcf8591.c.s | ||
| 2675 | - | ||
| 2676 | -mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/piHiPri.o: mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/piHiPri.c.o | ||
| 2677 | -.PHONY : mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/piHiPri.o | ||
| 2678 | - | ||
| 2679 | -# target to build an object file | ||
| 2680 | -mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/piHiPri.c.o: | ||
| 2681 | - $(MAKE) $(MAKESILENT) -f CMakeFiles/ATTENTION_APP.dir/build.make CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/piHiPri.c.o | ||
| 2682 | -.PHONY : mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/piHiPri.c.o | ||
| 2683 | - | ||
| 2684 | -mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/piHiPri.i: mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/piHiPri.c.i | ||
| 2685 | -.PHONY : mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/piHiPri.i | ||
| 2686 | - | ||
| 2687 | -# target to preprocess a source file | ||
| 2688 | -mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/piHiPri.c.i: | ||
| 2689 | - $(MAKE) $(MAKESILENT) -f CMakeFiles/ATTENTION_APP.dir/build.make CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/piHiPri.c.i | ||
| 2690 | -.PHONY : mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/piHiPri.c.i | ||
| 2691 | - | ||
| 2692 | -mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/piHiPri.s: mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/piHiPri.c.s | ||
| 2693 | -.PHONY : mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/piHiPri.s | ||
| 2694 | - | ||
| 2695 | -# target to generate assembly for a file | ||
| 2696 | -mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/piHiPri.c.s: | ||
| 2697 | - $(MAKE) $(MAKESILENT) -f CMakeFiles/ATTENTION_APP.dir/build.make CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/piHiPri.c.s | ||
| 2698 | -.PHONY : mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/piHiPri.c.s | ||
| 2699 | - | ||
| 2700 | -mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/piThread.o: mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/piThread.c.o | ||
| 2701 | -.PHONY : mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/piThread.o | ||
| 2702 | - | ||
| 2703 | -# target to build an object file | ||
| 2704 | -mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/piThread.c.o: | ||
| 2705 | - $(MAKE) $(MAKESILENT) -f CMakeFiles/ATTENTION_APP.dir/build.make CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/piThread.c.o | ||
| 2706 | -.PHONY : mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/piThread.c.o | ||
| 2707 | - | ||
| 2708 | -mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/piThread.i: mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/piThread.c.i | ||
| 2709 | -.PHONY : mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/piThread.i | ||
| 2710 | - | ||
| 2711 | -# target to preprocess a source file | ||
| 2712 | -mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/piThread.c.i: | ||
| 2713 | - $(MAKE) $(MAKESILENT) -f CMakeFiles/ATTENTION_APP.dir/build.make CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/piThread.c.i | ||
| 2714 | -.PHONY : mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/piThread.c.i | ||
| 2715 | - | ||
| 2716 | -mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/piThread.s: mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/piThread.c.s | ||
| 2717 | -.PHONY : mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/piThread.s | ||
| 2718 | - | ||
| 2719 | -# target to generate assembly for a file | ||
| 2720 | -mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/piThread.c.s: | ||
| 2721 | - $(MAKE) $(MAKESILENT) -f CMakeFiles/ATTENTION_APP.dir/build.make CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/piThread.c.s | ||
| 2722 | -.PHONY : mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/piThread.c.s | ||
| 2723 | - | ||
| 2724 | -mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/sn3218.o: mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/sn3218.c.o | ||
| 2725 | -.PHONY : mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/sn3218.o | ||
| 2726 | - | ||
| 2727 | -# target to build an object file | ||
| 2728 | -mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/sn3218.c.o: | ||
| 2729 | - $(MAKE) $(MAKESILENT) -f CMakeFiles/ATTENTION_APP.dir/build.make CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/sn3218.c.o | ||
| 2730 | -.PHONY : mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/sn3218.c.o | ||
| 2731 | - | ||
| 2732 | -mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/sn3218.i: mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/sn3218.c.i | ||
| 2733 | -.PHONY : mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/sn3218.i | ||
| 2734 | - | ||
| 2735 | -# target to preprocess a source file | ||
| 2736 | -mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/sn3218.c.i: | ||
| 2737 | - $(MAKE) $(MAKESILENT) -f CMakeFiles/ATTENTION_APP.dir/build.make CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/sn3218.c.i | ||
| 2738 | -.PHONY : mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/sn3218.c.i | ||
| 2739 | - | ||
| 2740 | -mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/sn3218.s: mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/sn3218.c.s | ||
| 2741 | -.PHONY : mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/sn3218.s | ||
| 2742 | - | ||
| 2743 | -# target to generate assembly for a file | ||
| 2744 | -mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/sn3218.c.s: | ||
| 2745 | - $(MAKE) $(MAKESILENT) -f CMakeFiles/ATTENTION_APP.dir/build.make CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/sn3218.c.s | ||
| 2746 | -.PHONY : mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/sn3218.c.s | ||
| 2747 | - | ||
| 2748 | -mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/softPwm.o: mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/softPwm.c.o | ||
| 2749 | -.PHONY : mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/softPwm.o | ||
| 2750 | - | ||
| 2751 | -# target to build an object file | ||
| 2752 | -mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/softPwm.c.o: | ||
| 2753 | - $(MAKE) $(MAKESILENT) -f CMakeFiles/ATTENTION_APP.dir/build.make CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/softPwm.c.o | ||
| 2754 | -.PHONY : mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/softPwm.c.o | ||
| 2755 | - | ||
| 2756 | -mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/softPwm.i: mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/softPwm.c.i | ||
| 2757 | -.PHONY : mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/softPwm.i | ||
| 2758 | - | ||
| 2759 | -# target to preprocess a source file | ||
| 2760 | -mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/softPwm.c.i: | ||
| 2761 | - $(MAKE) $(MAKESILENT) -f CMakeFiles/ATTENTION_APP.dir/build.make CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/softPwm.c.i | ||
| 2762 | -.PHONY : mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/softPwm.c.i | ||
| 2763 | - | ||
| 2764 | -mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/softPwm.s: mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/softPwm.c.s | ||
| 2765 | -.PHONY : mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/softPwm.s | ||
| 2766 | - | ||
| 2767 | -# target to generate assembly for a file | ||
| 2768 | -mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/softPwm.c.s: | ||
| 2769 | - $(MAKE) $(MAKESILENT) -f CMakeFiles/ATTENTION_APP.dir/build.make CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/softPwm.c.s | ||
| 2770 | -.PHONY : mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/softPwm.c.s | ||
| 2771 | - | ||
| 2772 | -mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/softServo.o: mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/softServo.c.o | ||
| 2773 | -.PHONY : mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/softServo.o | ||
| 2774 | - | ||
| 2775 | -# target to build an object file | ||
| 2776 | -mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/softServo.c.o: | ||
| 2777 | - $(MAKE) $(MAKESILENT) -f CMakeFiles/ATTENTION_APP.dir/build.make CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/softServo.c.o | ||
| 2778 | -.PHONY : mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/softServo.c.o | ||
| 2779 | - | ||
| 2780 | -mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/softServo.i: mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/softServo.c.i | ||
| 2781 | -.PHONY : mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/softServo.i | ||
| 2782 | - | ||
| 2783 | -# target to preprocess a source file | ||
| 2784 | -mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/softServo.c.i: | ||
| 2785 | - $(MAKE) $(MAKESILENT) -f CMakeFiles/ATTENTION_APP.dir/build.make CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/softServo.c.i | ||
| 2786 | -.PHONY : mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/softServo.c.i | ||
| 2787 | - | ||
| 2788 | -mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/softServo.s: mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/softServo.c.s | ||
| 2789 | -.PHONY : mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/softServo.s | ||
| 2790 | - | ||
| 2791 | -# target to generate assembly for a file | ||
| 2792 | -mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/softServo.c.s: | ||
| 2793 | - $(MAKE) $(MAKESILENT) -f CMakeFiles/ATTENTION_APP.dir/build.make CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/softServo.c.s | ||
| 2794 | -.PHONY : mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/softServo.c.s | ||
| 2795 | - | ||
| 2796 | -mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/softTone.o: mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/softTone.c.o | ||
| 2797 | -.PHONY : mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/softTone.o | ||
| 2798 | - | ||
| 2799 | -# target to build an object file | ||
| 2800 | -mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/softTone.c.o: | ||
| 2801 | - $(MAKE) $(MAKESILENT) -f CMakeFiles/ATTENTION_APP.dir/build.make CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/softTone.c.o | ||
| 2802 | -.PHONY : mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/softTone.c.o | ||
| 2803 | - | ||
| 2804 | -mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/softTone.i: mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/softTone.c.i | ||
| 2805 | -.PHONY : mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/softTone.i | ||
| 2806 | - | ||
| 2807 | -# target to preprocess a source file | ||
| 2808 | -mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/softTone.c.i: | ||
| 2809 | - $(MAKE) $(MAKESILENT) -f CMakeFiles/ATTENTION_APP.dir/build.make CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/softTone.c.i | ||
| 2810 | -.PHONY : mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/softTone.c.i | ||
| 2811 | - | ||
| 2812 | -mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/softTone.s: mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/softTone.c.s | ||
| 2813 | -.PHONY : mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/softTone.s | ||
| 2814 | - | ||
| 2815 | -# target to generate assembly for a file | ||
| 2816 | -mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/softTone.c.s: | ||
| 2817 | - $(MAKE) $(MAKESILENT) -f CMakeFiles/ATTENTION_APP.dir/build.make CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/softTone.c.s | ||
| 2818 | -.PHONY : mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/softTone.c.s | ||
| 2819 | - | ||
| 2820 | -mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/sr595.o: mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/sr595.c.o | ||
| 2821 | -.PHONY : mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/sr595.o | ||
| 2822 | - | ||
| 2823 | -# target to build an object file | ||
| 2824 | -mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/sr595.c.o: | ||
| 2825 | - $(MAKE) $(MAKESILENT) -f CMakeFiles/ATTENTION_APP.dir/build.make CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/sr595.c.o | ||
| 2826 | -.PHONY : mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/sr595.c.o | ||
| 2827 | - | ||
| 2828 | -mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/sr595.i: mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/sr595.c.i | ||
| 2829 | -.PHONY : mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/sr595.i | ||
| 2830 | - | ||
| 2831 | -# target to preprocess a source file | ||
| 2832 | -mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/sr595.c.i: | ||
| 2833 | - $(MAKE) $(MAKESILENT) -f CMakeFiles/ATTENTION_APP.dir/build.make CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/sr595.c.i | ||
| 2834 | -.PHONY : mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/sr595.c.i | ||
| 2835 | - | ||
| 2836 | -mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/sr595.s: mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/sr595.c.s | ||
| 2837 | -.PHONY : mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/sr595.s | ||
| 2838 | - | ||
| 2839 | -# target to generate assembly for a file | ||
| 2840 | -mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/sr595.c.s: | ||
| 2841 | - $(MAKE) $(MAKESILENT) -f CMakeFiles/ATTENTION_APP.dir/build.make CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/sr595.c.s | ||
| 2842 | -.PHONY : mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/sr595.c.s | ||
| 2843 | - | ||
| 2844 | -mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/wiringPi.o: mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/wiringPi.c.o | ||
| 2845 | -.PHONY : mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/wiringPi.o | ||
| 2846 | - | ||
| 2847 | -# target to build an object file | ||
| 2848 | -mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/wiringPi.c.o: | ||
| 2849 | - $(MAKE) $(MAKESILENT) -f CMakeFiles/ATTENTION_APP.dir/build.make CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/wiringPi.c.o | ||
| 2850 | -.PHONY : mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/wiringPi.c.o | ||
| 2851 | - | ||
| 2852 | -mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/wiringPi.i: mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/wiringPi.c.i | ||
| 2853 | -.PHONY : mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/wiringPi.i | ||
| 2854 | - | ||
| 2855 | -# target to preprocess a source file | ||
| 2856 | -mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/wiringPi.c.i: | ||
| 2857 | - $(MAKE) $(MAKESILENT) -f CMakeFiles/ATTENTION_APP.dir/build.make CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/wiringPi.c.i | ||
| 2858 | -.PHONY : mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/wiringPi.c.i | ||
| 2859 | - | ||
| 2860 | -mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/wiringPi.s: mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/wiringPi.c.s | ||
| 2861 | -.PHONY : mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/wiringPi.s | ||
| 2862 | - | ||
| 2863 | -# target to generate assembly for a file | ||
| 2864 | -mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/wiringPi.c.s: | ||
| 2865 | - $(MAKE) $(MAKESILENT) -f CMakeFiles/ATTENTION_APP.dir/build.make CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/wiringPi.c.s | ||
| 2866 | -.PHONY : mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/wiringPi.c.s | ||
| 2867 | - | ||
| 2868 | -mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/wiringPiI2C.o: mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/wiringPiI2C.c.o | ||
| 2869 | -.PHONY : mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/wiringPiI2C.o | ||
| 2870 | - | ||
| 2871 | -# target to build an object file | ||
| 2872 | -mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/wiringPiI2C.c.o: | ||
| 2873 | - $(MAKE) $(MAKESILENT) -f CMakeFiles/ATTENTION_APP.dir/build.make CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/wiringPiI2C.c.o | ||
| 2874 | -.PHONY : mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/wiringPiI2C.c.o | ||
| 2875 | - | ||
| 2876 | -mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/wiringPiI2C.i: mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/wiringPiI2C.c.i | ||
| 2877 | -.PHONY : mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/wiringPiI2C.i | ||
| 2878 | - | ||
| 2879 | -# target to preprocess a source file | ||
| 2880 | -mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/wiringPiI2C.c.i: | ||
| 2881 | - $(MAKE) $(MAKESILENT) -f CMakeFiles/ATTENTION_APP.dir/build.make CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/wiringPiI2C.c.i | ||
| 2882 | -.PHONY : mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/wiringPiI2C.c.i | ||
| 2883 | - | ||
| 2884 | -mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/wiringPiI2C.s: mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/wiringPiI2C.c.s | ||
| 2885 | -.PHONY : mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/wiringPiI2C.s | ||
| 2886 | - | ||
| 2887 | -# target to generate assembly for a file | ||
| 2888 | -mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/wiringPiI2C.c.s: | ||
| 2889 | - $(MAKE) $(MAKESILENT) -f CMakeFiles/ATTENTION_APP.dir/build.make CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/wiringPiI2C.c.s | ||
| 2890 | -.PHONY : mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/wiringPiI2C.c.s | ||
| 2891 | - | ||
| 2892 | -mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/wiringPiSPI.o: mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/wiringPiSPI.c.o | ||
| 2893 | -.PHONY : mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/wiringPiSPI.o | ||
| 2894 | - | ||
| 2895 | -# target to build an object file | ||
| 2896 | -mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/wiringPiSPI.c.o: | ||
| 2897 | - $(MAKE) $(MAKESILENT) -f CMakeFiles/ATTENTION_APP.dir/build.make CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/wiringPiSPI.c.o | ||
| 2898 | -.PHONY : mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/wiringPiSPI.c.o | ||
| 2899 | - | ||
| 2900 | -mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/wiringPiSPI.i: mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/wiringPiSPI.c.i | ||
| 2901 | -.PHONY : mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/wiringPiSPI.i | ||
| 2902 | - | ||
| 2903 | -# target to preprocess a source file | ||
| 2904 | -mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/wiringPiSPI.c.i: | ||
| 2905 | - $(MAKE) $(MAKESILENT) -f CMakeFiles/ATTENTION_APP.dir/build.make CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/wiringPiSPI.c.i | ||
| 2906 | -.PHONY : mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/wiringPiSPI.c.i | ||
| 2907 | - | ||
| 2908 | -mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/wiringPiSPI.s: mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/wiringPiSPI.c.s | ||
| 2909 | -.PHONY : mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/wiringPiSPI.s | ||
| 2910 | - | ||
| 2911 | -# target to generate assembly for a file | ||
| 2912 | -mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/wiringPiSPI.c.s: | ||
| 2913 | - $(MAKE) $(MAKESILENT) -f CMakeFiles/ATTENTION_APP.dir/build.make CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/wiringPiSPI.c.s | ||
| 2914 | -.PHONY : mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/wiringPiSPI.c.s | ||
| 2915 | - | ||
| 2916 | -mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/wiringSerial.o: mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/wiringSerial.c.o | ||
| 2917 | -.PHONY : mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/wiringSerial.o | ||
| 2918 | - | ||
| 2919 | -# target to build an object file | ||
| 2920 | -mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/wiringSerial.c.o: | ||
| 2921 | - $(MAKE) $(MAKESILENT) -f CMakeFiles/ATTENTION_APP.dir/build.make CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/wiringSerial.c.o | ||
| 2922 | -.PHONY : mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/wiringSerial.c.o | ||
| 2923 | - | ||
| 2924 | -mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/wiringSerial.i: mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/wiringSerial.c.i | ||
| 2925 | -.PHONY : mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/wiringSerial.i | ||
| 2926 | - | ||
| 2927 | -# target to preprocess a source file | ||
| 2928 | -mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/wiringSerial.c.i: | ||
| 2929 | - $(MAKE) $(MAKESILENT) -f CMakeFiles/ATTENTION_APP.dir/build.make CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/wiringSerial.c.i | ||
| 2930 | -.PHONY : mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/wiringSerial.c.i | ||
| 2931 | - | ||
| 2932 | -mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/wiringSerial.s: mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/wiringSerial.c.s | ||
| 2933 | -.PHONY : mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/wiringSerial.s | ||
| 2934 | - | ||
| 2935 | -# target to generate assembly for a file | ||
| 2936 | -mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/wiringSerial.c.s: | ||
| 2937 | - $(MAKE) $(MAKESILENT) -f CMakeFiles/ATTENTION_APP.dir/build.make CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/wiringSerial.c.s | ||
| 2938 | -.PHONY : mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/wiringSerial.c.s | ||
| 2939 | - | ||
| 2940 | -mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/wiringShift.o: mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/wiringShift.c.o | ||
| 2941 | -.PHONY : mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/wiringShift.o | ||
| 2942 | - | ||
| 2943 | -# target to build an object file | ||
| 2944 | -mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/wiringShift.c.o: | ||
| 2945 | - $(MAKE) $(MAKESILENT) -f CMakeFiles/ATTENTION_APP.dir/build.make CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/wiringShift.c.o | ||
| 2946 | -.PHONY : mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/wiringShift.c.o | ||
| 2947 | - | ||
| 2948 | -mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/wiringShift.i: mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/wiringShift.c.i | ||
| 2949 | -.PHONY : mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/wiringShift.i | ||
| 2950 | - | ||
| 2951 | -# target to preprocess a source file | ||
| 2952 | -mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/wiringShift.c.i: | ||
| 2953 | - $(MAKE) $(MAKESILENT) -f CMakeFiles/ATTENTION_APP.dir/build.make CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/wiringShift.c.i | ||
| 2954 | -.PHONY : mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/wiringShift.c.i | ||
| 2955 | - | ||
| 2956 | -mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/wiringShift.s: mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/wiringShift.c.s | ||
| 2957 | -.PHONY : mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/wiringShift.s | ||
| 2958 | - | ||
| 2959 | -# target to generate assembly for a file | ||
| 2960 | -mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/wiringShift.c.s: | ||
| 2961 | - $(MAKE) $(MAKESILENT) -f CMakeFiles/ATTENTION_APP.dir/build.make CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/wiringShift.c.s | ||
| 2962 | -.PHONY : mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/wiringShift.c.s | ||
| 2963 | - | ||
| 2964 | # Help Target | 2556 | # Help Target |
| 2965 | help: | 2557 | help: |
| 2966 | @echo "The following are some of the valid targets for this Makefile:" | 2558 | @echo "The following are some of the valid targets for this Makefile:" |
| @@ -3051,6 +2643,9 @@ help: | @@ -3051,6 +2643,9 @@ help: | ||
| 3051 | @echo "... mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/BaseConfig.o" | 2643 | @echo "... mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/BaseConfig.o" |
| 3052 | @echo "... mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/BaseConfig.i" | 2644 | @echo "... mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/BaseConfig.i" |
| 3053 | @echo "... mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/BaseConfig.s" | 2645 | @echo "... mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/BaseConfig.s" |
| 2646 | + @echo "... mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_U3_series/JZ_U3/JZ_u3.o" | ||
| 2647 | + @echo "... mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_U3_series/JZ_U3/JZ_u3.i" | ||
| 2648 | + @echo "... mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_U3_series/JZ_U3/JZ_u3.s" | ||
| 3054 | @echo "... mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/ParamterParsing.o" | 2649 | @echo "... mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/ParamterParsing.o" |
| 3055 | @echo "... mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/ParamterParsing.i" | 2650 | @echo "... mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/ParamterParsing.i" |
| 3056 | @echo "... mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/ParamterParsing.s" | 2651 | @echo "... mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/ParamterParsing.s" |
| @@ -3132,9 +2727,9 @@ help: | @@ -3132,9 +2727,9 @@ help: | ||
| 3132 | @echo "... mnt/hgfs/share/JZSDK_Linux/Module/CommonMod/Upgrade/Upgrade.o" | 2727 | @echo "... mnt/hgfs/share/JZSDK_Linux/Module/CommonMod/Upgrade/Upgrade.o" |
| 3133 | @echo "... mnt/hgfs/share/JZSDK_Linux/Module/CommonMod/Upgrade/Upgrade.i" | 2728 | @echo "... mnt/hgfs/share/JZSDK_Linux/Module/CommonMod/Upgrade/Upgrade.i" |
| 3134 | @echo "... mnt/hgfs/share/JZSDK_Linux/Module/CommonMod/Upgrade/Upgrade.s" | 2729 | @echo "... mnt/hgfs/share/JZSDK_Linux/Module/CommonMod/Upgrade/Upgrade.s" |
| 3135 | - @echo "... mnt/hgfs/share/JZSDK_Linux/Module/DeviceConfig/JZC1/JZC1.o" | ||
| 3136 | - @echo "... mnt/hgfs/share/JZSDK_Linux/Module/DeviceConfig/JZC1/JZC1.i" | ||
| 3137 | - @echo "... mnt/hgfs/share/JZSDK_Linux/Module/DeviceConfig/JZC1/JZC1.s" | 2730 | + @echo "... mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/Attribute/Attribute.o" |
| 2731 | + @echo "... mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/Attribute/Attribute.i" | ||
| 2732 | + @echo "... mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/Attribute/Attribute.s" | ||
| 3138 | @echo "... mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/DeviceInfo.o" | 2733 | @echo "... mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/DeviceInfo.o" |
| 3139 | @echo "... mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/DeviceInfo.i" | 2734 | @echo "... mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/DeviceInfo.i" |
| 3140 | @echo "... mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/DeviceInfo.s" | 2735 | @echo "... mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/DeviceInfo.s" |
| @@ -3147,6 +2742,9 @@ help: | @@ -3147,6 +2742,9 @@ help: | ||
| 3147 | @echo "... mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/SerialNumberProc/ActivateMAT/ActivateMAT.o" | 2742 | @echo "... mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/SerialNumberProc/ActivateMAT/ActivateMAT.o" |
| 3148 | @echo "... mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/SerialNumberProc/ActivateMAT/ActivateMAT.i" | 2743 | @echo "... mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/SerialNumberProc/ActivateMAT/ActivateMAT.i" |
| 3149 | @echo "... mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/SerialNumberProc/ActivateMAT/ActivateMAT.s" | 2744 | @echo "... mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/SerialNumberProc/ActivateMAT/ActivateMAT.s" |
| 2745 | + @echo "... mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/SerialNumberProc/FirewareOriginMAT/Country_Code.o" | ||
| 2746 | + @echo "... mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/SerialNumberProc/FirewareOriginMAT/Country_Code.i" | ||
| 2747 | + @echo "... mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/SerialNumberProc/FirewareOriginMAT/Country_Code.s" | ||
| 3150 | @echo "... mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/SerialNumberProc/FirewareOriginMAT/FirewareOriginMAT.o" | 2748 | @echo "... mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/SerialNumberProc/FirewareOriginMAT/FirewareOriginMAT.o" |
| 3151 | @echo "... mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/SerialNumberProc/FirewareOriginMAT/FirewareOriginMAT.i" | 2749 | @echo "... mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/SerialNumberProc/FirewareOriginMAT/FirewareOriginMAT.i" |
| 3152 | @echo "... mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/SerialNumberProc/FirewareOriginMAT/FirewareOriginMAT.s" | 2750 | @echo "... mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/SerialNumberProc/FirewareOriginMAT/FirewareOriginMAT.s" |
| @@ -3177,6 +2775,30 @@ help: | @@ -3177,6 +2775,30 @@ help: | ||
| 3177 | @echo "... mnt/hgfs/share/JZSDK_Linux/Module/Ircut/ircut.o" | 2775 | @echo "... mnt/hgfs/share/JZSDK_Linux/Module/Ircut/ircut.o" |
| 3178 | @echo "... mnt/hgfs/share/JZSDK_Linux/Module/Ircut/ircut.i" | 2776 | @echo "... mnt/hgfs/share/JZSDK_Linux/Module/Ircut/ircut.i" |
| 3179 | @echo "... mnt/hgfs/share/JZSDK_Linux/Module/Ircut/ircut.s" | 2777 | @echo "... mnt/hgfs/share/JZSDK_Linux/Module/Ircut/ircut.s" |
| 2778 | + @echo "... mnt/hgfs/share/JZSDK_Linux/Module/Lighting/Lighting_InAndOut.o" | ||
| 2779 | + @echo "... mnt/hgfs/share/JZSDK_Linux/Module/Lighting/Lighting_InAndOut.i" | ||
| 2780 | + @echo "... mnt/hgfs/share/JZSDK_Linux/Module/Lighting/Lighting_InAndOut.s" | ||
| 2781 | + @echo "... mnt/hgfs/share/JZSDK_Linux/Module/Lighting/SearchLight/SearchLightTemControl/JZ_SearchLightTemp_calculation.o" | ||
| 2782 | + @echo "... mnt/hgfs/share/JZSDK_Linux/Module/Lighting/SearchLight/SearchLightTemControl/JZ_SearchLightTemp_calculation.i" | ||
| 2783 | + @echo "... mnt/hgfs/share/JZSDK_Linux/Module/Lighting/SearchLight/SearchLightTemControl/JZ_SearchLightTemp_calculation.s" | ||
| 2784 | + @echo "... mnt/hgfs/share/JZSDK_Linux/Module/Lighting/SearchLight/SearchLightTemControl/SearchLightTemControl.o" | ||
| 2785 | + @echo "... mnt/hgfs/share/JZSDK_Linux/Module/Lighting/SearchLight/SearchLightTemControl/SearchLightTemControl.i" | ||
| 2786 | + @echo "... mnt/hgfs/share/JZSDK_Linux/Module/Lighting/SearchLight/SearchLightTemControl/SearchLightTemControl.s" | ||
| 2787 | + @echo "... mnt/hgfs/share/JZSDK_Linux/Module/Lighting/SearchLight/SearchLight_V3S/SearchLight_V3S_H1T/SearchLight_V3S_H1T.o" | ||
| 2788 | + @echo "... mnt/hgfs/share/JZSDK_Linux/Module/Lighting/SearchLight/SearchLight_V3S/SearchLight_V3S_H1T/SearchLight_V3S_H1T.i" | ||
| 2789 | + @echo "... mnt/hgfs/share/JZSDK_Linux/Module/Lighting/SearchLight/SearchLight_V3S/SearchLight_V3S_H1T/SearchLight_V3S_H1T.s" | ||
| 2790 | + @echo "... mnt/hgfs/share/JZSDK_Linux/Module/Lighting/SearchLight/SearchLight_V3S/SearchLight_V3S_TFA1/SearchLight_V3S_TFA1.o" | ||
| 2791 | + @echo "... mnt/hgfs/share/JZSDK_Linux/Module/Lighting/SearchLight/SearchLight_V3S/SearchLight_V3S_TFA1/SearchLight_V3S_TFA1.i" | ||
| 2792 | + @echo "... mnt/hgfs/share/JZSDK_Linux/Module/Lighting/SearchLight/SearchLight_V3S/SearchLight_V3S_TFA1/SearchLight_V3S_TFA1.s" | ||
| 2793 | + @echo "... mnt/hgfs/share/JZSDK_Linux/Module/Lighting/SearchLight/SearchLight_V3S/SearchLight_V3S_U3/SearchLight_V3S_U3.o" | ||
| 2794 | + @echo "... mnt/hgfs/share/JZSDK_Linux/Module/Lighting/SearchLight/SearchLight_V3S/SearchLight_V3S_U3/SearchLight_V3S_U3.i" | ||
| 2795 | + @echo "... mnt/hgfs/share/JZSDK_Linux/Module/Lighting/SearchLight/SearchLight_V3S/SearchLight_V3S_U3/SearchLight_V3S_U3.s" | ||
| 2796 | + @echo "... mnt/hgfs/share/JZSDK_Linux/Module/Lighting/WarningLight/WarningLight_V3S/WarningLight_V3S_H1T/WarningLight_V3S_H1T.o" | ||
| 2797 | + @echo "... mnt/hgfs/share/JZSDK_Linux/Module/Lighting/WarningLight/WarningLight_V3S/WarningLight_V3S_H1T/WarningLight_V3S_H1T.i" | ||
| 2798 | + @echo "... mnt/hgfs/share/JZSDK_Linux/Module/Lighting/WarningLight/WarningLight_V3S/WarningLight_V3S_H1T/WarningLight_V3S_H1T.s" | ||
| 2799 | + @echo "... mnt/hgfs/share/JZSDK_Linux/Module/Lighting/WarningLight/WarningLight_V3S/WarningLight_V3S_TFA1/WarningLight_V3S_TFA1.o" | ||
| 2800 | + @echo "... mnt/hgfs/share/JZSDK_Linux/Module/Lighting/WarningLight/WarningLight_V3S/WarningLight_V3S_TFA1/WarningLight_V3S_TFA1.i" | ||
| 2801 | + @echo "... mnt/hgfs/share/JZSDK_Linux/Module/Lighting/WarningLight/WarningLight_V3S/WarningLight_V3S_TFA1/WarningLight_V3S_TFA1.s" | ||
| 3180 | @echo "... mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/AttentionVoice/AttentionVoice.o" | 2802 | @echo "... mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/AttentionVoice/AttentionVoice.o" |
| 3181 | @echo "... mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/AttentionVoice/AttentionVoice.i" | 2803 | @echo "... mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/AttentionVoice/AttentionVoice.i" |
| 3182 | @echo "... mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/AttentionVoice/AttentionVoice.s" | 2804 | @echo "... mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/AttentionVoice/AttentionVoice.s" |
| @@ -3243,87 +2865,6 @@ help: | @@ -3243,87 +2865,6 @@ help: | ||
| 3243 | @echo "... mnt/hgfs/share/JZSDK_Linux/Module/UI_control/WidegMgmt/JZsdk_WidgetIndex.o" | 2865 | @echo "... mnt/hgfs/share/JZSDK_Linux/Module/UI_control/WidegMgmt/JZsdk_WidgetIndex.o" |
| 3244 | @echo "... mnt/hgfs/share/JZSDK_Linux/Module/UI_control/WidegMgmt/JZsdk_WidgetIndex.i" | 2866 | @echo "... mnt/hgfs/share/JZSDK_Linux/Module/UI_control/WidegMgmt/JZsdk_WidgetIndex.i" |
| 3245 | @echo "... mnt/hgfs/share/JZSDK_Linux/Module/UI_control/WidegMgmt/JZsdk_WidgetIndex.s" | 2867 | @echo "... mnt/hgfs/share/JZSDK_Linux/Module/UI_control/WidegMgmt/JZsdk_WidgetIndex.s" |
| 3246 | - @echo "... mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/boardtype_friendlyelec.o" | ||
| 3247 | - @echo "... mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/boardtype_friendlyelec.i" | ||
| 3248 | - @echo "... mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/boardtype_friendlyelec.s" | ||
| 3249 | - @echo "... mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/drcSerial.o" | ||
| 3250 | - @echo "... mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/drcSerial.i" | ||
| 3251 | - @echo "... mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/drcSerial.s" | ||
| 3252 | - @echo "... mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/max31855.o" | ||
| 3253 | - @echo "... mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/max31855.i" | ||
| 3254 | - @echo "... mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/max31855.s" | ||
| 3255 | - @echo "... mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/max5322.o" | ||
| 3256 | - @echo "... mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/max5322.i" | ||
| 3257 | - @echo "... mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/max5322.s" | ||
| 3258 | - @echo "... mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp23008.o" | ||
| 3259 | - @echo "... mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp23008.i" | ||
| 3260 | - @echo "... mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp23008.s" | ||
| 3261 | - @echo "... mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp23016.o" | ||
| 3262 | - @echo "... mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp23016.i" | ||
| 3263 | - @echo "... mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp23016.s" | ||
| 3264 | - @echo "... mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp23017.o" | ||
| 3265 | - @echo "... mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp23017.i" | ||
| 3266 | - @echo "... mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp23017.s" | ||
| 3267 | - @echo "... mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp23s08.o" | ||
| 3268 | - @echo "... mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp23s08.i" | ||
| 3269 | - @echo "... mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp23s08.s" | ||
| 3270 | - @echo "... mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp23s17.o" | ||
| 3271 | - @echo "... mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp23s17.i" | ||
| 3272 | - @echo "... mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp23s17.s" | ||
| 3273 | - @echo "... mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp3002.o" | ||
| 3274 | - @echo "... mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp3002.i" | ||
| 3275 | - @echo "... mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp3002.s" | ||
| 3276 | - @echo "... mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp3004.o" | ||
| 3277 | - @echo "... mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp3004.i" | ||
| 3278 | - @echo "... mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp3004.s" | ||
| 3279 | - @echo "... mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp3422.o" | ||
| 3280 | - @echo "... mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp3422.i" | ||
| 3281 | - @echo "... mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp3422.s" | ||
| 3282 | - @echo "... mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp4802.o" | ||
| 3283 | - @echo "... mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp4802.i" | ||
| 3284 | - @echo "... mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/mcp4802.s" | ||
| 3285 | - @echo "... mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/pcf8574.o" | ||
| 3286 | - @echo "... mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/pcf8574.i" | ||
| 3287 | - @echo "... mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/pcf8574.s" | ||
| 3288 | - @echo "... mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/pcf8591.o" | ||
| 3289 | - @echo "... mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/pcf8591.i" | ||
| 3290 | - @echo "... mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/pcf8591.s" | ||
| 3291 | - @echo "... mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/piHiPri.o" | ||
| 3292 | - @echo "... mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/piHiPri.i" | ||
| 3293 | - @echo "... mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/piHiPri.s" | ||
| 3294 | - @echo "... mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/piThread.o" | ||
| 3295 | - @echo "... mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/piThread.i" | ||
| 3296 | - @echo "... mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/piThread.s" | ||
| 3297 | - @echo "... mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/sn3218.o" | ||
| 3298 | - @echo "... mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/sn3218.i" | ||
| 3299 | - @echo "... mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/sn3218.s" | ||
| 3300 | - @echo "... mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/softPwm.o" | ||
| 3301 | - @echo "... mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/softPwm.i" | ||
| 3302 | - @echo "... mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/softPwm.s" | ||
| 3303 | - @echo "... mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/softServo.o" | ||
| 3304 | - @echo "... mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/softServo.i" | ||
| 3305 | - @echo "... mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/softServo.s" | ||
| 3306 | - @echo "... mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/softTone.o" | ||
| 3307 | - @echo "... mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/softTone.i" | ||
| 3308 | - @echo "... mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/softTone.s" | ||
| 3309 | - @echo "... mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/sr595.o" | ||
| 3310 | - @echo "... mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/sr595.i" | ||
| 3311 | - @echo "... mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/sr595.s" | ||
| 3312 | - @echo "... mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/wiringPi.o" | ||
| 3313 | - @echo "... mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/wiringPi.i" | ||
| 3314 | - @echo "... mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/wiringPi.s" | ||
| 3315 | - @echo "... mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/wiringPiI2C.o" | ||
| 3316 | - @echo "... mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/wiringPiI2C.i" | ||
| 3317 | - @echo "... mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/wiringPiI2C.s" | ||
| 3318 | - @echo "... mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/wiringPiSPI.o" | ||
| 3319 | - @echo "... mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/wiringPiSPI.i" | ||
| 3320 | - @echo "... mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/wiringPiSPI.s" | ||
| 3321 | - @echo "... mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/wiringSerial.o" | ||
| 3322 | - @echo "... mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/wiringSerial.i" | ||
| 3323 | - @echo "... mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/wiringSerial.s" | ||
| 3324 | - @echo "... mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/wiringShift.o" | ||
| 3325 | - @echo "... mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/wiringShift.i" | ||
| 3326 | - @echo "... mnt/hgfs/share/JZSDK_Linux/ThirdParty/wiringPi/wiringShift.s" | ||
| 3327 | .PHONY : help | 2868 | .PHONY : help |
| 3328 | 2869 | ||
| 3329 | 2870 |
| @@ -118,15 +118,20 @@ T_DjiReturnCode DjiTest_XPortStartService(void) | @@ -118,15 +118,20 @@ T_DjiReturnCode DjiTest_XPortStartService(void) | ||
| 118 | return djiStat; | 118 | return djiStat; |
| 119 | } | 119 | } |
| 120 | 120 | ||
| 121 | + //航向轴关节角 | ||
| 121 | if (aircraftInfoBaseInfo.mountPosition == DJI_MOUNT_POSITION_PAYLOAD_PORT_NO1) { | 122 | if (aircraftInfoBaseInfo.mountPosition == DJI_MOUNT_POSITION_PAYLOAD_PORT_NO1) { |
| 122 | limitAngle.upperLimit = 300; | 123 | limitAngle.upperLimit = 300; |
| 123 | - limitAngle.lowerLimit = -900; | 124 | + //limitAngle.lowerLimit = -900; |
| 125 | + limitAngle.lowerLimit = -300; | ||
| 124 | } else if (aircraftInfoBaseInfo.mountPosition == DJI_MOUNT_POSITION_PAYLOAD_PORT_NO2) { | 126 | } else if (aircraftInfoBaseInfo.mountPosition == DJI_MOUNT_POSITION_PAYLOAD_PORT_NO2) { |
| 125 | - limitAngle.upperLimit = 900; | 127 | + //limitAngle.upperLimit = 900; |
| 128 | + limitAngle.upperLimit = 300; | ||
| 126 | limitAngle.lowerLimit = -300; | 129 | limitAngle.lowerLimit = -300; |
| 127 | } else if (aircraftInfoBaseInfo.mountPosition == DJI_MOUNT_POSITION_PAYLOAD_PORT_NO3) { | 130 | } else if (aircraftInfoBaseInfo.mountPosition == DJI_MOUNT_POSITION_PAYLOAD_PORT_NO3) { |
| 128 | - limitAngle.upperLimit = 900; | ||
| 129 | - limitAngle.lowerLimit = -900; | 131 | + // limitAngle.upperLimit = 900; |
| 132 | + // limitAngle.lowerLimit = -900; | ||
| 133 | + limitAngle.upperLimit = 300; | ||
| 134 | + limitAngle.lowerLimit = -300; | ||
| 130 | } else { | 135 | } else { |
| 131 | USER_LOG_WARN("payload mount position is unknown."); | 136 | USER_LOG_WARN("payload mount position is unknown."); |
| 132 | return DJI_ERROR_SYSTEM_MODULE_CODE_SYSTEM_ERROR; | 137 | return DJI_ERROR_SYSTEM_MODULE_CODE_SYSTEM_ERROR; |
| 1 | # cmake 最低版本要求 第三行名字不能动 | 1 | # cmake 最低版本要求 第三行名字不能动 |
| 2 | cmake_minimum_required(VERSION 2.8) | 2 | cmake_minimum_required(VERSION 2.8) |
| 3 | -project(JZ_C1) | 3 | +project(JZ_U3D) |
| 4 | 4 | ||
| 5 | #set(CMAKE_C_FLAGS "-pthread -std=gnu99 -lm -ldl -lstdc++") | 5 | #set(CMAKE_C_FLAGS "-pthread -std=gnu99 -lm -ldl -lstdc++") |
| 6 | #"-pthread":指定在编译时链接POSIX线程库,以支持多线程程序。 | 6 | #"-pthread":指定在编译时链接POSIX线程库,以支持多线程程序。 |
| @@ -46,18 +46,18 @@ extern "C" { | @@ -46,18 +46,18 @@ extern "C" { | ||
| 46 | #define USER_DEVELOPER_ACCOUNT "dev@tfan.cn" | 46 | #define USER_DEVELOPER_ACCOUNT "dev@tfan.cn" |
| 47 | #define USER_BAUD_RATE "230400" | 47 | #define USER_BAUD_RATE "230400" |
| 48 | #else | 48 | #else |
| 49 | - // #define USER_APP_NAME "H110" | ||
| 50 | - // #define USER_APP_ID "107188" | ||
| 51 | - // #define USER_APP_KEY "33df9ca77f3e8dc1df4d06cbd6237d3" | ||
| 52 | - // #define USER_APP_LICENSE "qHRtELC2A04PRBt1xOJ1pqkowJ2OZqwdAUPqOVc7WcWwVIR3Fnadjakhl0i7F1wnFNUKELlDLaDsCYLIhkzOd0kDPQcCksVk3Dla498xLD3Z1b5BcI+hlZXETwTmi+7Td0k1E3Rnt9OPGdqrA8W9mBg333EGGjARFGDfaK2BHhDexUE8yLoVhwkqk3t/0wV8kbyrlZzKsvo0kMUifbALCoLPoCO622Rdu056z+opYUX1OlXCGhDxVSDD43Oaab5bupcC4CGrmkpfiCvS78H7Uinc9b9Xf5Ocy373Cpoet7blux66DOiH5muSQVcrY3gnVKQVk7GRnO6piQh9mKHDdQ==" | ||
| 53 | - // #define USER_DEVELOPER_ACCOUNT "jizhisdk@163.com" | ||
| 54 | - | ||
| 55 | - #define USER_APP_NAME "T30V2" | ||
| 56 | - #define USER_APP_ID "157783" | ||
| 57 | - #define USER_APP_KEY "da4b1f33362243ec2f5d684c7d4d904" | ||
| 58 | - #define USER_APP_LICENSE "jxtZU+COCz+nC6iQHpKY0NUKR7t3r6Uy0pcG9dIl+bfJ/tVREvRauRM+eo/MyvuIS2zzt0dGHMg7BmlnI8L42apzDwjN7jseLkP3/3qOczuwZgCTuMQziaItBloa7UjIdBAlDdKuiA92mcGc8BOKZTOIuCMfnNFNd3oD6V6RzAEf2D5WuofyXvc4N0/dVwH5oGvBuA/v+3Yt142xl0lhugfT5Rd9NjUIZ+9EXYMwImceUmNZjmbFNPwBVUPEGaA4HooN2yRDmfZl2qQMQsVgkEytg/kjgRkTOwcT+4h5Vw4VyXZXyeNqLOqJdy1fg0QdlT4YO6vVLo7uJHuRqz89nA==" | 49 | + #define USER_APP_NAME "H110" |
| 50 | + #define USER_APP_ID "107188" | ||
| 51 | + #define USER_APP_KEY "33df9ca77f3e8dc1df4d06cbd6237d3" | ||
| 52 | + #define USER_APP_LICENSE "qHRtELC2A04PRBt1xOJ1pqkowJ2OZqwdAUPqOVc7WcWwVIR3Fnadjakhl0i7F1wnFNUKELlDLaDsCYLIhkzOd0kDPQcCksVk3Dla498xLD3Z1b5BcI+hlZXETwTmi+7Td0k1E3Rnt9OPGdqrA8W9mBg333EGGjARFGDfaK2BHhDexUE8yLoVhwkqk3t/0wV8kbyrlZzKsvo0kMUifbALCoLPoCO622Rdu056z+opYUX1OlXCGhDxVSDD43Oaab5bupcC4CGrmkpfiCvS78H7Uinc9b9Xf5Ocy373Cpoet7blux66DOiH5muSQVcrY3gnVKQVk7GRnO6piQh9mKHDdQ==" | ||
| 59 | #define USER_DEVELOPER_ACCOUNT "jizhisdk@163.com" | 53 | #define USER_DEVELOPER_ACCOUNT "jizhisdk@163.com" |
| 60 | 54 | ||
| 55 | + // #define USER_APP_NAME "T30V2" | ||
| 56 | + // #define USER_APP_ID "157783" | ||
| 57 | + // #define USER_APP_KEY "da4b1f33362243ec2f5d684c7d4d904" | ||
| 58 | + // #define USER_APP_LICENSE "jxtZU+COCz+nC6iQHpKY0NUKR7t3r6Uy0pcG9dIl+bfJ/tVREvRauRM+eo/MyvuIS2zzt0dGHMg7BmlnI8L42apzDwjN7jseLkP3/3qOczuwZgCTuMQziaItBloa7UjIdBAlDdKuiA92mcGc8BOKZTOIuCMfnNFNd3oD6V6RzAEf2D5WuofyXvc4N0/dVwH5oGvBuA/v+3Yt142xl0lhugfT5Rd9NjUIZ+9EXYMwImceUmNZjmbFNPwBVUPEGaA4HooN2yRDmfZl2qQMQsVgkEytg/kjgRkTOwcT+4h5Vw4VyXZXyeNqLOqJdy1fg0QdlT4YO6vVLo7uJHuRqz89nA==" | ||
| 59 | + // #define USER_DEVELOPER_ACCOUNT "jizhisdk@163.com" | ||
| 60 | + | ||
| 61 | #if (DEVICE_VERSION == JZ_H1T || DEVICE_VERSION == JZ_H1E || DEVICE_VERSION == JZ_U3|| DEVICE_VERSION == JZ_U3S || DEVICE_VERSION == JZ_U3D || DEVICE_VERSION == JZ_U30) | 61 | #if (DEVICE_VERSION == JZ_H1T || DEVICE_VERSION == JZ_H1E || DEVICE_VERSION == JZ_U3|| DEVICE_VERSION == JZ_U3S || DEVICE_VERSION == JZ_U3D || DEVICE_VERSION == JZ_U30) |
| 62 | #define USER_BAUD_RATE "921600" | 62 | #define USER_BAUD_RATE "921600" |
| 63 | #elif (DEVICE_VERSION == JZ_H150S || DEVICE_VERSION == JZ_H150T || DEVICE_VERSION == JZ_H10 || DEVICE_VERSION == JZ_C1) | 63 | #elif (DEVICE_VERSION == JZ_H150S || DEVICE_VERSION == JZ_H150T || DEVICE_VERSION == JZ_H10 || DEVICE_VERSION == JZ_C1) |
-
请 注册 或 登录 后发表评论