作者 ookk303

加入新振膜滤波,其实已经是2.20了

正在显示 29 个修改的文件 包含 516 行增加243 行删除
1 # 编译链的配置 1 # 编译链的配置
2 2
3 #1、编译链与设备类型的选择 3 #1、编译链与设备类型的选择
4 -set(DEVICE_NAME JZ_H1E) 4 +set(DEVICE_NAME JZ_U3S)
5 #上一行为禁止修改行 5 #上一行为禁止修改行
6 6
7 message("**************************JZSDK构建编译开始***************************\n") 7 message("**************************JZSDK构建编译开始***************************\n")
@@ -7,6 +7,7 @@ @@ -7,6 +7,7 @@
7 #define JZSDK_LOG_PATH "/root/sdcard/JZLOG/" //sd卡存放路径 7 #define JZSDK_LOG_PATH "/root/sdcard/JZLOG/" //sd卡存放路径
8 #define JZSDK_LOG_INDEX_PATH "/root/JZLOG/" //sd卡存放序号文件路径 8 #define JZSDK_LOG_INDEX_PATH "/root/JZLOG/" //sd卡存放序号文件路径
9 #define JZSDK_LOG_INDEX_FILE_NAME "/root/JZLOG/thelast" //sd卡存放序号文件路径 9 #define JZSDK_LOG_INDEX_FILE_NAME "/root/JZLOG/thelast" //sd卡存放序号文件路径
  10 +#define JZSDK_LOG_SD_INDEX_FILE_NAME "/root/sdcard/JZLOG/thelast" //sd卡存放序号文件路径
10 11
11 #define JZ_LOG_FOLDER_NAME_MAX_SIZE (32) 12 #define JZ_LOG_FOLDER_NAME_MAX_SIZE (32)
12 #define JZ_LOG_MAX_COUNT (10) 13 #define JZ_LOG_MAX_COUNT (10)
@@ -91,6 +92,15 @@ static T_JZsdkReturnCode JzUser_LocalWriteFsInit(const JZ_U8 *path) @@ -91,6 +92,15 @@ static T_JZsdkReturnCode JzUser_LocalWriteFsInit(const JZ_U8 *path)
91 return JZ_ERROR_SYSTEM_MODULE_CODE_FAILURE; 92 return JZ_ERROR_SYSTEM_MODULE_CODE_FAILURE;
92 } 93 }
93 94
  95 + //1、检查sd卡的计数文件是否存在, 如果不存在,则移除系统的计数文件
  96 + if (JZsdk_check_file_exists(JZSDK_LOG_SD_INDEX_FILE_NAME) != JZ_ERROR_SYSTEM_MODULE_CODE_SUCCESS)
  97 + {
  98 + memset(systemCmd, 0, sizeof(systemCmd));
  99 + sprintf(systemCmd, "rm -f %s", JZSDK_LOG_INDEX_FILE_NAME);
  100 + ret = system(systemCmd);
  101 + }
  102 +
  103 + //2、打开计数文件,获取当前日志文件序号,并更新日志文件序号
94 logFileCnt = fopen(JZSDK_LOG_INDEX_FILE_NAME, "rb+"); 104 logFileCnt = fopen(JZSDK_LOG_INDEX_FILE_NAME, "rb+");
95 if (logFileCnt == NULL) 105 if (logFileCnt == NULL)
96 { 106 {
@@ -7,23 +7,23 @@ @@ -7,23 +7,23 @@
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_H1E 10 +#define DEVICE_VERSION JZ_U3S
11 11
12 //禁止修改行 选择是串口程序 还是 psdk程序 12 //禁止修改行 选择是串口程序 还是 psdk程序
13 -#define APP_VERSION APP_UART 13 +#define APP_VERSION APP_PSDK
14 14
15 //禁止修改行 板子型号 15 //禁止修改行 板子型号
16 #define PLATFORM_VERSION PLATFORM_V3S 16 #define PLATFORM_VERSION PLATFORM_V3S
17 17
18 //禁止修改行 串口连接程序的软件版本号 18 //禁止修改行 串口连接程序的软件版本号
19 #define MAJOR_VERSION_TEN_POSITION 0 19 #define MAJOR_VERSION_TEN_POSITION 0
20 -#define MAJOR_VERSION_ONE_POSITION 0 20 +#define MAJOR_VERSION_ONE_POSITION 1
21 #define MINOR_VERSION_TEN_POSITION 0 21 #define MINOR_VERSION_TEN_POSITION 0
22 -#define MINOR_VERSION_ONE_POSITION 0  
23 -#define MODIFY_VERSION_TEN_POSITION 0  
24 -#define MODIFY_VERSION_ONE_POSITION 2  
25 -#define DEBUG_VERSION_TEN_POSITION 1  
26 -#define DEBUG_VERSION_ONE_POSITION 9 22 +#define MINOR_VERSION_ONE_POSITION 3
  23 +#define MODIFY_VERSION_TEN_POSITION 1
  24 +#define MODIFY_VERSION_ONE_POSITION 1
  25 +#define DEBUG_VERSION_TEN_POSITION 0
  26 +#define DEBUG_VERSION_ONE_POSITION 3
27 27
28 28
29 29
@@ -2970,8 +2970,6 @@ static T_JZsdkReturnCode RecvDeal_SearchLight_Control(int Port, char *getbuf) @@ -2970,8 +2970,6 @@ static T_JZsdkReturnCode RecvDeal_SearchLight_Control(int Port, char *getbuf)
2970 **********/ 2970 **********/
2971 static T_JZsdkReturnCode RecvDeal_SearchLight_Lumen(int Port, char *getbuf) 2971 static T_JZsdkReturnCode RecvDeal_SearchLight_Lumen(int Port, char *getbuf)
2972 { 2972 {
2973 - JZSDK_LOG_INFO("%s,设置灯光亮度",JZsdk_DefineCode_GetPortName(Port));  
2974 -  
2975 //获取帧的序列号 2973 //获取帧的序列号
2976 int FrameSequence = JZsdk_Get_FrameSequence(getbuf); 2974 int FrameSequence = JZsdk_Get_FrameSequence(getbuf);
2977 2975
@@ -2979,6 +2977,8 @@ static T_JZsdkReturnCode RecvDeal_SearchLight_Lumen(int Port, char *getbuf) @@ -2979,6 +2977,8 @@ static T_JZsdkReturnCode RecvDeal_SearchLight_Lumen(int Port, char *getbuf)
2979 int LeftLumen = getbuf[9]; //左灯亮度 2977 int LeftLumen = getbuf[9]; //左灯亮度
2980 int RightLumen = getbuf[10]; //右灯亮度 2978 int RightLumen = getbuf[10]; //右灯亮度
2981 2979
  2980 + JZSDK_LOG_INFO("%s,设置灯光亮度 %d %d",JZsdk_DefineCode_GetPortName(Port), LeftLumen, RightLumen);
  2981 +
2982 T_JZsdkReturnCode ret = UIcontrol_Set_SearchLightLumen(Port, 1, LeftLumen, RightLumen); 2982 T_JZsdkReturnCode ret = UIcontrol_Set_SearchLightLumen(Port, 1, LeftLumen, RightLumen);
2983 if (ret == JZ_ERROR_SYSTEM_MODULE_CODE_SUCCESS) 2983 if (ret == JZ_ERROR_SYSTEM_MODULE_CODE_SUCCESS)
2984 { 2984 {
@@ -9,6 +9,7 @@ @@ -9,6 +9,7 @@
9 #include "../SerialNumberProc/SerialProc.h" 9 #include "../SerialNumberProc/SerialProc.h"
10 #include "Gimbal/Gimbal.h" 10 #include "Gimbal/Gimbal.h"
11 #include "UI_control/Psdk_UI_io.h" 11 #include "UI_control/Psdk_UI_io.h"
  12 +#include "DeviceInfo/Attribute/Attribute.h"
12 13
13 #ifdef MEGAPHONE_CONFIG_STATUS_ON 14 #ifdef MEGAPHONE_CONFIG_STATUS_ON
14 #include "Megaphone/Megaphone.h" 15 #include "Megaphone/Megaphone.h"
@@ -242,12 +243,15 @@ static T_JZsdkReturnCode DeviceMessage_Enter_Default(unsigned char *message) @@ -242,12 +243,15 @@ static T_JZsdkReturnCode DeviceMessage_Enter_Default(unsigned char *message)
242 memset(gps_y_str,0,sizeof(gps_y_str)); 243 memset(gps_y_str,0,sizeof(gps_y_str));
243 244
244 Attribute_GetGpsXYZ_ByStr(gps_x_str,gps_y_str,&gps_z); 245 Attribute_GetGpsXYZ_ByStr(gps_x_str,gps_y_str,&gps_z);
245 - Attribute_GetTime_ByI( &gps_year,&gps_month,&gps_day,&gps_hour,&gps_minute,&gps_second); 246 +
  247 + T_JZsdkAttributeGpsTime gpsTime = Attribute_GetGpsTime();
  248 + t_JZdateTime dt;
  249 + JZsdk_convert_gpstime(gpsTime, &dt);
246 250
247 memset(new_message,0,sizeof(new_message)); 251 memset(new_message,0,sizeof(new_message));
248 memset(old_message,0,sizeof(old_message)); 252 memset(old_message,0,sizeof(old_message));
249 253
250 - snprintf(new_message,MESSAGE_MAX_LEN,"GPS:%s %s\n%d-%d-%d %d:%d:%d\n",gps_x_str,gps_y_str,gps_year,gps_month,gps_day,gps_hour,gps_minute,gps_second); 254 + snprintf(new_message,MESSAGE_MAX_LEN,"GPS:%s %s\n%d-%d-%d %d:%d:%d\n",gps_x_str,gps_y_str,dt.year,dt.month,dt.day,dt.hour,dt.minute,dt.second);
251 snprintf(old_message,MESSAGE_MAX_LEN,"%s",message); 255 snprintf(old_message,MESSAGE_MAX_LEN,"%s",message);
252 snprintf(message,MESSAGE_MAX_LEN,"%s%s",old_message,new_message); 256 snprintf(message,MESSAGE_MAX_LEN,"%s%s",old_message,new_message);
253 257
@@ -51,13 +51,18 @@ extern "C" { @@ -51,13 +51,18 @@ extern "C" {
51 // #define MAX_TTS_VOLUME (70) 51 // #define MAX_TTS_VOLUME (70)
52 52
53 //2025 4 10 改滤波 降低到u85% 53 //2025 4 10 改滤波 降低到u85%
54 - #define MAX_VOLUME (52) 54 + // 55 58 串口音量118.4 飞机文本115-116,放歌118.1
  55 + // 54 57 串口文本,117-118 飞机文本115.3,歌117.6
  56 +
  57 + #define MAX_VOLUME (54)
55 #define MAX_TTS_VOLUME (57) 58 #define MAX_TTS_VOLUME (57)
56 59
57 #elif DEVICE_VERSION == JZ_H10T 60 #elif DEVICE_VERSION == JZ_H10T
58 // #define MAX_VOLUME (83) 61 // #define MAX_VOLUME (83)
59 // #define MAX_TTS_VOLUME (83) 62 // #define MAX_TTS_VOLUME (83)
60 63
  64 + //70 74 串口文本 116.3-117.5 飞机放歌116.6-117.0
  65 +
61 //2025 4 10 改滤波 降低到u56% 66 //2025 4 10 改滤波 降低到u56%
62 #define MAX_VOLUME (70) 67 #define MAX_VOLUME (70)
63 #define MAX_TTS_VOLUME (74) 68 #define MAX_TTS_VOLUME (74)
@@ -67,32 +72,32 @@ extern "C" { @@ -67,32 +72,32 @@ extern "C" {
67 // #define MAX_TTS_VOLUME (82) 72 // #define MAX_TTS_VOLUME (82)
68 73
69 //2025 4 10 改滤波 降低到u53% 74 //2025 4 10 改滤波 降低到u53%
70 - #define MAX_VOLUME (66)  
71 - #define MAX_TTS_VOLUME (73) 75 +#define MAX_VOLUME (63)
  76 + #define MAX_TTS_VOLUME (70)
72 77
73 #elif DEVICE_VERSION == JZ_U3D 78 #elif DEVICE_VERSION == JZ_U3D
74 // #define MAX_VOLUME (73) 79 // #define MAX_VOLUME (73)
75 // #define MAX_TTS_VOLUME (81) 80 // #define MAX_TTS_VOLUME (81)
76 81
77 //2025 4 10 改滤波 降低到u53% 82 //2025 4 10 改滤波 降低到u53%
78 - #define MAX_VOLUME (66)  
79 - #define MAX_TTS_VOLUME (73) 83 +#define MAX_VOLUME (63)
  84 + #define MAX_TTS_VOLUME (70)
80 85
81 #elif DEVICE_VERSION == JZ_U30 86 #elif DEVICE_VERSION == JZ_U30
82 // #define MAX_VOLUME (74) 87 // #define MAX_VOLUME (74)
83 // #define MAX_TTS_VOLUME (82) 88 // #define MAX_TTS_VOLUME (82)
84 89
85 //2025 4 10 改滤波 降低到u53% 90 //2025 4 10 改滤波 降低到u53%
86 - #define MAX_VOLUME (66)  
87 - #define MAX_TTS_VOLUME (73) 91 +#define MAX_VOLUME (63)
  92 + #define MAX_TTS_VOLUME (70)
88 93
89 #elif DEVICE_VERSION == JZ_U3S 94 #elif DEVICE_VERSION == JZ_U3S
90 // #define MAX_VOLUME (74) 95 // #define MAX_VOLUME (74)
91 // #define MAX_TTS_VOLUME (82) 96 // #define MAX_TTS_VOLUME (82)
92 97
93 //2025 4 10 改滤波 降低到u53% 98 //2025 4 10 改滤波 降低到u53%
94 - #define MAX_VOLUME (66)  
95 - #define MAX_TTS_VOLUME (73) 99 + #define MAX_VOLUME (63)
  100 + #define MAX_TTS_VOLUME (70)
96 101
97 #elif DEVICE_VERSION == TF_A1 102 #elif DEVICE_VERSION == TF_A1
98 #define MAX_VOLUME (75) 103 #define MAX_VOLUME (75)
1 #include "JZsdkLib.h" 1 #include "JZsdkLib.h"
2 #include "Megaphone.h" 2 #include "Megaphone.h"
3 #include "./VolumeLimit.h" 3 #include "./VolumeLimit.h"
  4 +#include "DeviceInfo/DeviceInfo.h"
4 5
5 6
6 //喊话器的ui音量 7 //喊话器的ui音量
@@ -121,7 +122,7 @@ static T_JZsdkReturnCode Megaphone_SetTTSvolume() @@ -121,7 +122,7 @@ static T_JZsdkReturnCode Megaphone_SetTTSvolume()
121 { 122 {
122 if (value > 0) 123 if (value > 0)
123 { 124 {
124 - value = 20 + value * 10/8; 125 + value = 20 + value * 8/10;
125 } 126 }
126 } 127 }
127 128
@@ -172,7 +173,7 @@ T_JZsdkReturnCode Megaphone_SetVolume(int value, int mode)//设置音量,音 @@ -172,7 +173,7 @@ T_JZsdkReturnCode Megaphone_SetVolume(int value, int mode)//设置音量,音
172 { 173 {
173 if (value > 0) 174 if (value > 0)
174 { 175 {
175 - value = 20 + value * 10/8; 176 + value = 20 + value * 8/10;
176 } 177 }
177 } 178 }
178 179
@@ -258,8 +259,7 @@ static T_JZsdkReturnCode Megaphone_MaxVolume_Init() @@ -258,8 +259,7 @@ static T_JZsdkReturnCode Megaphone_MaxVolume_Init()
258 g_Max_volume = MAX_VOLUME; 259 g_Max_volume = MAX_VOLUME;
259 g_TTS_Max_volume = MAX_TTS_VOLUME; 260 g_TTS_Max_volume = MAX_TTS_VOLUME;
260 261
261 - if (DEVICE_VERSION == JZ_H1T)  
262 - { 262 +#if DEVICE_VERSION == JZ_H1T
263 //检索版本号,从2板子改成1板子的h1t改动 263 //检索版本号,从2板子改成1板子的h1t改动
264 if (HardwareInfo_GetVersion(0) == 0x01 264 if (HardwareInfo_GetVersion(0) == 0x01
265 && HardwareInfo_GetVersion(1) == 0x02 265 && HardwareInfo_GetVersion(1) == 0x02
@@ -267,40 +267,65 @@ static T_JZsdkReturnCode Megaphone_MaxVolume_Init() @@ -267,40 +267,65 @@ static T_JZsdkReturnCode Megaphone_MaxVolume_Init()
267 && HardwareInfo_GetVersion(3) == 0x00 267 && HardwareInfo_GetVersion(3) == 0x00
268 ) 268 )
269 { 269 {
  270 + JZSDK_LOG_INFO("H1t二代");
270 g_Max_volume = MAX_VOLUME; 271 g_Max_volume = MAX_VOLUME;
271 g_TTS_Max_volume = MAX_TTS_VOLUME; 272 g_TTS_Max_volume = MAX_TTS_VOLUME;
272 } 273 }
273 274
274 //检索版本号,振膜更换版本 275 //检索版本号,振膜更换版本
275 else if (HardwareInfo_GetVersion(0) == 25 276 else if (HardwareInfo_GetVersion(0) == 25
276 - && HardwareInfo_GetVersion(1) == 04  
277 - && HardwareInfo_GetVersion(2) == 21  
278 - && HardwareInfo_GetVersion(3) == 0x00 277 + && HardwareInfo_GetVersion(1) == 5
  278 + && HardwareInfo_GetVersion(2) == 15
  279 + && HardwareInfo_GetVersion(3) == 0
279 ) 280 )
280 { 281 {
281 - g_Max_volume = MAX_VOLUME * 100 / 94;  
282 - g_TTS_Max_volume = MAX_TTS_VOLUME * 100 / 94; 282 + JZSDK_LOG_INFO("音量为振膜更换版本");
  283 + g_Max_volume = MAX_VOLUME * 89 / 100;
  284 + g_TTS_Max_volume = MAX_TTS_VOLUME * 89 / 100;
283 } 285 }
284 286
285 //最初的h1t板子音量 287 //最初的h1t板子音量
286 else 288 else
287 { 289 {
288 - g_Max_volume = 70;  
289 - g_TTS_Max_volume = 78; 290 + //旧板子71 78 的时候 新板子75 84
  291 + JZSDK_LOG_INFO("音量为最初h1t硬件");
  292 + // g_Max_volume = MAX_VOLUME * 71/75;
  293 + // g_TTS_Max_volume = MAX_TTS_VOLUME * 78/84;
  294 +
  295 + g_Max_volume = MAX_VOLUME * 115/100;
  296 + g_TTS_Max_volume = MAX_TTS_VOLUME * 115/100;
290 } 297 }
  298 +
  299 +#elif DEVICE_VERSION == JZ_H1E
  300 + //检索版本号,振膜更换版本
  301 + if (HardwareInfo_GetVersion(0) == 25
  302 + && HardwareInfo_GetVersion(1) == 5
  303 + && HardwareInfo_GetVersion(2) == 15
  304 + && HardwareInfo_GetVersion(3) == 0
  305 + )
  306 + {
  307 + JZSDK_LOG_INFO("音量为振膜更换版本");
  308 + g_Max_volume = MAX_VOLUME * 90 / 100;
  309 + g_TTS_Max_volume = MAX_TTS_VOLUME * 90 / 100;
291 } 310 }
292 311
293 - else if(DEVICE_VERSION == JZ_H1E) 312 + else
294 { 313 {
  314 + g_Max_volume = MAX_VOLUME;
  315 + g_TTS_Max_volume = MAX_TTS_VOLUME;
  316 + }
  317 +
  318 +#elif DEVICE_VERSION == JZ_H150S || DEVICE_VERSION == JZ_H150T
295 //检索版本号,振膜更换版本 319 //检索版本号,振膜更换版本
296 if (HardwareInfo_GetVersion(0) == 25 320 if (HardwareInfo_GetVersion(0) == 25
297 - && HardwareInfo_GetVersion(1) == 04  
298 - && HardwareInfo_GetVersion(2) == 21  
299 - && HardwareInfo_GetVersion(3) == 0x00 321 + && HardwareInfo_GetVersion(1) == 5
  322 + && HardwareInfo_GetVersion(2) == 15
  323 + && HardwareInfo_GetVersion(3) == 0
300 ) 324 )
301 { 325 {
302 - g_Max_volume = MAX_VOLUME * 100 / 94;  
303 - g_TTS_Max_volume = MAX_TTS_VOLUME * 100 / 94; 326 + JZSDK_LOG_INFO("音量为振膜更换版本");
  327 + g_Max_volume = MAX_VOLUME * 85 / 100;
  328 + g_TTS_Max_volume = MAX_TTS_VOLUME * 85 / 100;
304 } 329 }
305 330
306 else 331 else
@@ -308,19 +333,38 @@ static T_JZsdkReturnCode Megaphone_MaxVolume_Init() @@ -308,19 +333,38 @@ static T_JZsdkReturnCode Megaphone_MaxVolume_Init()
308 g_Max_volume = MAX_VOLUME; 333 g_Max_volume = MAX_VOLUME;
309 g_TTS_Max_volume = MAX_TTS_VOLUME; 334 g_TTS_Max_volume = MAX_TTS_VOLUME;
310 } 335 }
  336 +
  337 +#elif DEVICE_VERSION == JZ_H10
  338 +
  339 + //检索版本号,振膜更换版本
  340 + if (HardwareInfo_GetVersion(0) == 25
  341 + && HardwareInfo_GetVersion(1) == 5
  342 + && HardwareInfo_GetVersion(2) == 15
  343 + && HardwareInfo_GetVersion(3) == 0
  344 + )
  345 + {
  346 + JZSDK_LOG_INFO("音量为振膜更换版本");
  347 + g_Max_volume = MAX_VOLUME * 85 / 100;
  348 + g_TTS_Max_volume = MAX_TTS_VOLUME * 85 / 100;
311 } 349 }
312 350
313 - else if (DEBUG_VERSION == JZ_H150S / JZ_H150T) 351 + else
314 { 352 {
  353 + g_Max_volume = MAX_VOLUME;
  354 + g_TTS_Max_volume = MAX_TTS_VOLUME;
  355 + }
  356 +
  357 +#elif DEVICE_VERSION == JZ_H10T
315 //检索版本号,振膜更换版本 358 //检索版本号,振膜更换版本
316 if (HardwareInfo_GetVersion(0) == 25 359 if (HardwareInfo_GetVersion(0) == 25
317 - && HardwareInfo_GetVersion(1) == 04  
318 - && HardwareInfo_GetVersion(2) == 21  
319 - && HardwareInfo_GetVersion(3) == 0x00 360 + && HardwareInfo_GetVersion(1) == 5
  361 + && HardwareInfo_GetVersion(2) == 15
  362 + && HardwareInfo_GetVersion(3) == 0
320 ) 363 )
321 { 364 {
322 - g_Max_volume = MAX_VOLUME * 100 / 94;  
323 - g_TTS_Max_volume = MAX_TTS_VOLUME * 100 / 94; 365 + JZSDK_LOG_INFO("音量为振膜更换版本");
  366 + g_Max_volume = MAX_VOLUME * 85 / 100;
  367 + g_TTS_Max_volume = MAX_TTS_VOLUME * 85 / 100;
324 } 368 }
325 369
326 else 370 else
@@ -328,7 +372,48 @@ static T_JZsdkReturnCode Megaphone_MaxVolume_Init() @@ -328,7 +372,48 @@ static T_JZsdkReturnCode Megaphone_MaxVolume_Init()
328 g_Max_volume = MAX_VOLUME; 372 g_Max_volume = MAX_VOLUME;
329 g_TTS_Max_volume = MAX_TTS_VOLUME; 373 g_TTS_Max_volume = MAX_TTS_VOLUME;
330 } 374 }
  375 +
  376 +#elif DEVICE_VERSION == JZ_U3S || DEVICE_VERSION == JZ_U3
  377 +
  378 + //检索版本号,振膜更换版本
  379 + if (HardwareInfo_GetVersion(0) == 25
  380 + && HardwareInfo_GetVersion(1) == 5
  381 + && HardwareInfo_GetVersion(2) == 15
  382 + && HardwareInfo_GetVersion(3) == 0
  383 + )
  384 + {
  385 + JZSDK_LOG_INFO("音量为振膜更换版本");
  386 +
  387 + g_Max_volume = MAX_VOLUME * 95 / 100;
  388 + g_TTS_Max_volume = MAX_TTS_VOLUME * 95 / 100;
331 } 389 }
  390 + else
  391 + {
  392 + g_Max_volume = MAX_VOLUME;
  393 + g_TTS_Max_volume = MAX_TTS_VOLUME;
  394 + }
  395 +
  396 +#elif DEVICE_VERSION == JZ_U3D || DEVICE_VERSION == JZ_U30
  397 +
  398 + //检索版本号,振膜更换版本
  399 + if (HardwareInfo_GetVersion(0) == 25
  400 + && HardwareInfo_GetVersion(1) == 5
  401 + && HardwareInfo_GetVersion(2) == 15
  402 + && HardwareInfo_GetVersion(3) == 0
  403 + )
  404 + {
  405 + JZSDK_LOG_INFO("音量为振膜更换版本");
  406 + g_Max_volume = MAX_VOLUME * 95 / 100;
  407 + g_TTS_Max_volume = MAX_TTS_VOLUME * 95 / 100;
  408 + }
  409 +
  410 + else
  411 + {
  412 + g_Max_volume = MAX_VOLUME;
  413 + g_TTS_Max_volume = MAX_TTS_VOLUME;
  414 + }
  415 +
  416 +#endif
332 417
333 JZSDK_LOG_INFO("MaxV:%d MaxTTS_V:%d",g_Max_volume, g_TTS_Max_volume); 418 JZSDK_LOG_INFO("MaxV:%d MaxTTS_V:%d",g_Max_volume, g_TTS_Max_volume);
334 419
@@ -40,6 +40,14 @@ X、没记录忘了 @@ -40,6 +40,14 @@ X、没记录忘了
40 5、修改了串口数据接收的打印的内容,以减少打印的量 40 5、修改了串口数据接收的打印的内容,以减少打印的量
41 41
42 42
  43 +# 版本0.0.2.19 2025年5月15日
  44 +1、修改了滤波的参数
  45 +2、修改了音量参数
  46 +3、修改了日志的写入方式
  47 +4、给灯控的亮度加入的日志显示
  48 +
  49 +# 版本0.0.2.20 2025年5月16日
  50 +1、在2.19的基础上,增加了因为振膜改动,给h1e h1t增加了振膜的硬件号烧录
43 51
44 # 待更新计划 52 # 待更新计划
45 更好的功放控制手段 53 更好的功放控制手段
@@ -33,7 +33,7 @@ set(CMAKE_DEPENDS_CHECK_C @@ -33,7 +33,7 @@ set(CMAKE_DEPENDS_CHECK_C
33 "/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_TaskManagement/TaskManagement.c" "/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_TaskManagement/TaskManagement.c.o" 33 "/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_TaskManagement/TaskManagement.c" "/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_TaskManagement/TaskManagement.c.o"
34 "/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_TaskManagement/TaskMgmt_sample.c" "/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_TaskManagement/TaskMgmt_sample.c.o" 34 "/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_TaskManagement/TaskMgmt_sample.c" "/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_TaskManagement/TaskMgmt_sample.c.o"
35 "/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/BaseConfig.c" "/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/BaseConfig.c.o" 35 "/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/BaseConfig.c" "/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/BaseConfig.c.o"
36 - "/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_H1_series/JZ_H1E/JZ_h1e.c" "/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_H1_series/JZ_H1E/JZ_h1e.c.o" 36 + "/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_U3_series/JZ_U3/JZ_u3.c" "/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_U3_series/JZ_U3/JZ_u3.c.o"
37 "/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/ParamterParsing.c" "/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/ParamterParsing.c.o" 37 "/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/ParamterParsing.c" "/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/ParamterParsing.c.o"
38 "/mnt/hgfs/share/JZSDK_Linux/JZsdk_hal/Hal_Recv/HalRecv.c" "/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_hal/Hal_Recv/HalRecv.c.o" 38 "/mnt/hgfs/share/JZSDK_Linux/JZsdk_hal/Hal_Recv/HalRecv.c" "/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_hal/Hal_Recv/HalRecv.c.o"
39 "/mnt/hgfs/share/JZSDK_Linux/JZsdk_hal/Hal_Recv/HalRecv_type1/HalRecv_type1.c" "/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_hal/Hal_Recv/HalRecv_type1/HalRecv_type1.c.o" 39 "/mnt/hgfs/share/JZSDK_Linux/JZsdk_hal/Hal_Recv/HalRecv_type1/HalRecv_type1.c" "/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_hal/Hal_Recv/HalRecv_type1/HalRecv_type1.c.o"
@@ -105,28 +105,28 @@ CMakeFiles/ATTENTION_APP.dir/application/Megaphone_Attention.c.o.provides: CMake @@ -105,28 +105,28 @@ CMakeFiles/ATTENTION_APP.dir/application/Megaphone_Attention.c.o.provides: CMake
105 CMakeFiles/ATTENTION_APP.dir/application/Megaphone_Attention.c.o.provides.build: CMakeFiles/ATTENTION_APP.dir/application/Megaphone_Attention.c.o 105 CMakeFiles/ATTENTION_APP.dir/application/Megaphone_Attention.c.o.provides.build: CMakeFiles/ATTENTION_APP.dir/application/Megaphone_Attention.c.o
106 106
107 107
108 -CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_H1_series/JZ_H1E/JZ_h1e.c.o: CMakeFiles/ATTENTION_APP.dir/flags.make  
109 -CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_H1_series/JZ_H1E/JZ_h1e.c.o: /mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_H1_series/JZ_H1E/JZ_h1e.c  
110 - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Building C object CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_H1_series/JZ_H1E/JZ_h1e.c.o"  
111 - /usr/local/arm/4.9.3/bin/arm-cortexa9-linux-gnueabihf-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_H1_series/JZ_H1E/JZ_h1e.c.o -c /mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_H1_series/JZ_H1E/JZ_h1e.c 108 +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/flags.make
  109 +CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_U3_series/JZ_U3/JZ_u3.c.o: /mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_U3_series/JZ_U3/JZ_u3.c
  110 + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Building C object CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_U3_series/JZ_U3/JZ_u3.c.o"
  111 + /usr/local/arm/4.9.3/bin/arm-cortexa9-linux-gnueabihf-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_U3_series/JZ_U3/JZ_u3.c.o -c /mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_U3_series/JZ_U3/JZ_u3.c
112 112
113 -CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_H1_series/JZ_H1E/JZ_h1e.c.i: cmake_force  
114 - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_H1_series/JZ_H1E/JZ_h1e.c.i"  
115 - /usr/local/arm/4.9.3/bin/arm-cortexa9-linux-gnueabihf-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_H1_series/JZ_H1E/JZ_h1e.c > CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_H1_series/JZ_H1E/JZ_h1e.c.i 113 +CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_U3_series/JZ_U3/JZ_u3.c.i: cmake_force
  114 + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_U3_series/JZ_U3/JZ_u3.c.i"
  115 + /usr/local/arm/4.9.3/bin/arm-cortexa9-linux-gnueabihf-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /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.i
116 116
117 -CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_H1_series/JZ_H1E/JZ_h1e.c.s: cmake_force  
118 - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_H1_series/JZ_H1E/JZ_h1e.c.s"  
119 - /usr/local/arm/4.9.3/bin/arm-cortexa9-linux-gnueabihf-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_H1_series/JZ_H1E/JZ_h1e.c -o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_H1_series/JZ_H1E/JZ_h1e.c.s 117 +CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_U3_series/JZ_U3/JZ_u3.c.s: cmake_force
  118 + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_U3_series/JZ_U3/JZ_u3.c.s"
  119 + /usr/local/arm/4.9.3/bin/arm-cortexa9-linux-gnueabihf-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /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_Config/DeviceSample/JZ_U3_series/JZ_U3/JZ_u3.c.s
120 120
121 -CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_H1_series/JZ_H1E/JZ_h1e.c.o.requires: 121 +CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_U3_series/JZ_U3/JZ_u3.c.o.requires:
122 122
123 -.PHONY : CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_H1_series/JZ_H1E/JZ_h1e.c.o.requires 123 +.PHONY : CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_U3_series/JZ_U3/JZ_u3.c.o.requires
124 124
125 -CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_H1_series/JZ_H1E/JZ_h1e.c.o.provides: CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_H1_series/JZ_H1E/JZ_h1e.c.o.requires  
126 - $(MAKE) -f CMakeFiles/ATTENTION_APP.dir/build.make CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_H1_series/JZ_H1E/JZ_h1e.c.o.provides.build  
127 -.PHONY : CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_H1_series/JZ_H1E/JZ_h1e.c.o.provides 125 +CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_U3_series/JZ_U3/JZ_u3.c.o.provides: CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_U3_series/JZ_U3/JZ_u3.c.o.requires
  126 + $(MAKE) -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.provides.build
  127 +.PHONY : CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_U3_series/JZ_U3/JZ_u3.c.o.provides
128 128
129 -CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_H1_series/JZ_H1E/JZ_h1e.c.o.provides.build: CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_H1_series/JZ_H1E/JZ_h1e.c.o 129 +CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_U3_series/JZ_U3/JZ_u3.c.o.provides.build: CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_U3_series/JZ_U3/JZ_u3.c.o
130 130
131 131
132 CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdkLib.c.o: CMakeFiles/ATTENTION_APP.dir/flags.make 132 CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdkLib.c.o: CMakeFiles/ATTENTION_APP.dir/flags.make
@@ -2605,7 +2605,7 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/UI_control/WidegM @@ -2605,7 +2605,7 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/UI_control/WidegM
2605 ATTENTION_APP_OBJECTS = \ 2605 ATTENTION_APP_OBJECTS = \
2606 "CMakeFiles/ATTENTION_APP.dir/application/main.c.o" \ 2606 "CMakeFiles/ATTENTION_APP.dir/application/main.c.o" \
2607 "CMakeFiles/ATTENTION_APP.dir/application/Megaphone_Attention.c.o" \ 2607 "CMakeFiles/ATTENTION_APP.dir/application/Megaphone_Attention.c.o" \
2608 -"CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_H1_series/JZ_H1E/JZ_h1e.c.o" \ 2608 +"CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_U3_series/JZ_U3/JZ_u3.c.o" \
2609 "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdkLib.c.o" \ 2609 "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdkLib.c.o" \
2610 "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_Code/JZsdk_DefineCode.c.o" \ 2610 "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_Code/JZsdk_DefineCode.c.o" \
2611 "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_Code/JZsdk_DeviceCode.c.o" \ 2611 "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_Code/JZsdk_DeviceCode.c.o" \
@@ -2715,7 +2715,7 @@ ATTENTION_APP_EXTERNAL_OBJECTS = @@ -2715,7 +2715,7 @@ ATTENTION_APP_EXTERNAL_OBJECTS =
2715 2715
2716 ATTENTION_APP: CMakeFiles/ATTENTION_APP.dir/application/main.c.o 2716 ATTENTION_APP: CMakeFiles/ATTENTION_APP.dir/application/main.c.o
2717 ATTENTION_APP: CMakeFiles/ATTENTION_APP.dir/application/Megaphone_Attention.c.o 2717 ATTENTION_APP: CMakeFiles/ATTENTION_APP.dir/application/Megaphone_Attention.c.o
2718 -ATTENTION_APP: CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_H1_series/JZ_H1E/JZ_h1e.c.o 2718 +ATTENTION_APP: CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_U3_series/JZ_U3/JZ_u3.c.o
2719 ATTENTION_APP: CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdkLib.c.o 2719 ATTENTION_APP: CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdkLib.c.o
2720 ATTENTION_APP: CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_Code/JZsdk_DefineCode.c.o 2720 ATTENTION_APP: CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_Code/JZsdk_DefineCode.c.o
2721 ATTENTION_APP: CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_Code/JZsdk_DeviceCode.c.o 2721 ATTENTION_APP: CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_Code/JZsdk_DeviceCode.c.o
@@ -2846,7 +2846,7 @@ CMakeFiles/ATTENTION_APP.dir/build: ATTENTION_APP @@ -2846,7 +2846,7 @@ CMakeFiles/ATTENTION_APP.dir/build: ATTENTION_APP
2846 2846
2847 CMakeFiles/ATTENTION_APP.dir/requires: CMakeFiles/ATTENTION_APP.dir/application/main.c.o.requires 2847 CMakeFiles/ATTENTION_APP.dir/requires: CMakeFiles/ATTENTION_APP.dir/application/main.c.o.requires
2848 CMakeFiles/ATTENTION_APP.dir/requires: CMakeFiles/ATTENTION_APP.dir/application/Megaphone_Attention.c.o.requires 2848 CMakeFiles/ATTENTION_APP.dir/requires: CMakeFiles/ATTENTION_APP.dir/application/Megaphone_Attention.c.o.requires
2849 -CMakeFiles/ATTENTION_APP.dir/requires: CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_H1_series/JZ_H1E/JZ_h1e.c.o.requires 2849 +CMakeFiles/ATTENTION_APP.dir/requires: CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_U3_series/JZ_U3/JZ_u3.c.o.requires
2850 CMakeFiles/ATTENTION_APP.dir/requires: CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdkLib.c.o.requires 2850 CMakeFiles/ATTENTION_APP.dir/requires: CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdkLib.c.o.requires
2851 CMakeFiles/ATTENTION_APP.dir/requires: CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_Code/JZsdk_DefineCode.c.o.requires 2851 CMakeFiles/ATTENTION_APP.dir/requires: CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_Code/JZsdk_DefineCode.c.o.requires
2852 CMakeFiles/ATTENTION_APP.dir/requires: CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_Code/JZsdk_DeviceCode.c.o.requires 2852 CMakeFiles/ATTENTION_APP.dir/requires: CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_Code/JZsdk_DeviceCode.c.o.requires
1 file(REMOVE_RECURSE 1 file(REMOVE_RECURSE
2 "CMakeFiles/ATTENTION_APP.dir/application/main.c.o" 2 "CMakeFiles/ATTENTION_APP.dir/application/main.c.o"
3 "CMakeFiles/ATTENTION_APP.dir/application/Megaphone_Attention.c.o" 3 "CMakeFiles/ATTENTION_APP.dir/application/Megaphone_Attention.c.o"
4 - "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_H1_series/JZ_H1E/JZ_h1e.c.o" 4 + "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_U3_series/JZ_U3/JZ_u3.c.o"
5 "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdkLib.c.o" 5 "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdkLib.c.o"
6 "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_Code/JZsdk_DefineCode.c.o" 6 "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_Code/JZsdk_DefineCode.c.o"
7 "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_Code/JZsdk_DeviceCode.c.o" 7 "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_Code/JZsdk_DeviceCode.c.o"
@@ -714,64 +714,65 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/BaseConfig. @@ -714,64 +714,65 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/BaseConfig.
714 CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/BaseConfig.c.o: /mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/TF_A1/TF_a1.h 714 CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/BaseConfig.c.o: /mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/TF_A1/TF_a1.h
715 CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/BaseConfig.c.o: /mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/version_choose.h 715 CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/BaseConfig.c.o: /mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/version_choose.h
716 716
717 -CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_H1_series/JZ_H1E/JZ_h1e.c.o: ../../../JZsdk_Common/JZsdkLib.h  
718 -CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_H1_series/JZ_H1E/JZ_h1e.c.o: ../../../JZsdk_Common/JZsdk_Base/JZsdkBase.h  
719 -CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_H1_series/JZ_H1E/JZ_h1e.c.o: ../../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_DefineCode.h  
720 -CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_H1_series/JZ_H1E/JZ_h1e.c.o: ../../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_DeviceCode.h  
721 -CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_H1_series/JZ_H1E/JZ_h1e.c.o: ../../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_FLagCode.h  
722 -CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_H1_series/JZ_H1E/JZ_h1e.c.o: ../../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_InsCode.h  
723 -CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_H1_series/JZ_H1E/JZ_h1e.c.o: ../../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h  
724 -CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_H1_series/JZ_H1E/JZ_h1e.c.o: ../../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h  
725 -CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_H1_series/JZ_H1E/JZ_h1e.c.o: ../../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_WidgetCode.h  
726 -CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_H1_series/JZ_H1E/JZ_h1e.c.o: ../../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h  
727 -CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_H1_series/JZ_H1E/JZ_h1e.c.o: ../../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h  
728 -CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_H1_series/JZ_H1E/JZ_h1e.c.o: ../../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_typedef.h  
729 -CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_H1_series/JZ_H1E/JZ_h1e.c.o: ../../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/JZsdk_AttributeDef.h  
730 -CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_H1_series/JZ_H1E/JZ_h1e.c.o: ../../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/JZsdk_typedef.h  
731 -CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_H1_series/JZ_H1E/JZ_h1e.c.o: ../../../JZsdk_Common/JZsdk_Base/JZsdk_Code/JZsdk_Code.h  
732 -CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_H1_series/JZ_H1E/JZ_h1e.c.o: ../../../JZsdk_Common/JZsdk_Base/JZsdk_Code/JZsdk_DeviceCode.h  
733 -CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_H1_series/JZ_H1E/JZ_h1e.c.o: ../../../JZsdk_Common/JZsdk_Base/JZsdk_Code/JZsdk_FLagCode.h  
734 -CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_H1_series/JZ_H1E/JZ_h1e.c.o: ../../../JZsdk_Common/JZsdk_Base/JZsdk_Code/JZsdk_Platform/JZsdk_Platform.h  
735 -CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_H1_series/JZ_H1E/JZ_h1e.c.o: ../../../JZsdk_Common/JZsdk_Base/JZsdk_Code/JZsdk_typedef/JZsdk_typedef.h  
736 -CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_H1_series/JZ_H1E/JZ_h1e.c.o: ../../../JZsdk_Common/JZsdk_Base/JZsdk_Logger/JZsdk_Logger.h  
737 -CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_H1_series/JZ_H1E/JZ_h1e.c.o: ../../../JZsdk_Common/JZsdk_Base/JZsdk_Osal/./JZsdk_CheckSum/JZsdk_CheckSum.h  
738 -CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_H1_series/JZ_H1E/JZ_h1e.c.o: ../../../JZsdk_Common/JZsdk_Base/JZsdk_Osal/./JZsdk_FileSystm/JZsdk_FileSystm.h  
739 -CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_H1_series/JZ_H1E/JZ_h1e.c.o: ../../../JZsdk_Common/JZsdk_Base/JZsdk_Osal/./JZsdk_MemoryAdapter/JZsdk_MemoryAdapter.h  
740 -CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_H1_series/JZ_H1E/JZ_h1e.c.o: ../../../JZsdk_Common/JZsdk_Base/JZsdk_Osal/./JZsdk_Mutex/JZsdk_Mutex.h  
741 -CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_H1_series/JZ_H1E/JZ_h1e.c.o: ../../../JZsdk_Common/JZsdk_Base/JZsdk_Osal/./JZsdk_Semaphore/JZsdk_Semaphore.h  
742 -CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_H1_series/JZ_H1E/JZ_h1e.c.o: ../../../JZsdk_Common/JZsdk_Base/JZsdk_Osal/./JZsdk_Task/JZsdk_Task.h  
743 -CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_H1_series/JZ_H1E/JZ_h1e.c.o: ../../../JZsdk_Common/JZsdk_Base/JZsdk_Osal/./JZsdk_Timer/JZsdk_Timer.h  
744 -CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_H1_series/JZ_H1E/JZ_h1e.c.o: ../../../JZsdk_Common/JZsdk_Base/JZsdk_Osal/JZsdk_Osal.h  
745 -CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_H1_series/JZ_H1E/JZ_h1e.c.o: ../../../JZsdk_Common/JZsdk_CommonFuntion/JZsdkCommonFuntion.h  
746 -CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_H1_series/JZ_H1E/JZ_h1e.c.o: ../../../JZsdk_Common/JZsdk_CommonFuntion/JZsdk_math/JZsdk_math.h  
747 -CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_H1_series/JZ_H1E/JZ_h1e.c.o: ../../../JZsdk_Common/JZsdk_CommonFuntion/JZsdk_string/JZsdk_string.h  
748 -CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_H1_series/JZ_H1E/JZ_h1e.c.o: ../../../JZsdk_Common/JZsdk_TaskManagement/TaskManagement.h  
749 -CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_H1_series/JZ_H1E/JZ_h1e.c.o: ../../../JZsdk_Config/./ParamterParsing.h  
750 -CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_H1_series/JZ_H1E/JZ_h1e.c.o: ../../../JZsdk_Config/BaseConfig.h  
751 -CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_H1_series/JZ_H1E/JZ_h1e.c.o: ../../../JZsdk_Config/version_choose.h  
752 -CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_H1_series/JZ_H1E/JZ_h1e.c.o: ../../../JZsdk_hal/JZsdk_Hal.h  
753 -CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_H1_series/JZ_H1E/JZ_h1e.c.o: ../../../Module/AudioDeal/AudioDeal.h  
754 -CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_H1_series/JZ_H1E/JZ_h1e.c.o: ../../../Module/Megaphone/Megaphone.h  
755 -CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_H1_series/JZ_H1E/JZ_h1e.c.o: ../../../Module/Megaphone/PlayBack/Megaphone_PlayBack.h  
756 -CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_H1_series/JZ_H1E/JZ_h1e.c.o: ../../../ThirdParty/ffmpeg_6_0/include/libavutil/attributes.h  
757 -CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_H1_series/JZ_H1E/JZ_h1e.c.o: ../../../ThirdParty/ffmpeg_6_0/include/libavutil/avconfig.h  
758 -CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_H1_series/JZ_H1E/JZ_h1e.c.o: ../../../ThirdParty/ffmpeg_6_0/include/libavutil/avutil.h  
759 -CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_H1_series/JZ_H1E/JZ_h1e.c.o: ../../../ThirdParty/ffmpeg_6_0/include/libavutil/buffer.h  
760 -CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_H1_series/JZ_H1E/JZ_h1e.c.o: ../../../ThirdParty/ffmpeg_6_0/include/libavutil/channel_layout.h  
761 -CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_H1_series/JZ_H1E/JZ_h1e.c.o: ../../../ThirdParty/ffmpeg_6_0/include/libavutil/common.h  
762 -CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_H1_series/JZ_H1E/JZ_h1e.c.o: ../../../ThirdParty/ffmpeg_6_0/include/libavutil/dict.h  
763 -CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_H1_series/JZ_H1E/JZ_h1e.c.o: ../../../ThirdParty/ffmpeg_6_0/include/libavutil/error.h  
764 -CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_H1_series/JZ_H1E/JZ_h1e.c.o: ../../../ThirdParty/ffmpeg_6_0/include/libavutil/frame.h  
765 -CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_H1_series/JZ_H1E/JZ_h1e.c.o: ../../../ThirdParty/ffmpeg_6_0/include/libavutil/intfloat.h  
766 -CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_H1_series/JZ_H1E/JZ_h1e.c.o: ../../../ThirdParty/ffmpeg_6_0/include/libavutil/log.h  
767 -CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_H1_series/JZ_H1E/JZ_h1e.c.o: ../../../ThirdParty/ffmpeg_6_0/include/libavutil/macros.h  
768 -CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_H1_series/JZ_H1E/JZ_h1e.c.o: ../../../ThirdParty/ffmpeg_6_0/include/libavutil/mathematics.h  
769 -CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_H1_series/JZ_H1E/JZ_h1e.c.o: ../../../ThirdParty/ffmpeg_6_0/include/libavutil/mem.h  
770 -CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_H1_series/JZ_H1E/JZ_h1e.c.o: ../../../ThirdParty/ffmpeg_6_0/include/libavutil/pixfmt.h  
771 -CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_H1_series/JZ_H1E/JZ_h1e.c.o: ../../../ThirdParty/ffmpeg_6_0/include/libavutil/rational.h  
772 -CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_H1_series/JZ_H1E/JZ_h1e.c.o: ../../../ThirdParty/ffmpeg_6_0/include/libavutil/samplefmt.h  
773 -CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_H1_series/JZ_H1E/JZ_h1e.c.o: ../../../ThirdParty/ffmpeg_6_0/include/libavutil/version.h  
774 -CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_H1_series/JZ_H1E/JZ_h1e.c.o: /mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_H1_series/JZ_H1E/JZ_h1e.c 717 +CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_U3_series/JZ_U3/JZ_u3.c.o: ../../../JZsdk_Common/JZsdkLib.h
  718 +CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_U3_series/JZ_U3/JZ_u3.c.o: ../../../JZsdk_Common/JZsdk_Base/JZsdkBase.h
  719 +CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_U3_series/JZ_U3/JZ_u3.c.o: ../../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_DefineCode.h
  720 +CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_U3_series/JZ_U3/JZ_u3.c.o: ../../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_DeviceCode.h
  721 +CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_U3_series/JZ_U3/JZ_u3.c.o: ../../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_FLagCode.h
  722 +CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_U3_series/JZ_U3/JZ_u3.c.o: ../../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_InsCode.h
  723 +CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_U3_series/JZ_U3/JZ_u3.c.o: ../../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_Platform/JZsdk_Platform.h
  724 +CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_U3_series/JZ_U3/JZ_u3.c.o: ../../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode/JZsdk_ReturnCode.h
  725 +CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_U3_series/JZ_U3/JZ_u3.c.o: ../../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_WidgetCode.h
  726 +CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_U3_series/JZ_U3/JZ_u3.c.o: ../../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_ErrorCodeDef.h
  727 +CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_U3_series/JZ_U3/JZ_u3.c.o: ../../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_FileTypeDef.h
  728 +CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_U3_series/JZ_U3/JZ_u3.c.o: ../../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/./JZsdk_typedef.h
  729 +CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_U3_series/JZ_U3/JZ_u3.c.o: ../../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/JZsdk_AttributeDef.h
  730 +CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_U3_series/JZ_U3/JZ_u3.c.o: ../../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_typedef/JZsdk_typedef.h
  731 +CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_U3_series/JZ_U3/JZ_u3.c.o: ../../../JZsdk_Common/JZsdk_Base/JZsdk_Code/JZsdk_Code.h
  732 +CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_U3_series/JZ_U3/JZ_u3.c.o: ../../../JZsdk_Common/JZsdk_Base/JZsdk_Code/JZsdk_DeviceCode.h
  733 +CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_U3_series/JZ_U3/JZ_u3.c.o: ../../../JZsdk_Common/JZsdk_Base/JZsdk_Code/JZsdk_FLagCode.h
  734 +CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_U3_series/JZ_U3/JZ_u3.c.o: ../../../JZsdk_Common/JZsdk_Base/JZsdk_Code/JZsdk_Platform/JZsdk_Platform.h
  735 +CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_U3_series/JZ_U3/JZ_u3.c.o: ../../../JZsdk_Common/JZsdk_Base/JZsdk_Code/JZsdk_typedef/JZsdk_typedef.h
  736 +CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_U3_series/JZ_U3/JZ_u3.c.o: ../../../JZsdk_Common/JZsdk_Base/JZsdk_Logger/JZsdk_Logger.h
  737 +CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_U3_series/JZ_U3/JZ_u3.c.o: ../../../JZsdk_Common/JZsdk_Base/JZsdk_Osal/./JZsdk_CheckSum/JZsdk_CheckSum.h
  738 +CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_U3_series/JZ_U3/JZ_u3.c.o: ../../../JZsdk_Common/JZsdk_Base/JZsdk_Osal/./JZsdk_FileSystm/JZsdk_FileSystm.h
  739 +CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_U3_series/JZ_U3/JZ_u3.c.o: ../../../JZsdk_Common/JZsdk_Base/JZsdk_Osal/./JZsdk_MemoryAdapter/JZsdk_MemoryAdapter.h
  740 +CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_U3_series/JZ_U3/JZ_u3.c.o: ../../../JZsdk_Common/JZsdk_Base/JZsdk_Osal/./JZsdk_Mutex/JZsdk_Mutex.h
  741 +CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_U3_series/JZ_U3/JZ_u3.c.o: ../../../JZsdk_Common/JZsdk_Base/JZsdk_Osal/./JZsdk_Semaphore/JZsdk_Semaphore.h
  742 +CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_U3_series/JZ_U3/JZ_u3.c.o: ../../../JZsdk_Common/JZsdk_Base/JZsdk_Osal/./JZsdk_Task/JZsdk_Task.h
  743 +CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_U3_series/JZ_U3/JZ_u3.c.o: ../../../JZsdk_Common/JZsdk_Base/JZsdk_Osal/./JZsdk_Timer/JZsdk_Timer.h
  744 +CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_U3_series/JZ_U3/JZ_u3.c.o: ../../../JZsdk_Common/JZsdk_Base/JZsdk_Osal/JZsdk_Osal.h
  745 +CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_U3_series/JZ_U3/JZ_u3.c.o: ../../../JZsdk_Common/JZsdk_CommonFuntion/JZsdkCommonFuntion.h
  746 +CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_U3_series/JZ_U3/JZ_u3.c.o: ../../../JZsdk_Common/JZsdk_CommonFuntion/JZsdk_math/JZsdk_math.h
  747 +CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_U3_series/JZ_U3/JZ_u3.c.o: ../../../JZsdk_Common/JZsdk_CommonFuntion/JZsdk_string/JZsdk_string.h
  748 +CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_U3_series/JZ_U3/JZ_u3.c.o: ../../../JZsdk_Common/JZsdk_TaskManagement/TaskManagement.h
  749 +CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_U3_series/JZ_U3/JZ_u3.c.o: ../../../JZsdk_Config/./ParamterParsing.h
  750 +CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_U3_series/JZ_U3/JZ_u3.c.o: ../../../JZsdk_Config/BaseConfig.h
  751 +CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_U3_series/JZ_U3/JZ_u3.c.o: ../../../JZsdk_Config/version_choose.h
  752 +CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_U3_series/JZ_U3/JZ_u3.c.o: ../../../JZsdk_hal/JZsdk_Hal.h
  753 +CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_U3_series/JZ_U3/JZ_u3.c.o: ../../../Module/AudioDeal/AudioDeal.h
  754 +CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_U3_series/JZ_U3/JZ_u3.c.o: ../../../Module/Gimbal/Gimbal.h
  755 +CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_U3_series/JZ_U3/JZ_u3.c.o: ../../../Module/Megaphone/Megaphone.h
  756 +CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_U3_series/JZ_U3/JZ_u3.c.o: ../../../Module/Megaphone/PlayBack/Megaphone_PlayBack.h
  757 +CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_U3_series/JZ_U3/JZ_u3.c.o: ../../../ThirdParty/ffmpeg_6_0/include/libavutil/attributes.h
  758 +CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_U3_series/JZ_U3/JZ_u3.c.o: ../../../ThirdParty/ffmpeg_6_0/include/libavutil/avconfig.h
  759 +CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_U3_series/JZ_U3/JZ_u3.c.o: ../../../ThirdParty/ffmpeg_6_0/include/libavutil/avutil.h
  760 +CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_U3_series/JZ_U3/JZ_u3.c.o: ../../../ThirdParty/ffmpeg_6_0/include/libavutil/buffer.h
  761 +CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_U3_series/JZ_U3/JZ_u3.c.o: ../../../ThirdParty/ffmpeg_6_0/include/libavutil/channel_layout.h
  762 +CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_U3_series/JZ_U3/JZ_u3.c.o: ../../../ThirdParty/ffmpeg_6_0/include/libavutil/common.h
  763 +CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_U3_series/JZ_U3/JZ_u3.c.o: ../../../ThirdParty/ffmpeg_6_0/include/libavutil/dict.h
  764 +CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_U3_series/JZ_U3/JZ_u3.c.o: ../../../ThirdParty/ffmpeg_6_0/include/libavutil/error.h
  765 +CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_U3_series/JZ_U3/JZ_u3.c.o: ../../../ThirdParty/ffmpeg_6_0/include/libavutil/frame.h
  766 +CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_U3_series/JZ_U3/JZ_u3.c.o: ../../../ThirdParty/ffmpeg_6_0/include/libavutil/intfloat.h
  767 +CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_U3_series/JZ_U3/JZ_u3.c.o: ../../../ThirdParty/ffmpeg_6_0/include/libavutil/log.h
  768 +CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_U3_series/JZ_U3/JZ_u3.c.o: ../../../ThirdParty/ffmpeg_6_0/include/libavutil/macros.h
  769 +CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_U3_series/JZ_U3/JZ_u3.c.o: ../../../ThirdParty/ffmpeg_6_0/include/libavutil/mathematics.h
  770 +CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_U3_series/JZ_U3/JZ_u3.c.o: ../../../ThirdParty/ffmpeg_6_0/include/libavutil/mem.h
  771 +CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_U3_series/JZ_U3/JZ_u3.c.o: ../../../ThirdParty/ffmpeg_6_0/include/libavutil/pixfmt.h
  772 +CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_U3_series/JZ_U3/JZ_u3.c.o: ../../../ThirdParty/ffmpeg_6_0/include/libavutil/rational.h
  773 +CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_U3_series/JZ_U3/JZ_u3.c.o: ../../../ThirdParty/ffmpeg_6_0/include/libavutil/samplefmt.h
  774 +CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_U3_series/JZ_U3/JZ_u3.c.o: ../../../ThirdParty/ffmpeg_6_0/include/libavutil/version.h
  775 +CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_U3_series/JZ_U3/JZ_u3.c.o: /mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_U3_series/JZ_U3/JZ_u3.c
775 776
776 CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/ParamterParsing.c.o: ../../../JZsdk_Common/JZsdkLib.h 777 CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/ParamterParsing.c.o: ../../../JZsdk_Common/JZsdkLib.h
777 CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/ParamterParsing.c.o: ../../../JZsdk_Common/JZsdk_Base/JZsdkBase.h 778 CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/ParamterParsing.c.o: ../../../JZsdk_Common/JZsdk_Base/JZsdkBase.h
@@ -2226,6 +2227,7 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/Device @@ -2226,6 +2227,7 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/Device
2226 CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/DeviceMessage/DeviceMessage.c.o: ../../../JZsdk_Config/./ParamterParsing.h 2227 CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/DeviceMessage/DeviceMessage.c.o: ../../../JZsdk_Config/./ParamterParsing.h
2227 CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/DeviceMessage/DeviceMessage.c.o: ../../../JZsdk_Config/BaseConfig.h 2228 CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/DeviceMessage/DeviceMessage.c.o: ../../../JZsdk_Config/BaseConfig.h
2228 CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/DeviceMessage/DeviceMessage.c.o: ../../../JZsdk_Config/version_choose.h 2229 CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/DeviceMessage/DeviceMessage.c.o: ../../../JZsdk_Config/version_choose.h
  2230 +CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/DeviceMessage/DeviceMessage.c.o: ../../../Module/DeviceInfo/Attribute/Attribute.h
2229 CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/DeviceMessage/DeviceMessage.c.o: ../../../Module/DeviceInfo/SerialNumberProc/FirewareOriginMAT/FirewareOriginMAT.h 2231 CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/DeviceMessage/DeviceMessage.c.o: ../../../Module/DeviceInfo/SerialNumberProc/FirewareOriginMAT/FirewareOriginMAT.h
2230 CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/DeviceMessage/DeviceMessage.c.o: ../../../Module/Gimbal/Gimbal.h 2232 CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/DeviceMessage/DeviceMessage.c.o: ../../../Module/Gimbal/Gimbal.h
2231 CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/DeviceMessage/DeviceMessage.c.o: ../../../Module/Lighting/Lighting_InAndOut.h 2233 CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/DeviceMessage/DeviceMessage.c.o: ../../../Module/Lighting/Lighting_InAndOut.h
@@ -3961,6 +3963,13 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/Volume/ @@ -3961,6 +3963,13 @@ CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/Volume/
3961 CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/Volume/volume.c.o: ../../../JZsdk_Config/./ParamterParsing.h 3963 CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/Volume/volume.c.o: ../../../JZsdk_Config/./ParamterParsing.h
3962 CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/Volume/volume.c.o: ../../../JZsdk_Config/BaseConfig.h 3964 CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/Volume/volume.c.o: ../../../JZsdk_Config/BaseConfig.h
3963 CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/Volume/volume.c.o: ../../../JZsdk_Config/version_choose.h 3965 CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/Volume/volume.c.o: ../../../JZsdk_Config/version_choose.h
  3966 +CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/Volume/volume.c.o: ../../../Module/DeviceInfo/Attribute/Attribute.h
  3967 +CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/Volume/volume.c.o: ../../../Module/DeviceInfo/DeviceInfo.h
  3968 +CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/Volume/volume.c.o: ../../../Module/DeviceInfo/DeviceMessage/DeviceMessage.h
  3969 +CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/Volume/volume.c.o: ../../../Module/DeviceInfo/HardwareInfo/HardwareInfo.h
  3970 +CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/Volume/volume.c.o: ../../../Module/DeviceInfo/LanguageInfo/LanguageInfo.h
  3971 +CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/Volume/volume.c.o: ../../../Module/DeviceInfo/SerialNumberProc/FirewareOriginMAT/FirewareOriginMAT.h
  3972 +CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/Volume/volume.c.o: ../../../Module/DeviceInfo/SerialNumberProc/SerialProc.h
3964 CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/Volume/volume.c.o: ../../../Module/Megaphone/Megaphone.h 3973 CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/Volume/volume.c.o: ../../../Module/Megaphone/Megaphone.h
3965 CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/Volume/volume.c.o: ../../../Module/Megaphone/PlayBack/Megaphone_PlayBack.h 3974 CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/Volume/volume.c.o: ../../../Module/Megaphone/PlayBack/Megaphone_PlayBack.h
3966 CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/Volume/volume.c.o: /mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/Volume/./VolumeLimit.h 3975 CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/Volume/volume.c.o: /mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/Volume/./VolumeLimit.h
1 -/usr/local/arm/4.9.3/bin/arm-cortexa9-linux-gnueabihf-gcc -pthread -std=gnu99 -lm -ldl -lstdc++ -pthread 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_H1_series/JZ_H1E/JZ_h1e.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_Logger/JZsdk_Logger_Init.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_Logger/JZsdk_monitor.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/LanguageInfo/LanguageInfo.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/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/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/Megaphone.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/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/PowerSimulation/Meg_PowerSimulation.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/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/Volume/volume.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 -rdynamic -lmsc ../../../ThirdParty/Espeak/lib/arm-cortexa9-linux-gnueabihf/libportaudio.so.2 ../../../ThirdParty/Espeak/lib/arm-cortexa9-linux-gnueabihf/libTTS_Player.so ../../../ThirdParty/AlsaLib/lib/arm-cortexa9-linux-gnueabihf/libasound.so.2.0.0 ../../../ThirdParty/opus/lib/arm-cortexa9-linux-gnueabihf/libopus.so ../../../ThirdParty/ffmpeg_6_0/lib/arm-cortexa9-linux-gnueabihf/libavcodec.so.60 ../../../ThirdParty/ffmpeg_6_0/lib/arm-cortexa9-linux-gnueabihf/libavdevice.so.60 ../../../ThirdParty/ffmpeg_6_0/lib/arm-cortexa9-linux-gnueabihf/libavfilter.so.9 ../../../ThirdParty/ffmpeg_6_0/lib/arm-cortexa9-linux-gnueabihf/libavformat.so.60 ../../../ThirdParty/ffmpeg_6_0/lib/arm-cortexa9-linux-gnueabihf/libavutil.so.58 ../../../ThirdParty/ffmpeg_6_0/lib/arm-cortexa9-linux-gnueabihf/libpostproc.so.57 ../../../ThirdParty/ffmpeg_6_0/lib/arm-cortexa9-linux-gnueabihf/libswresample.so.4 ../../../ThirdParty/ffmpeg_6_0/lib/arm-cortexa9-linux-gnueabihf/libswscale.so.7 ../../../ThirdParty/x264_2245/lib/arm-cortexa9-linux-gnueabihf/libx264.so.157 ../../../ThirdParty/fdk_aac_2_0_3/lib/arm-cortexa9-linux-gnueabihf/libfdk-aac.so.2 -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/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 1 +/usr/local/arm/4.9.3/bin/arm-cortexa9-linux-gnueabihf-gcc -pthread -std=gnu99 -lm -ldl -lstdc++ -pthread 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_Logger/JZsdk_Logger_Init.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_Logger/JZsdk_monitor.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/LanguageInfo/LanguageInfo.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/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/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/Megaphone.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/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/PowerSimulation/Meg_PowerSimulation.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/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/Volume/volume.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 -rdynamic -lmsc ../../../ThirdParty/Espeak/lib/arm-cortexa9-linux-gnueabihf/libportaudio.so.2 ../../../ThirdParty/Espeak/lib/arm-cortexa9-linux-gnueabihf/libTTS_Player.so ../../../ThirdParty/AlsaLib/lib/arm-cortexa9-linux-gnueabihf/libasound.so.2.0.0 ../../../ThirdParty/opus/lib/arm-cortexa9-linux-gnueabihf/libopus.so ../../../ThirdParty/ffmpeg_6_0/lib/arm-cortexa9-linux-gnueabihf/libavcodec.so.60 ../../../ThirdParty/ffmpeg_6_0/lib/arm-cortexa9-linux-gnueabihf/libavdevice.so.60 ../../../ThirdParty/ffmpeg_6_0/lib/arm-cortexa9-linux-gnueabihf/libavfilter.so.9 ../../../ThirdParty/ffmpeg_6_0/lib/arm-cortexa9-linux-gnueabihf/libavformat.so.60 ../../../ThirdParty/ffmpeg_6_0/lib/arm-cortexa9-linux-gnueabihf/libavutil.so.58 ../../../ThirdParty/ffmpeg_6_0/lib/arm-cortexa9-linux-gnueabihf/libpostproc.so.57 ../../../ThirdParty/ffmpeg_6_0/lib/arm-cortexa9-linux-gnueabihf/libswresample.so.4 ../../../ThirdParty/ffmpeg_6_0/lib/arm-cortexa9-linux-gnueabihf/libswscale.so.7 ../../../ThirdParty/x264_2245/lib/arm-cortexa9-linux-gnueabihf/libx264.so.157 ../../../ThirdParty/fdk_aac_2_0_3/lib/arm-cortexa9-linux-gnueabihf/libfdk-aac.so.2 -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/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
@@ -28,28 +28,28 @@ The CXX compiler identification is GNU, found in "/mnt/hgfs/share/JZSDK_Linux/pr @@ -28,28 +28,28 @@ The CXX compiler identification is GNU, found in "/mnt/hgfs/share/JZSDK_Linux/pr
28 Determining if the C compiler works passed with the following output: 28 Determining if the C compiler works passed 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:"/usr/bin/make" "cmTC_1165a/fast"  
32 -/usr/bin/make -f CMakeFiles/cmTC_1165a.dir/build.make CMakeFiles/cmTC_1165a.dir/build 31 +Run Build Command:"/usr/bin/make" "cmTC_581fe/fast"
  32 +/usr/bin/make -f CMakeFiles/cmTC_581fe.dir/build.make CMakeFiles/cmTC_581fe.dir/build
33 make[1]: Entering directory '/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/CMakeTmp' 33 make[1]: Entering directory '/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/CMakeTmp'
34 -Building C object CMakeFiles/cmTC_1165a.dir/testCCompiler.c.o  
35 -/usr/bin/cc -o CMakeFiles/cmTC_1165a.dir/testCCompiler.c.o -c /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/CMakeTmp/testCCompiler.c  
36 -Linking C executable cmTC_1165a  
37 -/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_1165a.dir/link.txt --verbose=1  
38 -/usr/bin/cc CMakeFiles/cmTC_1165a.dir/testCCompiler.c.o -o cmTC_1165a -rdynamic 34 +Building C object CMakeFiles/cmTC_581fe.dir/testCCompiler.c.o
  35 +/usr/bin/cc -o CMakeFiles/cmTC_581fe.dir/testCCompiler.c.o -c /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/CMakeTmp/testCCompiler.c
  36 +Linking C executable cmTC_581fe
  37 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_581fe.dir/link.txt --verbose=1
  38 +/usr/bin/cc CMakeFiles/cmTC_581fe.dir/testCCompiler.c.o -o cmTC_581fe -rdynamic
39 make[1]: Leaving directory '/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/CMakeTmp' 39 make[1]: Leaving directory '/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/CMakeTmp'
40 40
41 41
42 Detecting C compiler ABI info compiled with the following output: 42 Detecting C compiler ABI info compiled with the following output:
43 Change Dir: /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/CMakeTmp 43 Change Dir: /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/CMakeTmp
44 44
45 -Run Build Command:"/usr/bin/make" "cmTC_04826/fast"  
46 -/usr/bin/make -f CMakeFiles/cmTC_04826.dir/build.make CMakeFiles/cmTC_04826.dir/build 45 +Run Build Command:"/usr/bin/make" "cmTC_b0d07/fast"
  46 +/usr/bin/make -f CMakeFiles/cmTC_b0d07.dir/build.make CMakeFiles/cmTC_b0d07.dir/build
47 make[1]: Entering directory '/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/CMakeTmp' 47 make[1]: Entering directory '/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/CMakeTmp'
48 -Building C object CMakeFiles/cmTC_04826.dir/CMakeCCompilerABI.c.o  
49 -/usr/bin/cc -o CMakeFiles/cmTC_04826.dir/CMakeCCompilerABI.c.o -c /usr/share/cmake-3.5/Modules/CMakeCCompilerABI.c  
50 -Linking C executable cmTC_04826  
51 -/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_04826.dir/link.txt --verbose=1  
52 -/usr/bin/cc -v CMakeFiles/cmTC_04826.dir/CMakeCCompilerABI.c.o -o cmTC_04826 -rdynamic 48 +Building C object CMakeFiles/cmTC_b0d07.dir/CMakeCCompilerABI.c.o
  49 +/usr/bin/cc -o CMakeFiles/cmTC_b0d07.dir/CMakeCCompilerABI.c.o -c /usr/share/cmake-3.5/Modules/CMakeCCompilerABI.c
  50 +Linking C executable cmTC_b0d07
  51 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_b0d07.dir/link.txt --verbose=1
  52 +/usr/bin/cc -v CMakeFiles/cmTC_b0d07.dir/CMakeCCompilerABI.c.o -o cmTC_b0d07 -rdynamic
53 Using built-in specs. 53 Using built-in specs.
54 COLLECT_GCC=/usr/bin/cc 54 COLLECT_GCC=/usr/bin/cc
55 COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/5/lto-wrapper 55 COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/5/lto-wrapper
@@ -59,8 +59,8 @@ Thread model: posix @@ -59,8 +59,8 @@ Thread model: posix
59 gcc version 5.4.0 20160609 (Ubuntu 5.4.0-6ubuntu1~16.04.12) 59 gcc version 5.4.0 20160609 (Ubuntu 5.4.0-6ubuntu1~16.04.12)
60 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/ 60 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/
61 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/ 61 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/
62 -COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_04826' '-rdynamic' '-mtune=generic' '-march=x86-64'  
63 - /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/ccnvyM4V.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_04826 /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_04826.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 62 +COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_b0d07' '-rdynamic' '-mtune=generic' '-march=x86-64'
  63 + /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/ccARvm36.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_b0d07 /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_b0d07.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
64 make[1]: Leaving directory '/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/CMakeTmp' 64 make[1]: Leaving directory '/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/CMakeTmp'
65 65
66 66
@@ -68,14 +68,14 @@ Parsed C implicit link information from above output: @@ -68,14 +68,14 @@ Parsed C implicit link information from above output:
68 link line regex: [^( *|.*[/\])(ld|([^/\]+-)?ld|collect2)[^/\]*( |$)] 68 link line regex: [^( *|.*[/\])(ld|([^/\]+-)?ld|collect2)[^/\]*( |$)]
69 ignore line: [Change Dir: /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/CMakeTmp] 69 ignore line: [Change Dir: /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/CMakeTmp]
70 ignore line: [] 70 ignore line: []
71 - ignore line: [Run Build Command:"/usr/bin/make" "cmTC_04826/fast"]  
72 - ignore line: [/usr/bin/make -f CMakeFiles/cmTC_04826.dir/build.make CMakeFiles/cmTC_04826.dir/build] 71 + ignore line: [Run Build Command:"/usr/bin/make" "cmTC_b0d07/fast"]
  72 + ignore line: [/usr/bin/make -f CMakeFiles/cmTC_b0d07.dir/build.make CMakeFiles/cmTC_b0d07.dir/build]
73 ignore line: [make[1]: Entering directory '/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/CMakeTmp'] 73 ignore line: [make[1]: Entering directory '/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/CMakeTmp']
74 - ignore line: [Building C object CMakeFiles/cmTC_04826.dir/CMakeCCompilerABI.c.o]  
75 - ignore line: [/usr/bin/cc -o CMakeFiles/cmTC_04826.dir/CMakeCCompilerABI.c.o -c /usr/share/cmake-3.5/Modules/CMakeCCompilerABI.c]  
76 - ignore line: [Linking C executable cmTC_04826]  
77 - ignore line: [/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_04826.dir/link.txt --verbose=1]  
78 - ignore line: [/usr/bin/cc -v CMakeFiles/cmTC_04826.dir/CMakeCCompilerABI.c.o -o cmTC_04826 -rdynamic ] 74 + ignore line: [Building C object CMakeFiles/cmTC_b0d07.dir/CMakeCCompilerABI.c.o]
  75 + ignore line: [/usr/bin/cc -o CMakeFiles/cmTC_b0d07.dir/CMakeCCompilerABI.c.o -c /usr/share/cmake-3.5/Modules/CMakeCCompilerABI.c]
  76 + ignore line: [Linking C executable cmTC_b0d07]
  77 + ignore line: [/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_b0d07.dir/link.txt --verbose=1]
  78 + ignore line: [/usr/bin/cc -v CMakeFiles/cmTC_b0d07.dir/CMakeCCompilerABI.c.o -o cmTC_b0d07 -rdynamic ]
79 ignore line: [Using built-in specs.] 79 ignore line: [Using built-in specs.]
80 ignore line: [COLLECT_GCC=/usr/bin/cc] 80 ignore line: [COLLECT_GCC=/usr/bin/cc]
81 ignore line: [COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/5/lto-wrapper] 81 ignore line: [COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/5/lto-wrapper]
@@ -85,13 +85,13 @@ Parsed C implicit link information from above output: @@ -85,13 +85,13 @@ Parsed C implicit link information from above output:
85 ignore line: [gcc version 5.4.0 20160609 (Ubuntu 5.4.0-6ubuntu1~16.04.12) ] 85 ignore line: [gcc version 5.4.0 20160609 (Ubuntu 5.4.0-6ubuntu1~16.04.12) ]
86 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/] 86 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/]
87 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/] 87 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/]
88 - ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_04826' '-rdynamic' '-mtune=generic' '-march=x86-64']  
89 - 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/ccnvyM4V.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_04826 /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_04826.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] 88 + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_b0d07' '-rdynamic' '-mtune=generic' '-march=x86-64']
  89 + 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/ccARvm36.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_b0d07 /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_b0d07.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]
90 arg [/usr/lib/gcc/x86_64-linux-gnu/5/collect2] ==> ignore 90 arg [/usr/lib/gcc/x86_64-linux-gnu/5/collect2] ==> ignore
91 arg [-plugin] ==> ignore 91 arg [-plugin] ==> ignore
92 arg [/usr/lib/gcc/x86_64-linux-gnu/5/liblto_plugin.so] ==> ignore 92 arg [/usr/lib/gcc/x86_64-linux-gnu/5/liblto_plugin.so] ==> ignore
93 arg [-plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/5/lto-wrapper] ==> ignore 93 arg [-plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/5/lto-wrapper] ==> ignore
94 - arg [-plugin-opt=-fresolution=/tmp/ccnvyM4V.res] ==> ignore 94 + arg [-plugin-opt=-fresolution=/tmp/ccARvm36.res] ==> ignore
95 arg [-plugin-opt=-pass-through=-lgcc] ==> ignore 95 arg [-plugin-opt=-pass-through=-lgcc] ==> ignore
96 arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore 96 arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore
97 arg [-plugin-opt=-pass-through=-lc] ==> ignore 97 arg [-plugin-opt=-pass-through=-lc] ==> ignore
@@ -109,7 +109,7 @@ Parsed C implicit link information from above output: @@ -109,7 +109,7 @@ Parsed C implicit link information from above output:
109 arg [/lib64/ld-linux-x86-64.so.2] ==> ignore 109 arg [/lib64/ld-linux-x86-64.so.2] ==> ignore
110 arg [-zrelro] ==> ignore 110 arg [-zrelro] ==> ignore
111 arg [-o] ==> ignore 111 arg [-o] ==> ignore
112 - arg [cmTC_04826] ==> ignore 112 + arg [cmTC_b0d07] ==> ignore
113 arg [/usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/crt1.o] ==> ignore 113 arg [/usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/crt1.o] ==> ignore
114 arg [/usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/crti.o] ==> ignore 114 arg [/usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/crti.o] ==> ignore
115 arg [/usr/lib/gcc/x86_64-linux-gnu/5/crtbegin.o] ==> ignore 115 arg [/usr/lib/gcc/x86_64-linux-gnu/5/crtbegin.o] ==> ignore
@@ -121,7 +121,7 @@ Parsed C implicit link information from above output: @@ -121,7 +121,7 @@ Parsed C implicit link information from above output:
121 arg [-L/usr/lib/x86_64-linux-gnu] ==> dir [/usr/lib/x86_64-linux-gnu] 121 arg [-L/usr/lib/x86_64-linux-gnu] ==> dir [/usr/lib/x86_64-linux-gnu]
122 arg [-L/usr/lib/../lib] ==> dir [/usr/lib/../lib] 122 arg [-L/usr/lib/../lib] ==> dir [/usr/lib/../lib]
123 arg [-L/usr/lib/gcc/x86_64-linux-gnu/5/../../..] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/5/../../..] 123 arg [-L/usr/lib/gcc/x86_64-linux-gnu/5/../../..] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/5/../../..]
124 - arg [CMakeFiles/cmTC_04826.dir/CMakeCCompilerABI.c.o] ==> ignore 124 + arg [CMakeFiles/cmTC_b0d07.dir/CMakeCCompilerABI.c.o] ==> ignore
125 arg [-lgcc] ==> lib [gcc] 125 arg [-lgcc] ==> lib [gcc]
126 arg [--as-needed] ==> ignore 126 arg [--as-needed] ==> ignore
127 arg [-lgcc_s] ==> lib [gcc_s] 127 arg [-lgcc_s] ==> lib [gcc_s]
@@ -155,14 +155,14 @@ Parsed C implicit link information from above output: @@ -155,14 +155,14 @@ Parsed C implicit link information from above output:
155 Detecting C [-std=c11] compiler features compiled with the following output: 155 Detecting C [-std=c11] compiler features compiled with the following output:
156 Change Dir: /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/CMakeTmp 156 Change Dir: /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/CMakeTmp
157 157
158 -Run Build Command:"/usr/bin/make" "cmTC_c80b2/fast"  
159 -/usr/bin/make -f CMakeFiles/cmTC_c80b2.dir/build.make CMakeFiles/cmTC_c80b2.dir/build 158 +Run Build Command:"/usr/bin/make" "cmTC_ffc0a/fast"
  159 +/usr/bin/make -f CMakeFiles/cmTC_ffc0a.dir/build.make CMakeFiles/cmTC_ffc0a.dir/build
160 make[1]: Entering directory '/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/CMakeTmp' 160 make[1]: Entering directory '/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/CMakeTmp'
161 -Building C object CMakeFiles/cmTC_c80b2.dir/feature_tests.c.o  
162 -/usr/bin/cc -std=c11 -o CMakeFiles/cmTC_c80b2.dir/feature_tests.c.o -c /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/feature_tests.c  
163 -Linking C executable cmTC_c80b2  
164 -/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_c80b2.dir/link.txt --verbose=1  
165 -/usr/bin/cc CMakeFiles/cmTC_c80b2.dir/feature_tests.c.o -o cmTC_c80b2 -rdynamic 161 +Building C object CMakeFiles/cmTC_ffc0a.dir/feature_tests.c.o
  162 +/usr/bin/cc -std=c11 -o CMakeFiles/cmTC_ffc0a.dir/feature_tests.c.o -c /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/feature_tests.c
  163 +Linking C executable cmTC_ffc0a
  164 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_ffc0a.dir/link.txt --verbose=1
  165 +/usr/bin/cc CMakeFiles/cmTC_ffc0a.dir/feature_tests.c.o -o cmTC_ffc0a -rdynamic
166 make[1]: Leaving directory '/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/CMakeTmp' 166 make[1]: Leaving directory '/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/CMakeTmp'
167 167
168 168
@@ -175,14 +175,14 @@ make[1]: Leaving directory '/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_ @@ -175,14 +175,14 @@ make[1]: Leaving directory '/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_
175 Detecting C [-std=c99] compiler features compiled with the following output: 175 Detecting C [-std=c99] compiler features compiled with the following output:
176 Change Dir: /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/CMakeTmp 176 Change Dir: /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/CMakeTmp
177 177
178 -Run Build Command:"/usr/bin/make" "cmTC_c2d17/fast"  
179 -/usr/bin/make -f CMakeFiles/cmTC_c2d17.dir/build.make CMakeFiles/cmTC_c2d17.dir/build 178 +Run Build Command:"/usr/bin/make" "cmTC_18fa9/fast"
  179 +/usr/bin/make -f CMakeFiles/cmTC_18fa9.dir/build.make CMakeFiles/cmTC_18fa9.dir/build
180 make[1]: Entering directory '/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/CMakeTmp' 180 make[1]: Entering directory '/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/CMakeTmp'
181 -Building C object CMakeFiles/cmTC_c2d17.dir/feature_tests.c.o  
182 -/usr/bin/cc -std=c99 -o CMakeFiles/cmTC_c2d17.dir/feature_tests.c.o -c /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/feature_tests.c  
183 -Linking C executable cmTC_c2d17  
184 -/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_c2d17.dir/link.txt --verbose=1  
185 -/usr/bin/cc CMakeFiles/cmTC_c2d17.dir/feature_tests.c.o -o cmTC_c2d17 -rdynamic 181 +Building C object CMakeFiles/cmTC_18fa9.dir/feature_tests.c.o
  182 +/usr/bin/cc -std=c99 -o CMakeFiles/cmTC_18fa9.dir/feature_tests.c.o -c /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/feature_tests.c
  183 +Linking C executable cmTC_18fa9
  184 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_18fa9.dir/link.txt --verbose=1
  185 +/usr/bin/cc CMakeFiles/cmTC_18fa9.dir/feature_tests.c.o -o cmTC_18fa9 -rdynamic
186 make[1]: Leaving directory '/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/CMakeTmp' 186 make[1]: Leaving directory '/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/CMakeTmp'
187 187
188 188
@@ -195,14 +195,14 @@ make[1]: Leaving directory '/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_ @@ -195,14 +195,14 @@ make[1]: Leaving directory '/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_
195 Detecting C [-std=c90] compiler features compiled with the following output: 195 Detecting C [-std=c90] compiler features compiled with the following output:
196 Change Dir: /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/CMakeTmp 196 Change Dir: /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/CMakeTmp
197 197
198 -Run Build Command:"/usr/bin/make" "cmTC_f5ff6/fast"  
199 -/usr/bin/make -f CMakeFiles/cmTC_f5ff6.dir/build.make CMakeFiles/cmTC_f5ff6.dir/build 198 +Run Build Command:"/usr/bin/make" "cmTC_4c36e/fast"
  199 +/usr/bin/make -f CMakeFiles/cmTC_4c36e.dir/build.make CMakeFiles/cmTC_4c36e.dir/build
200 make[1]: Entering directory '/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/CMakeTmp' 200 make[1]: Entering directory '/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/CMakeTmp'
201 -Building C object CMakeFiles/cmTC_f5ff6.dir/feature_tests.c.o  
202 -/usr/bin/cc -std=c90 -o CMakeFiles/cmTC_f5ff6.dir/feature_tests.c.o -c /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/feature_tests.c  
203 -Linking C executable cmTC_f5ff6  
204 -/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_f5ff6.dir/link.txt --verbose=1  
205 -/usr/bin/cc CMakeFiles/cmTC_f5ff6.dir/feature_tests.c.o -o cmTC_f5ff6 -rdynamic 201 +Building C object CMakeFiles/cmTC_4c36e.dir/feature_tests.c.o
  202 +/usr/bin/cc -std=c90 -o CMakeFiles/cmTC_4c36e.dir/feature_tests.c.o -c /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/feature_tests.c
  203 +Linking C executable cmTC_4c36e
  204 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_4c36e.dir/link.txt --verbose=1
  205 +/usr/bin/cc CMakeFiles/cmTC_4c36e.dir/feature_tests.c.o -o cmTC_4c36e -rdynamic
206 make[1]: Leaving directory '/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/CMakeTmp' 206 make[1]: Leaving directory '/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/CMakeTmp'
207 207
208 208
@@ -213,28 +213,28 @@ make[1]: Leaving directory '/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_ @@ -213,28 +213,28 @@ make[1]: Leaving directory '/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_
213 Determining if the CXX compiler works passed with the following output: 213 Determining if the CXX compiler works passed with the following output:
214 Change Dir: /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/CMakeTmp 214 Change Dir: /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/CMakeTmp
215 215
216 -Run Build Command:"/usr/bin/make" "cmTC_b1f79/fast"  
217 -/usr/bin/make -f CMakeFiles/cmTC_b1f79.dir/build.make CMakeFiles/cmTC_b1f79.dir/build 216 +Run Build Command:"/usr/bin/make" "cmTC_75e57/fast"
  217 +/usr/bin/make -f CMakeFiles/cmTC_75e57.dir/build.make CMakeFiles/cmTC_75e57.dir/build
218 make[1]: Entering directory '/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/CMakeTmp' 218 make[1]: Entering directory '/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/CMakeTmp'
219 -Building CXX object CMakeFiles/cmTC_b1f79.dir/testCXXCompiler.cxx.o  
220 -/usr/bin/c++ -o CMakeFiles/cmTC_b1f79.dir/testCXXCompiler.cxx.o -c /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/CMakeTmp/testCXXCompiler.cxx  
221 -Linking CXX executable cmTC_b1f79  
222 -/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_b1f79.dir/link.txt --verbose=1  
223 -/usr/bin/c++ CMakeFiles/cmTC_b1f79.dir/testCXXCompiler.cxx.o -o cmTC_b1f79 -rdynamic 219 +Building CXX object CMakeFiles/cmTC_75e57.dir/testCXXCompiler.cxx.o
  220 +/usr/bin/c++ -o CMakeFiles/cmTC_75e57.dir/testCXXCompiler.cxx.o -c /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/CMakeTmp/testCXXCompiler.cxx
  221 +Linking CXX executable cmTC_75e57
  222 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_75e57.dir/link.txt --verbose=1
  223 +/usr/bin/c++ CMakeFiles/cmTC_75e57.dir/testCXXCompiler.cxx.o -o cmTC_75e57 -rdynamic
224 make[1]: Leaving directory '/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/CMakeTmp' 224 make[1]: Leaving directory '/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/CMakeTmp'
225 225
226 226
227 Detecting CXX compiler ABI info compiled with the following output: 227 Detecting CXX compiler ABI info compiled with the following output:
228 Change Dir: /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/CMakeTmp 228 Change Dir: /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/CMakeTmp
229 229
230 -Run Build Command:"/usr/bin/make" "cmTC_d499b/fast"  
231 -/usr/bin/make -f CMakeFiles/cmTC_d499b.dir/build.make CMakeFiles/cmTC_d499b.dir/build 230 +Run Build Command:"/usr/bin/make" "cmTC_4fdb3/fast"
  231 +/usr/bin/make -f CMakeFiles/cmTC_4fdb3.dir/build.make CMakeFiles/cmTC_4fdb3.dir/build
232 make[1]: Entering directory '/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/CMakeTmp' 232 make[1]: Entering directory '/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/CMakeTmp'
233 -Building CXX object CMakeFiles/cmTC_d499b.dir/CMakeCXXCompilerABI.cpp.o  
234 -/usr/bin/c++ -o CMakeFiles/cmTC_d499b.dir/CMakeCXXCompilerABI.cpp.o -c /usr/share/cmake-3.5/Modules/CMakeCXXCompilerABI.cpp  
235 -Linking CXX executable cmTC_d499b  
236 -/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_d499b.dir/link.txt --verbose=1  
237 -/usr/bin/c++ -v CMakeFiles/cmTC_d499b.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_d499b -rdynamic 233 +Building CXX object CMakeFiles/cmTC_4fdb3.dir/CMakeCXXCompilerABI.cpp.o
  234 +/usr/bin/c++ -o CMakeFiles/cmTC_4fdb3.dir/CMakeCXXCompilerABI.cpp.o -c /usr/share/cmake-3.5/Modules/CMakeCXXCompilerABI.cpp
  235 +Linking CXX executable cmTC_4fdb3
  236 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_4fdb3.dir/link.txt --verbose=1
  237 +/usr/bin/c++ -v CMakeFiles/cmTC_4fdb3.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_4fdb3 -rdynamic
238 Using built-in specs. 238 Using built-in specs.
239 COLLECT_GCC=/usr/bin/c++ 239 COLLECT_GCC=/usr/bin/c++
240 COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/5/lto-wrapper 240 COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/5/lto-wrapper
@@ -244,8 +244,8 @@ Thread model: posix @@ -244,8 +244,8 @@ Thread model: posix
244 gcc version 5.4.0 20160609 (Ubuntu 5.4.0-6ubuntu1~16.04.12) 244 gcc version 5.4.0 20160609 (Ubuntu 5.4.0-6ubuntu1~16.04.12)
245 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/ 245 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/
246 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/ 246 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/
247 -COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_d499b' '-rdynamic' '-shared-libgcc' '-mtune=generic' '-march=x86-64'  
248 - /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/ccw4JZic.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_d499b /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_d499b.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 247 +COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_4fdb3' '-rdynamic' '-shared-libgcc' '-mtune=generic' '-march=x86-64'
  248 + /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/cc7eRSgX.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_4fdb3 /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_4fdb3.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
249 make[1]: Leaving directory '/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/CMakeTmp' 249 make[1]: Leaving directory '/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/CMakeTmp'
250 250
251 251
@@ -253,14 +253,14 @@ Parsed CXX implicit link information from above output: @@ -253,14 +253,14 @@ Parsed CXX implicit link information from above output:
253 link line regex: [^( *|.*[/\])(ld|([^/\]+-)?ld|collect2)[^/\]*( |$)] 253 link line regex: [^( *|.*[/\])(ld|([^/\]+-)?ld|collect2)[^/\]*( |$)]
254 ignore line: [Change Dir: /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/CMakeTmp] 254 ignore line: [Change Dir: /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/CMakeTmp]
255 ignore line: [] 255 ignore line: []
256 - ignore line: [Run Build Command:"/usr/bin/make" "cmTC_d499b/fast"]  
257 - ignore line: [/usr/bin/make -f CMakeFiles/cmTC_d499b.dir/build.make CMakeFiles/cmTC_d499b.dir/build] 256 + ignore line: [Run Build Command:"/usr/bin/make" "cmTC_4fdb3/fast"]
  257 + ignore line: [/usr/bin/make -f CMakeFiles/cmTC_4fdb3.dir/build.make CMakeFiles/cmTC_4fdb3.dir/build]
258 ignore line: [make[1]: Entering directory '/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/CMakeTmp'] 258 ignore line: [make[1]: Entering directory '/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/CMakeTmp']
259 - ignore line: [Building CXX object CMakeFiles/cmTC_d499b.dir/CMakeCXXCompilerABI.cpp.o]  
260 - ignore line: [/usr/bin/c++ -o CMakeFiles/cmTC_d499b.dir/CMakeCXXCompilerABI.cpp.o -c /usr/share/cmake-3.5/Modules/CMakeCXXCompilerABI.cpp]  
261 - ignore line: [Linking CXX executable cmTC_d499b]  
262 - ignore line: [/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_d499b.dir/link.txt --verbose=1]  
263 - ignore line: [/usr/bin/c++ -v CMakeFiles/cmTC_d499b.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_d499b -rdynamic ] 259 + ignore line: [Building CXX object CMakeFiles/cmTC_4fdb3.dir/CMakeCXXCompilerABI.cpp.o]
  260 + ignore line: [/usr/bin/c++ -o CMakeFiles/cmTC_4fdb3.dir/CMakeCXXCompilerABI.cpp.o -c /usr/share/cmake-3.5/Modules/CMakeCXXCompilerABI.cpp]
  261 + ignore line: [Linking CXX executable cmTC_4fdb3]
  262 + ignore line: [/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_4fdb3.dir/link.txt --verbose=1]
  263 + ignore line: [/usr/bin/c++ -v CMakeFiles/cmTC_4fdb3.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_4fdb3 -rdynamic ]
264 ignore line: [Using built-in specs.] 264 ignore line: [Using built-in specs.]
265 ignore line: [COLLECT_GCC=/usr/bin/c++] 265 ignore line: [COLLECT_GCC=/usr/bin/c++]
266 ignore line: [COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/5/lto-wrapper] 266 ignore line: [COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/5/lto-wrapper]
@@ -270,13 +270,13 @@ Parsed CXX implicit link information from above output: @@ -270,13 +270,13 @@ Parsed CXX implicit link information from above output:
270 ignore line: [gcc version 5.4.0 20160609 (Ubuntu 5.4.0-6ubuntu1~16.04.12) ] 270 ignore line: [gcc version 5.4.0 20160609 (Ubuntu 5.4.0-6ubuntu1~16.04.12) ]
271 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/] 271 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/]
272 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/] 272 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/]
273 - ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_d499b' '-rdynamic' '-shared-libgcc' '-mtune=generic' '-march=x86-64']  
274 - 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/ccw4JZic.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_d499b /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_d499b.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] 273 + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_4fdb3' '-rdynamic' '-shared-libgcc' '-mtune=generic' '-march=x86-64']
  274 + 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/cc7eRSgX.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_4fdb3 /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_4fdb3.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]
275 arg [/usr/lib/gcc/x86_64-linux-gnu/5/collect2] ==> ignore 275 arg [/usr/lib/gcc/x86_64-linux-gnu/5/collect2] ==> ignore
276 arg [-plugin] ==> ignore 276 arg [-plugin] ==> ignore
277 arg [/usr/lib/gcc/x86_64-linux-gnu/5/liblto_plugin.so] ==> ignore 277 arg [/usr/lib/gcc/x86_64-linux-gnu/5/liblto_plugin.so] ==> ignore
278 arg [-plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/5/lto-wrapper] ==> ignore 278 arg [-plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/5/lto-wrapper] ==> ignore
279 - arg [-plugin-opt=-fresolution=/tmp/ccw4JZic.res] ==> ignore 279 + arg [-plugin-opt=-fresolution=/tmp/cc7eRSgX.res] ==> ignore
280 arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore 280 arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore
281 arg [-plugin-opt=-pass-through=-lgcc] ==> ignore 281 arg [-plugin-opt=-pass-through=-lgcc] ==> ignore
282 arg [-plugin-opt=-pass-through=-lc] ==> ignore 282 arg [-plugin-opt=-pass-through=-lc] ==> ignore
@@ -294,7 +294,7 @@ Parsed CXX implicit link information from above output: @@ -294,7 +294,7 @@ Parsed CXX implicit link information from above output:
294 arg [/lib64/ld-linux-x86-64.so.2] ==> ignore 294 arg [/lib64/ld-linux-x86-64.so.2] ==> ignore
295 arg [-zrelro] ==> ignore 295 arg [-zrelro] ==> ignore
296 arg [-o] ==> ignore 296 arg [-o] ==> ignore
297 - arg [cmTC_d499b] ==> ignore 297 + arg [cmTC_4fdb3] ==> ignore
298 arg [/usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/crt1.o] ==> ignore 298 arg [/usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/crt1.o] ==> ignore
299 arg [/usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/crti.o] ==> ignore 299 arg [/usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/crti.o] ==> ignore
300 arg [/usr/lib/gcc/x86_64-linux-gnu/5/crtbegin.o] ==> ignore 300 arg [/usr/lib/gcc/x86_64-linux-gnu/5/crtbegin.o] ==> ignore
@@ -306,7 +306,7 @@ Parsed CXX implicit link information from above output: @@ -306,7 +306,7 @@ Parsed CXX implicit link information from above output:
306 arg [-L/usr/lib/x86_64-linux-gnu] ==> dir [/usr/lib/x86_64-linux-gnu] 306 arg [-L/usr/lib/x86_64-linux-gnu] ==> dir [/usr/lib/x86_64-linux-gnu]
307 arg [-L/usr/lib/../lib] ==> dir [/usr/lib/../lib] 307 arg [-L/usr/lib/../lib] ==> dir [/usr/lib/../lib]
308 arg [-L/usr/lib/gcc/x86_64-linux-gnu/5/../../..] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/5/../../..] 308 arg [-L/usr/lib/gcc/x86_64-linux-gnu/5/../../..] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/5/../../..]
309 - arg [CMakeFiles/cmTC_d499b.dir/CMakeCXXCompilerABI.cpp.o] ==> ignore 309 + arg [CMakeFiles/cmTC_4fdb3.dir/CMakeCXXCompilerABI.cpp.o] ==> ignore
310 arg [-lstdc++] ==> lib [stdc++] 310 arg [-lstdc++] ==> lib [stdc++]
311 arg [-lm] ==> lib [m] 311 arg [-lm] ==> lib [m]
312 arg [-lgcc_s] ==> lib [gcc_s] 312 arg [-lgcc_s] ==> lib [gcc_s]
@@ -338,14 +338,14 @@ Parsed CXX implicit link information from above output: @@ -338,14 +338,14 @@ Parsed CXX implicit link information from above output:
338 Detecting CXX [-std=c++14] compiler features compiled with the following output: 338 Detecting CXX [-std=c++14] compiler features compiled with the following output:
339 Change Dir: /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/CMakeTmp 339 Change Dir: /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/CMakeTmp
340 340
341 -Run Build Command:"/usr/bin/make" "cmTC_f36b2/fast"  
342 -/usr/bin/make -f CMakeFiles/cmTC_f36b2.dir/build.make CMakeFiles/cmTC_f36b2.dir/build 341 +Run Build Command:"/usr/bin/make" "cmTC_0d0f0/fast"
  342 +/usr/bin/make -f CMakeFiles/cmTC_0d0f0.dir/build.make CMakeFiles/cmTC_0d0f0.dir/build
343 make[1]: Entering directory '/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/CMakeTmp' 343 make[1]: Entering directory '/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/CMakeTmp'
344 -Building CXX object CMakeFiles/cmTC_f36b2.dir/feature_tests.cxx.o  
345 -/usr/bin/c++ -std=c++14 -o CMakeFiles/cmTC_f36b2.dir/feature_tests.cxx.o -c /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/feature_tests.cxx  
346 -Linking CXX executable cmTC_f36b2  
347 -/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_f36b2.dir/link.txt --verbose=1  
348 -/usr/bin/c++ CMakeFiles/cmTC_f36b2.dir/feature_tests.cxx.o -o cmTC_f36b2 -rdynamic 344 +Building CXX object CMakeFiles/cmTC_0d0f0.dir/feature_tests.cxx.o
  345 +/usr/bin/c++ -std=c++14 -o CMakeFiles/cmTC_0d0f0.dir/feature_tests.cxx.o -c /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/feature_tests.cxx
  346 +Linking CXX executable cmTC_0d0f0
  347 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_0d0f0.dir/link.txt --verbose=1
  348 +/usr/bin/c++ CMakeFiles/cmTC_0d0f0.dir/feature_tests.cxx.o -o cmTC_0d0f0 -rdynamic
349 make[1]: Leaving directory '/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/CMakeTmp' 349 make[1]: Leaving directory '/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/CMakeTmp'
350 350
351 351
@@ -411,14 +411,14 @@ make[1]: Leaving directory '/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_ @@ -411,14 +411,14 @@ make[1]: Leaving directory '/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_
411 Detecting CXX [-std=c++11] compiler features compiled with the following output: 411 Detecting CXX [-std=c++11] compiler features compiled with the following output:
412 Change Dir: /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/CMakeTmp 412 Change Dir: /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/CMakeTmp
413 413
414 -Run Build Command:"/usr/bin/make" "cmTC_c42d3/fast"  
415 -/usr/bin/make -f CMakeFiles/cmTC_c42d3.dir/build.make CMakeFiles/cmTC_c42d3.dir/build 414 +Run Build Command:"/usr/bin/make" "cmTC_ce6d5/fast"
  415 +/usr/bin/make -f CMakeFiles/cmTC_ce6d5.dir/build.make CMakeFiles/cmTC_ce6d5.dir/build
416 make[1]: Entering directory '/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/CMakeTmp' 416 make[1]: Entering directory '/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/CMakeTmp'
417 -Building CXX object CMakeFiles/cmTC_c42d3.dir/feature_tests.cxx.o  
418 -/usr/bin/c++ -std=c++11 -o CMakeFiles/cmTC_c42d3.dir/feature_tests.cxx.o -c /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/feature_tests.cxx  
419 -Linking CXX executable cmTC_c42d3  
420 -/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_c42d3.dir/link.txt --verbose=1  
421 -/usr/bin/c++ CMakeFiles/cmTC_c42d3.dir/feature_tests.cxx.o -o cmTC_c42d3 -rdynamic 417 +Building CXX object CMakeFiles/cmTC_ce6d5.dir/feature_tests.cxx.o
  418 +/usr/bin/c++ -std=c++11 -o CMakeFiles/cmTC_ce6d5.dir/feature_tests.cxx.o -c /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/feature_tests.cxx
  419 +Linking CXX executable cmTC_ce6d5
  420 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_ce6d5.dir/link.txt --verbose=1
  421 +/usr/bin/c++ CMakeFiles/cmTC_ce6d5.dir/feature_tests.cxx.o -o cmTC_ce6d5 -rdynamic
422 make[1]: Leaving directory '/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/CMakeTmp' 422 make[1]: Leaving directory '/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/CMakeTmp'
423 423
424 424
@@ -484,14 +484,14 @@ make[1]: Leaving directory '/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_ @@ -484,14 +484,14 @@ make[1]: Leaving directory '/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_
484 Detecting CXX [-std=c++98] compiler features compiled with the following output: 484 Detecting CXX [-std=c++98] compiler features compiled with the following output:
485 Change Dir: /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/CMakeTmp 485 Change Dir: /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/CMakeTmp
486 486
487 -Run Build Command:"/usr/bin/make" "cmTC_cf109/fast"  
488 -/usr/bin/make -f CMakeFiles/cmTC_cf109.dir/build.make CMakeFiles/cmTC_cf109.dir/build 487 +Run Build Command:"/usr/bin/make" "cmTC_38c63/fast"
  488 +/usr/bin/make -f CMakeFiles/cmTC_38c63.dir/build.make CMakeFiles/cmTC_38c63.dir/build
489 make[1]: Entering directory '/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/CMakeTmp' 489 make[1]: Entering directory '/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/CMakeTmp'
490 -Building CXX object CMakeFiles/cmTC_cf109.dir/feature_tests.cxx.o  
491 -/usr/bin/c++ -std=c++98 -o CMakeFiles/cmTC_cf109.dir/feature_tests.cxx.o -c /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/feature_tests.cxx  
492 -Linking CXX executable cmTC_cf109  
493 -/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_cf109.dir/link.txt --verbose=1  
494 -/usr/bin/c++ CMakeFiles/cmTC_cf109.dir/feature_tests.cxx.o -o cmTC_cf109 -rdynamic 490 +Building CXX object CMakeFiles/cmTC_38c63.dir/feature_tests.cxx.o
  491 +/usr/bin/c++ -std=c++98 -o CMakeFiles/cmTC_38c63.dir/feature_tests.cxx.o -c /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/feature_tests.cxx
  492 +Linking CXX executable cmTC_38c63
  493 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_38c63.dir/link.txt --verbose=1
  494 +/usr/bin/c++ CMakeFiles/cmTC_38c63.dir/feature_tests.cxx.o -o cmTC_38c63 -rdynamic
495 make[1]: Leaving directory '/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/CMakeTmp' 495 make[1]: Leaving directory '/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/CMakeTmp'
496 496
497 497
@@ -906,32 +906,32 @@ mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/BaseConfig.c.s: @@ -906,32 +906,32 @@ mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/BaseConfig.c.s:
906 $(MAKE) -f CMakeFiles/ATTENTION_APP.dir/build.make CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/BaseConfig.c.s 906 $(MAKE) -f CMakeFiles/ATTENTION_APP.dir/build.make CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/BaseConfig.c.s
907 .PHONY : mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/BaseConfig.c.s 907 .PHONY : mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/BaseConfig.c.s
908 908
909 -mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_H1_series/JZ_H1E/JZ_h1e.o: mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_H1_series/JZ_H1E/JZ_h1e.c.o 909 +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
910 910
911 -.PHONY : mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_H1_series/JZ_H1E/JZ_h1e.o 911 +.PHONY : mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_U3_series/JZ_U3/JZ_u3.o
912 912
913 # target to build an object file 913 # target to build an object file
914 -mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_H1_series/JZ_H1E/JZ_h1e.c.o:  
915 - $(MAKE) -f CMakeFiles/ATTENTION_APP.dir/build.make CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_H1_series/JZ_H1E/JZ_h1e.c.o  
916 -.PHONY : mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_H1_series/JZ_H1E/JZ_h1e.c.o 914 +mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_U3_series/JZ_U3/JZ_u3.c.o:
  915 + $(MAKE) -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
  916 +.PHONY : mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_U3_series/JZ_U3/JZ_u3.c.o
917 917
918 -mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_H1_series/JZ_H1E/JZ_h1e.i: mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_H1_series/JZ_H1E/JZ_h1e.c.i 918 +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
919 919
920 -.PHONY : mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_H1_series/JZ_H1E/JZ_h1e.i 920 +.PHONY : mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_U3_series/JZ_U3/JZ_u3.i
921 921
922 # target to preprocess a source file 922 # target to preprocess a source file
923 -mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_H1_series/JZ_H1E/JZ_h1e.c.i:  
924 - $(MAKE) -f CMakeFiles/ATTENTION_APP.dir/build.make CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_H1_series/JZ_H1E/JZ_h1e.c.i  
925 -.PHONY : mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_H1_series/JZ_H1E/JZ_h1e.c.i 923 +mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_U3_series/JZ_U3/JZ_u3.c.i:
  924 + $(MAKE) -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
  925 +.PHONY : mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_U3_series/JZ_U3/JZ_u3.c.i
926 926
927 -mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_H1_series/JZ_H1E/JZ_h1e.s: mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_H1_series/JZ_H1E/JZ_h1e.c.s 927 +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
928 928
929 -.PHONY : mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_H1_series/JZ_H1E/JZ_h1e.s 929 +.PHONY : mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_U3_series/JZ_U3/JZ_u3.s
930 930
931 # target to generate assembly for a file 931 # target to generate assembly for a file
932 -mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_H1_series/JZ_H1E/JZ_h1e.c.s:  
933 - $(MAKE) -f CMakeFiles/ATTENTION_APP.dir/build.make CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_H1_series/JZ_H1E/JZ_h1e.c.s  
934 -.PHONY : mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_H1_series/JZ_H1E/JZ_h1e.c.s 932 +mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_U3_series/JZ_U3/JZ_u3.c.s:
  933 + $(MAKE) -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
  934 +.PHONY : mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_U3_series/JZ_U3/JZ_u3.c.s
935 935
936 mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/ParamterParsing.o: mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/ParamterParsing.c.o 936 mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/ParamterParsing.o: mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/ParamterParsing.c.o
937 937
@@ -3081,9 +3081,9 @@ help: @@ -3081,9 +3081,9 @@ help:
3081 @echo "... mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/BaseConfig.o" 3081 @echo "... mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/BaseConfig.o"
3082 @echo "... mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/BaseConfig.i" 3082 @echo "... mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/BaseConfig.i"
3083 @echo "... mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/BaseConfig.s" 3083 @echo "... mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/BaseConfig.s"
3084 - @echo "... mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_H1_series/JZ_H1E/JZ_h1e.o"  
3085 - @echo "... mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_H1_series/JZ_H1E/JZ_h1e.i"  
3086 - @echo "... mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_H1_series/JZ_H1E/JZ_h1e.s" 3084 + @echo "... mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_U3_series/JZ_U3/JZ_u3.o"
  3085 + @echo "... mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_U3_series/JZ_U3/JZ_u3.i"
  3086 + @echo "... mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/DeviceSample/JZ_U3_series/JZ_U3/JZ_u3.s"
3087 @echo "... mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/ParamterParsing.o" 3087 @echo "... mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/ParamterParsing.o"
3088 @echo "... mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/ParamterParsing.i" 3088 @echo "... mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/ParamterParsing.i"
3089 @echo "... mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/ParamterParsing.s" 3089 @echo "... mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/ParamterParsing.s"
1 # cmake 最低版本要求 第三行名字不能动 1 # cmake 最低版本要求 第三行名字不能动
2 cmake_minimum_required(VERSION 2.8) 2 cmake_minimum_required(VERSION 2.8)
3 -project(JZ_U3) 3 +project(JZ_U3S)
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线程库,以支持多线程程序。
@@ -921,7 +921,7 @@ static T_DjiReturnCode DjiUser_LocalWriteFsInit(const char *path) @@ -921,7 +921,7 @@ static T_DjiReturnCode DjiUser_LocalWriteFsInit(const char *path)
921 return DJI_ERROR_SYSTEM_MODULE_CODE_SYSTEM_ERROR; 921 return DJI_ERROR_SYSTEM_MODULE_CODE_SYSTEM_ERROR;
922 } 922 }
923 923
924 - //检查是否存在日志文件 924 + //检查是否存在日志文件
925 if (access(DJI_LOG_FOLDER_NAME, F_OK) != 0) { 925 if (access(DJI_LOG_FOLDER_NAME, F_OK) != 0) {
926 memset(folderName, 0, sizeof(folderName)); 926 memset(folderName, 0, sizeof(folderName));
927 sprintf(folderName, "mkdir %s", DJI_LOG_FOLDER_NAME); 927 sprintf(folderName, "mkdir %s", DJI_LOG_FOLDER_NAME);
  1 +echo "WARNING WARNING WARNING WARNING WARNING "
  2 +echo "执行本脚本前,请先完成正常固件完整包的打包"
  3 +echo "WARNING WARNING WARNING WARNING WARNING "
  4 +
  5 +#打包诱骗升级包
  6 +# 拼接字符串得到更新包名字
  7 +# 国内版
  8 +if [ $# -ne 2 ]; then
  9 + echo "错误:必须且只能指定两个参数"
  10 + echo "用法: ./Pack_complete.sh [DOMESTIC|OVERSEAS|UNUSE] [bin_name]"
  11 + exit 1
  12 +fi
  13 +
  14 +# 参数值校验
  15 +case "$1" in
  16 + DOMESTIC)
  17 + echo "____正在打包国内版____"
  18 + ;;
  19 + OVERSEAS)
  20 + echo "____正在打包海外版____"
  21 + ;;
  22 + UNUSE)
  23 + echo "____正在打包无指定版本____"
  24 + ;;
  25 + *)
  26 + echo "错误:无效参数 '$1'未输入正确的语言版本"
  27 + exit 1
  28 + ;;
  29 +esac
  30 +
  31 +BinName=$2 #一级压缩包的名字
  32 +
  33 +TarPackage_second=UpgradePackage.tar.gz #二次解压包的名字
  34 +MD5saveFile=UpdateMD5num #md5文件内部的md5值 当前已改为放文件大小
  35 +FileSizeSaveFile=UpdateFlieSize #md5文件内部的文件大小
  36 +
  37 +echo "________简易版二级包打开开始_________"
  38 +
  39 +rm Temp_simplePack -rf
  40 +mkdir Temp_simplePack
  41 +mkdir Temp_simplePack/Package/
  42 +
  43 +echo "____app复制_____"
  44 +mkdir Temp_simplePack/Package/app
  45 +cp Package/app/JZ_UART_APP Temp_simplePack/Package/app
  46 +
  47 +echo "____config复制_____"
  48 +mkdir Temp_simplePack/Package/config
  49 +cp Package/config/* -r Temp_simplePack/Package/config
  50 +
  51 +echo "____kofile复制_____"
  52 +mkdir Temp_simplePack/Package/kofile
  53 +
  54 +echo "____lib复制_____"
  55 +mkdir Temp_simplePack/Package/lib
  56 +
  57 +echo "_____others复制_____"
  58 +mkdir Temp_simplePack/Package/others
  59 +
  60 +echo "____ProFile复制_____"
  61 +mkdir Temp_simplePack/Package/ProFile
  62 +cp Package/ProFile/* -r Temp_simplePack/Package/ProFile
  63 +
  64 +echo "____psdk复制_____"
  65 +mkdir Temp_simplePack/Package/psdk
  66 +cp Package/psdk/* -r Temp_simplePack/Package/psdk
  67 +
  68 +echo "____sh复制____"
  69 +mkdir Temp_simplePack/Package/sh
  70 +cp Package/sh/* Temp_simplePack/Package/sh
  71 +
  72 +cd Temp_simplePack
  73 +tar -zcf $TarPackage_second Package
  74 +
  75 +echo "_____输出二次压缩包目录_____"
  76 +#参数说明 t 查看内容 f 压缩包名字指定
  77 +tar -tf $TarPackage_second
  78 +
  79 +cd ..
  80 +cp Temp_simplePack/$TarPackage_second .
  81 +rm Temp_simplePack -rf
  82 +
  83 +
  84 +echo "________简易版二级包打开结束_________"
  85 +
  86 +echo "________简易版一级包打包开始_________"
  87 +rm Temp -rf
  88 +mkdir Temp
  89 +
  90 +mv $TarPackage_second ./Temp/
  91 +
  92 +echo "____放入简易升级步骤"
  93 +cp ShellPack/simpleUp.sh ./Temp/updata.sh
  94 +
  95 +# 如果是飞机的小包,放进语言文件
  96 +if [ "$1" == "DOMESTIC" ]; then
  97 + echo 0 > ./Temp/LanguageInfo.txt
  98 +elif [ "$1" == "OVERSEAS" ]; then
  99 + echo 1 > ./Temp/LanguageInfo.txt
  100 +elif [ "$1" == "UNUSE" ]; then
  101 + echo "没有使用语言文件"
  102 +fi
  103 +
  104 +#进入打包文件夹
  105 +cd Temp
  106 +
  107 +echo "____校验码写入____"
  108 +
  109 +# 获取二级压缩包的md5值
  110 +md5_File="$(md5sum "$TarPackage_second" | cut -d ' ' -f 1)"
  111 +echo $md5_File
  112 +
  113 +#把md5校准码写进去
  114 +echo $md5_File | tee $MD5saveFile > /dev/null #覆盖写
  115 +
  116 +#文件大小值
  117 +file_size=$(ls -l "${TarPackage_second}" | awk '{print $5}')
  118 +echo "文件的大小为: $file_size 字节"
  119 +
  120 +# 把文件大小写入校准文件
  121 +echo "$file_size" | tee "$FileSizeSaveFile" > /dev/null # 覆盖写
  122 +
  123 +echo "____开始打包____"
  124 +tar -zcf $BinName ./*
  125 +mv $BinName ../
  126 +cd ..
  127 +rm Temp -rf
  128 +echo "________简易版一级包打包结束_________"
  129 +
  130 +
  131 +echo "_____输出一级压缩包目录_____"
  132 +#参数说明 t 查看内容 f 压缩包名字指定
  133 +tar -tf $BinName
  1 +#!/bin/bash
  2 +
  3 +# 递归查找所有子目录下的 updata.sh 文件,并替换内容
  4 +find . -type f -name "updata.sh" | while read -r file; do
  5 + echo "正在检查文件: $file"
  6 +
  7 + # 使用单引号包裹模式,避免shell展开通配符
  8 + # 匹配 Update_PsdkPack="JZ 开头,后接任意非双引号字符的内容
  9 + if grep -q 'Update_PsdkPack="JZ[^"]*"' "$file"; then
  10 + echo "在 $file 中找到匹配项,正在替换..."
  11 +
  12 + # 使用 sed 进行安全替换
  13 + # \b 表示单词边界,确保精确匹配变量名
  14 + # 注意:替换时保留双引号,只修改内容部分
  15 + sed -i 's/\(Update_PsdkPack="\)JZ[^"]*"\(.*\)/\1*.bin"\2/' "$file"
  16 +
  17 + echo "替换完成:$file"
  18 + fi
  19 +done