From e8d1957a2af24568663df46b03ea8a4ae7a9c502 Mon Sep 17 00:00:00 2001 From: wu58430 Date: Sun, 10 Dec 2023 00:03:48 +0800 Subject: [PATCH] =?UTF-8?q?MDC=E8=81=94=E7=B3=BB=E4=BA=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .idea/workspace.xml | 88 +- CMakeLists.txt | 2 +- README.md | 3 +- app/mdc1200.c | 306 ++--- app/mdc1200.h | 6 + .../CMakeFiles/3.25.2/CMakeCCompiler.cmake | 36 +- .../CMakeFiles/3.25.2/CMakeCXXCompiler.cmake | 36 +- .../3.25.2/CMakeDetermineCompilerABI_C.bin | Bin 16999 -> 53485 bytes .../CMakeFiles/3.25.2/CMakeSystem.cmake | 16 +- cmake-build-debug/CMakeFiles/CMakeOutput.log | 1006 +++++++++-------- .../CMakeFiles/clion-environment.txt | Bin 112 -> 281 bytes main.c | 26 +- payment/sponsors.md | 31 +- ui/main.c | 79 +- win_make.bat | 2 +- 15 files changed, 841 insertions(+), 796 deletions(-) diff --git a/.idea/workspace.xml b/.idea/workspace.xml index 1c706c6..7f0b418 100644 --- a/.idea/workspace.xml +++ b/.idea/workspace.xml @@ -11,7 +11,7 @@ - + @@ -20,13 +20,21 @@ - + - + - + + + + + + + + - + + - { + "keyToString": { + "ASKED_ADD_EXTERNAL_FILES": "true", + "RunOnceActivity.OpenProjectViewOnStart": "true", + "RunOnceActivity.ShowReadmeOnStart": "true", + "RunOnceActivity.cidr.known.project.marker": "true", + "SHARE_PROJECT_CONFIGURATION_FILES": "true", + "WebServerToolWindowFactoryState": "false", + "cf.first.check.clang-format": "false", + "cidr.known.project.marker": "true", + "last_opened_file_path": "C:/Users/RUPC/Desktop/UV-K6/uv-k5-firmware-chinese/win_make.bat", + "node.js.detected.package.eslint": "true", + "node.js.detected.package.tslint": "true", + "node.js.selected.package.eslint": "(autodetect)", + "node.js.selected.package.tslint": "(autodetect)", + "nodejs_package_manager_path": "npm", + "settings.editor.selected.configurable": "File.Encoding", + "structure.view.defaults.are.configured": "true", + "vue.rearranger.settings.migration": "true" } -}]]> +} - - - - - + @@ -195,14 +198,8 @@ - - - - 1701681045853 - 1701682489155 @@ -540,7 +537,14 @@ - @@ -564,7 +568,6 @@ - @@ -589,6 +592,7 @@ - \ No newline at end of file diff --git a/CMakeLists.txt b/CMakeLists.txt index 81d04ac..55f85c8 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -816,4 +816,4 @@ add_executable(uv_k5_firmware_custom_0_17 sram-overlay.c sram-overlay.h version.c - version.h chinese.h app/mdc1200.c app/mdc1200.c app/mdc1200.c app/mdc1200.c) + version.h chinese.h app/mdc1200.c app/mdc1200.c app/mdc1200.c app/mdc1200.c app/mdc1200.c app/mdc1200.c) diff --git a/README.md b/README.md index 1315425..6ecef6f 100644 --- a/README.md +++ b/README.md @@ -27,8 +27,7 @@ * **短按`侧键2`**:设置宽窄带 * **长按`侧键2`**:手电筒 -**收音机界面下**: -* **长按`侧键2`**:手电筒 + diff --git a/app/mdc1200.c b/app/mdc1200.c index c9c0895..295ef03 100644 --- a/app/mdc1200.c +++ b/app/mdc1200.c @@ -5,18 +5,18 @@ #include "mdc1200.h" #include "misc.h" #include -uint16_t MDC_ID=0X542B; +#include "driver/eeprom.h" +uint16_t MDC_ID = 0X542B; const uint8_t mdc1200_pre_amble[] = {0x00, 0x00, 0x00}; -const uint8_t mdc1200_sync[5] = {0x07, 0x09, 0x2a, 0x44, 0x6f}; +const uint8_t mdc1200_sync[5] = {0x07, 0x09, 0x2a, 0x44, 0x6f}; uint8_t mdc1200_sync_suc_xor[sizeof(mdc1200_sync)]; #if 1 -uint16_t compute_crc(const void *data, const unsigned int data_len) -{ // let the CPU's hardware do some work :) +uint16_t compute_crc(const void *data, const unsigned int data_len) { // let the CPU's hardware do some work :) uint16_t crc; CRC_InitReverse(); crc = CRC_Calculate(data, data_len); @@ -46,68 +46,63 @@ uint16_t compute_crc( void *data, const unsigned int data_len) { // let the C #else - uint16_t compute_crc(const void *data, const unsigned int data_len) - { - unsigned int i; - const uint8_t *data8 = (const uint8_t *)data; - uint16_t crc = 0; + uint16_t compute_crc(const void *data, const unsigned int data_len) + { + unsigned int i; + const uint8_t *data8 = (const uint8_t *)data; + uint16_t crc = 0; - for (i = 0; i < data_len; i++) - { - uint8_t mask; + for (i = 0; i < data_len; i++) + { + uint8_t mask; - // bit reverse each data byte - const uint8_t bits = bit_reverse_8(*data8++); + // bit reverse each data byte + const uint8_t bits = bit_reverse_8(*data8++); - for (mask = 0x0080; mask != 0; mask >>= 1) - { - uint16_t msb = crc & 0x8000; - if (bits & mask) - msb ^= 0x8000; - crc <<= 1; - if (msb) - crc ^= 0x1021; - } - } + for (mask = 0x0080; mask != 0; mask >>= 1) + { + uint16_t msb = crc & 0x8000; + if (bits & mask) + msb ^= 0x8000; + crc <<= 1; + if (msb) + crc ^= 0x1021; + } + } - // bit reverse and invert the final CRC - return bit_reverse_16(crc) ^ 0xffff; - } + // bit reverse and invert the final CRC + return bit_reverse_16(crc) ^ 0xffff; + } #endif -void error_correction(void *data) -{ // can correct up to 3 or 4 corrupted bits (I think) +void error_correction(void *data) { // can correct up to 3 or 4 corrupted bits (I think) - int i; + int i; uint8_t shift_reg; uint8_t syn; - uint8_t *data8 = (uint8_t *)data; + uint8_t *data8 = (uint8_t *) data; - for (i = 0, shift_reg = 0, syn = 0; i < MDC1200_FEC_K; i++) - { + for (i = 0, shift_reg = 0, syn = 0; i < MDC1200_FEC_K; i++) { const uint8_t bi = data8[i]; int bit_num; - for (bit_num = 0; bit_num < 8; bit_num++) - { + for (bit_num = 0; bit_num < 8; bit_num++) { uint8_t b; unsigned int k = 0; shift_reg = (shift_reg << 1) | ((bi >> bit_num) & 1u); - b = ((shift_reg >> 6) ^ (shift_reg >> 5) ^ (shift_reg >> 2) ^ (shift_reg >> 0)) & 1u; - syn = (syn << 1) | (((b ^ (data8[i + MDC1200_FEC_K] >> bit_num)) & 1u) ? 1u : 0u); + b = ((shift_reg >> 6) ^ (shift_reg >> 5) ^ (shift_reg >> 2) ^ (shift_reg >> 0)) & 1u; + syn = (syn << 1) | (((b ^ (data8[i + MDC1200_FEC_K] >> bit_num)) & 1u) ? 1u : 0u); if (syn & 0x80) k++; if (syn & 0x20) k++; if (syn & 0x04) k++; if (syn & 0x02) k++; - if (k >= 3) - { // correct a bit error + if (k >= 3) { // correct a bit error int ii = i; int bn = bit_num - 7; - if (bn < 0) - { + if (bn < 0) { bn += 8; ii--; } @@ -119,13 +114,12 @@ void error_correction(void *data) } } -bool decode_data(void *data) -{ +bool decode_data(void *data) { uint16_t crc1; uint16_t crc2; - uint8_t *data8 = (uint8_t *)data; + uint8_t *data8 = (uint8_t *) data; - { // de-interleave + { // de-interleave unsigned int i; unsigned int k; @@ -151,18 +145,15 @@ bool decode_data(void *data) // 15, 31, 47, 63, 79, 95, 111 // de-interleave the received bits - for (i = 0, k = 0; i < 16; i++) - { - for (m = 0; m < MDC1200_FEC_K; m++) - { + for (i = 0, k = 0; i < 16; i++) { + for (m = 0; m < MDC1200_FEC_K; m++) { const unsigned int n = (m * 16) + i; deinterleaved[k++] = (data8[n >> 3] >> ((7 - n) & 7u)) & 1u; } } // copy the de-interleaved bits back into the data buffer - for (i = 0, m = 0; i < (MDC1200_FEC_K * 2); i++) - { + for (i = 0, m = 0; i < (MDC1200_FEC_K * 2); i++) { unsigned int k; uint8_t b = 0; for (k = 0; k < 8; k++) @@ -181,7 +172,7 @@ bool decode_data(void *data) // 01 80 1234 2E3E 00 6580A862DD8808 crc1 = compute_crc(data, 4); - crc2 = ((uint16_t)data8[5] << 8) | (data8[4] << 0); + crc2 = ((uint16_t) data8[5] << 8) | (data8[4] << 0); return (crc1 == crc2) ? true : false; } @@ -189,18 +180,15 @@ bool decode_data(void *data) // ********************************************************** // TX -void xor_modulation(void *data, const unsigned int size) -{ // exclusive-or succesive bits - the entire packet +void xor_modulation(void *data, const unsigned int size) { // exclusive-or succesive bits - the entire packet unsigned int i; - uint8_t *data8 = (uint8_t *)data; + uint8_t *data8 = (uint8_t *) data; uint8_t prev_bit = 0; - for (i = 0; i < size; i++) - { + for (i = 0; i < size; i++) { int bit_num; - uint8_t in = data8[i]; + uint8_t in = data8[i]; uint8_t out = 0; - for (bit_num = 7; bit_num >= 0; bit_num--) - { + for (bit_num = 7; bit_num >= 0; bit_num--) { const uint8_t new_bit = (in >> bit_num) & 1u; if (new_bit != prev_bit) out |= 1u << bit_num; // previous bit and new bit are different - send a '1' @@ -210,8 +198,7 @@ void xor_modulation(void *data, const unsigned int size) } } -uint8_t * encode_data(void *data) -{ +uint8_t *encode_data(void *data) { // R=1/2 K=7 convolutional coder // // OP ARG ID CRC STATUS FEC bits @@ -222,18 +209,16 @@ uint8_t * encode_data(void *data) // 3. for each bit, calculate the modulo-2 sum: bit(n-0) + bit(n-2) + bit(n-5) + bit(n-6) // 4. then for each byte of resulting output, again reverse those bits to generate the values shown above - uint8_t *data8 = (uint8_t *)data; + uint8_t *data8 = (uint8_t *) data; - { // add the FEC bits to the end of the data + { // add the FEC bits to the end of the data unsigned int i; uint8_t shift_reg = 0; - for (i = 0; i < MDC1200_FEC_K; i++) - { - unsigned int bit_num; + for (i = 0; i < MDC1200_FEC_K; i++) { + unsigned int bit_num; const uint8_t bi = data8[i]; - uint8_t bo = 0; - for (bit_num = 0; bit_num < 8; bit_num++) - { + uint8_t bo = 0; + for (bit_num = 0; bit_num < 8; bit_num++) { shift_reg = (shift_reg << 1) | ((bi >> bit_num) & 1u); bo |= (((shift_reg >> 6) ^ (shift_reg >> 5) ^ (shift_reg >> 2) ^ (shift_reg >> 0)) & 1u) << bit_num; } @@ -242,7 +227,7 @@ uint8_t * encode_data(void *data) } - { // interleave the bits + { // interleave the bits unsigned int i; unsigned int k; @@ -267,12 +252,10 @@ uint8_t * encode_data(void *data) // 15, 31, 47, 63, 79, 95, 111 // bit interleaver - for (i = 0, k = 0; i < (MDC1200_FEC_K * 2); i++) - { + for (i = 0, k = 0; i < (MDC1200_FEC_K * 2); i++) { unsigned int bit_num; const uint8_t b = data8[i]; - for (bit_num = 0; bit_num < 8; bit_num++) - { + for (bit_num = 0; bit_num < 8; bit_num++) { interleaved[k] = (b >> bit_num) & 1u; k += 16; if (k >= sizeof(interleaved)) @@ -281,8 +264,7 @@ uint8_t * encode_data(void *data) } // copy the interleaved bits back to the data buffer - for (i = 0, k = 0; i < (MDC1200_FEC_K * 2); i++) - { + for (i = 0, k = 0; i < (MDC1200_FEC_K * 2); i++) { int bit_num; uint8_t b = 0; for (bit_num = 7; bit_num >= 0; bit_num--) @@ -295,11 +277,10 @@ uint8_t * encode_data(void *data) return data8 + (MDC1200_FEC_K * 2); } -unsigned int MDC1200_encode_single_packet(void *data, const uint8_t op, const uint8_t arg, const uint16_t unit_id) -{ +unsigned int MDC1200_encode_single_packet(void *data, const uint8_t op, const uint8_t arg, const uint16_t unit_id) { unsigned int size; - uint16_t crc; - uint8_t *p = (uint8_t *)data; + uint16_t crc; + uint8_t *p = (uint8_t *) data; memcpy(p, mdc1200_pre_amble, sizeof(mdc1200_pre_amble)); p += sizeof(mdc1200_pre_amble); @@ -317,7 +298,7 @@ unsigned int MDC1200_encode_single_packet(void *data, const uint8_t op, const ui p = encode_data(p); - size = (unsigned int)(p - (uint8_t *)data); + size = (unsigned int) (p - (uint8_t *) data); xor_modulation(data, size); @@ -326,19 +307,18 @@ unsigned int MDC1200_encode_single_packet(void *data, const uint8_t op, const ui struct { - uint8_t bit; - uint8_t prev_bit; - uint8_t xor_bit; - uint64_t shift_reg; + uint8_t bit; + uint8_t prev_bit; + uint8_t xor_bit; + uint64_t shift_reg; unsigned int bit_count; unsigned int stage; - bool inverted_sync; + bool inverted_sync; unsigned int data_index; - uint8_t data[40]; + uint8_t data[40]; } rx; -void MDC1200_reset_rx(void) -{ +void MDC1200_reset_rx(void) { memset(&rx, 0, sizeof(rx)); } @@ -348,10 +328,9 @@ bool MDC1200_process_rx_data( //const bool inverted, uint8_t *op, uint8_t *arg, - uint16_t *unit_id) -{ - const uint8_t *buffer8 = (const uint8_t *)buffer; - unsigned int index; + uint16_t *unit_id) { + const uint8_t *buffer8 = (const uint8_t *) buffer; + unsigned int index; // 04 8D BF 66 58 sync // FB 72 40 99 A7 inverted sync @@ -361,13 +340,11 @@ bool MDC1200_process_rx_data( memset(&rx, 0, sizeof(rx)); - for (index = 0; index < size; index++) - { - int bit; + for (index = 0; index < size; index++) { + int bit; const uint8_t rx_byte = buffer8[index]; - for (bit = 7; bit >= 0; bit--) - { + for (bit = 7; bit >= 0; bit--) { unsigned int i; rx.prev_bit = rx.bit; @@ -381,13 +358,11 @@ bool MDC1200_process_rx_data( // ********* - if (rx.stage == 0) - { // looking for the 40-bit sync pattern + if (rx.stage == 0) { // looking for the 40-bit sync pattern const unsigned int sync_bit_ok_threshold = 32; - if (rx.bit_count >= 40) - { + if (rx.bit_count >= 40) { // 40-bit sync pattern uint64_t sync_nor = 0x07092a446fu; // normal uint64_t sync_inv = 0xffffffffffu ^ sync_nor; // bit inverted @@ -397,8 +372,7 @@ bool MDC1200_process_rx_data( unsigned int nor_count = 0; unsigned int inv_count = 0; - for (i = 40; i > 0; i--, sync_nor >>= 1, sync_inv >>= 1) - { + for (i = 40; i > 0; i--, sync_nor >>= 1, sync_inv >>= 1) { nor_count += sync_nor & 1u; inv_count += sync_inv & 1u; } @@ -406,14 +380,12 @@ bool MDC1200_process_rx_data( inv_count = 40 - inv_count; - - if (nor_count >= sync_bit_ok_threshold || inv_count >= sync_bit_ok_threshold) - { // good enough + if (nor_count >= sync_bit_ok_threshold || inv_count >= sync_bit_ok_threshold) { // good enough rx.inverted_sync = (inv_count > nor_count) ? true : false; - rx.data_index = 0; - rx.bit_count = 0; - rx.stage = 1; + rx.data_index = 0; + rx.bit_count = 0; + rx.stage = 1; } @@ -433,20 +405,17 @@ bool MDC1200_process_rx_data( continue; - - if (!decode_data(rx.data)) - { + if (!decode_data(rx.data)) { MDC1200_reset_rx(); - continue; } // extract the info from the packet - *op = rx.data[0]; - *arg = rx.data[1]; - *unit_id = ((uint16_t)rx.data[2] << 8) | (rx.data[3] << 0); + *op = rx.data[0]; + *arg = rx.data[1]; + *unit_id = ((uint16_t) rx.data[2] << 8) | (rx.data[3] << 0); // reset the detector @@ -461,28 +430,25 @@ bool MDC1200_process_rx_data( return false; } -uint8_t mdc1200_rx_buffer[sizeof(mdc1200_sync_suc_xor) + (MDC1200_FEC_K * 2)]; +uint8_t mdc1200_rx_buffer[sizeof(mdc1200_sync_suc_xor) + (MDC1200_FEC_K * 2)]; unsigned int mdc1200_rx_buffer_index = 0; -uint8_t mdc1200_op; -uint8_t mdc1200_arg; +uint8_t mdc1200_op; +uint8_t mdc1200_arg; uint16_t mdc1200_unit_id; -uint8_t mdc1200_rx_ready_tick_500ms; +uint8_t mdc1200_rx_ready_tick_500ms; +void MDC1200_process_rx(const uint16_t interrupt_bits) { -void MDC1200_process_rx(const uint16_t interrupt_bits) -{ + const uint16_t rx_sync_flags = BK4819_ReadRegister(0x0B); + const uint16_t fsk_reg59 = BK4819_ReadRegister(0x59) & ~((1u << 15) | (1u << 14) | (1u << 12) | (1u << 11)); - const uint16_t rx_sync_flags = BK4819_ReadRegister(0x0B); - const uint16_t fsk_reg59 = BK4819_ReadRegister(0x59) & ~((1u << 15) | (1u << 14) | (1u << 12) | (1u << 11)); - - const bool rx_sync = (interrupt_bits & BK4819_REG_02_FSK_RX_SYNC) ? true : false; - const bool rx_sync_neg = (rx_sync_flags & (1u << 7)) ? true : false; + const bool rx_sync = (interrupt_bits & BK4819_REG_02_FSK_RX_SYNC) ? true : false; + const bool rx_sync_neg = (rx_sync_flags & (1u << 7)) ? true : false; const bool rx_fifo_almost_full = (interrupt_bits & BK4819_REG_02_FSK_FIFO_ALMOST_FULL) ? true : false; - const bool rx_finished = (interrupt_bits & BK4819_REG_02_FSK_RX_FINISHED) ? true : false; + const bool rx_finished = (interrupt_bits & BK4819_REG_02_FSK_RX_FINISHED) ? true : false; - if (rx_sync) - { + if (rx_sync) { mdc1200_rx_buffer_index = 0; { @@ -493,25 +459,18 @@ void MDC1200_process_rx(const uint16_t interrupt_bits) } - - - - } - if (rx_fifo_almost_full) - { + if (rx_fifo_almost_full) { unsigned int i; const unsigned int count = BK4819_ReadRegister(0x5E) & (7u << 0); // almost full threshold // fetch received packet data - for (i = 0; i < count; i++) - { + for (i = 0; i < count; i++) { const uint16_t word = BK4819_ReadRegister(0x5F) ^ (rx_sync_neg ? 0xFFFF : 0x0000); - if (mdc1200_rx_buffer_index < sizeof(mdc1200_rx_buffer)) mdc1200_rx_buffer[mdc1200_rx_buffer_index++] = (word >> 0) & 0xff; @@ -520,8 +479,7 @@ void MDC1200_process_rx(const uint16_t interrupt_bits) } - if (mdc1200_rx_buffer_index >= sizeof(mdc1200_rx_buffer)) - { + if (mdc1200_rx_buffer_index >= sizeof(mdc1200_rx_buffer)) { BK4819_WriteRegister(0x59, (1u << 15) | (1u << 14) | fsk_reg59); BK4819_WriteRegister(0x59, (1u << 12) | fsk_reg59); @@ -531,7 +489,6 @@ void MDC1200_process_rx(const uint16_t interrupt_bits) &mdc1200_op, &mdc1200_arg, &mdc1200_unit_id)) { - mdc1200_rx_ready_tick_500ms = 2 * 5; // 6 second MDC display time gUpdateDisplay = true; @@ -541,8 +498,7 @@ void MDC1200_process_rx(const uint16_t interrupt_bits) } } - if (rx_finished) - { + if (rx_finished) { mdc1200_rx_buffer_index = 0; @@ -555,14 +511,13 @@ void MDC1200_process_rx(const uint16_t interrupt_bits) } - -void MDC1200_init(void) -{ +void MDC1200_init(void) { memcpy(mdc1200_sync_suc_xor, mdc1200_sync, sizeof(mdc1200_sync)); xor_modulation(mdc1200_sync_suc_xor, sizeof(mdc1200_sync_suc_xor)); MDC1200_reset_rx(); } + uint16_t extractHex(const char *str) { uint16_t result = 0; while (*str) { @@ -577,4 +532,55 @@ uint16_t extractHex(const char *str) { } } return result; -} \ No newline at end of file +} +uint8_t contact_num=0; +uint16_t MDC_ADD[4] = {0x1D48, 0x1D88, 0x1DC8,0x1F08}; +void mdc1200_update_contact_num() +{ + EEPROM_ReadBuffer(MDC_NUM_ADD, (uint8_t *)&contact_num, 1); + if(contact_num>MAX_CONTACT_NUM)contact_num=0; +} +bool mdc1200_contact_find(uint16_t mdc_id, char *contact) { + mdc1200_update_contact_num(); + uint8_t add = 0; + for (uint8_t i = 0; i < contact_num; i++) { + uint8_t read_once[16]={0}; + if ((i & 3) == 0 && i) add++; + EEPROM_ReadBuffer(MDC_ADD[add] + i * 16, read_once, 16); + if (mdc_id == (uint16_t) (read_once[0] | (read_once[1] << 8))) { + for (int j = 0; j < 14; ++j) { + if(read_once[2+j]<' '||read_once[2+j]>'~') + return false; + memcpy(contact,read_once+2,14); + } + + + return true; + } + } + return false; +} +//uint8_t A[64]; +// memset(A,'A',6*16); +// for (int i = MDC_ADD1; i < MDC_ADD1+64; ++i) { +// EEPROM_WriteBuffer(i,&A[i-MDC_ADD1]); +// } +// +// for (int i = MDC_ADD2+72; i RFckuP8;1<$5_P_xliB5 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 search starts here: - /Library/Developer/CommandLineTools/usr/lib/clang/14.0.0/include - /Library/Developer/CommandLineTools/SDKs/MacOSX13.1.sdk/usr/include - /Library/Developer/CommandLineTools/usr/include - /Library/Developer/CommandLineTools/SDKs/MacOSX13.1.sdk/System/Library/Frameworks (framework directory) -End of search list. -[2/2] Linking C executable cmTC_beedd -Apple clang version 14.0.0 (clang-1400.0.29.202) -Target: arm64-apple-darwin21.6.0 -Thread model: posix -InstalledDir: /Library/Developer/CommandLineTools/usr/bin - "/Library/Developer/CommandLineTools/usr/bin/ld" -demangle -lto_library /Library/Developer/CommandLineTools/usr/lib/libLTO.dylib -dynamic -arch arm64 -platform_version macos 12.6.0 13.1 -syslibroot /Library/Developer/CommandLineTools/SDKs/MacOSX13.1.sdk -o cmTC_beedd -search_paths_first -headerpad_max_install_names -v CMakeFiles/cmTC_beedd.dir/CMakeCCompilerABI.c.o -lSystem /Library/Developer/CommandLineTools/usr/lib/clang/14.0.0/lib/darwin/libclang_rt.osx.a -@(#)PROGRAM:ld PROJECT:ld64-820.1 -BUILD 20:07:05 Nov 7 2022 -configured to support archs: armv6 armv7 armv7s arm64 arm64e arm64_32 i386 x86_64 x86_64h armv6m armv7k armv7m armv7em -Library search paths: - /Library/Developer/CommandLineTools/SDKs/MacOSX13.1.sdk/usr/lib -Framework search paths: - /Library/Developer/CommandLineTools/SDKs/MacOSX13.1.sdk/System/Library/Frameworks/ - - - -Parsed C implicit include dir info from above output: rv=done - found start of include info - found start of implicit include info - add: [/Library/Developer/CommandLineTools/usr/lib/clang/14.0.0/include] - add: [/Library/Developer/CommandLineTools/SDKs/MacOSX13.1.sdk/usr/include] - add: [/Library/Developer/CommandLineTools/usr/include] - end of search list found - collapse include dir [/Library/Developer/CommandLineTools/usr/lib/clang/14.0.0/include] ==> [/Library/Developer/CommandLineTools/usr/lib/clang/14.0.0/include] - collapse include dir [/Library/Developer/CommandLineTools/SDKs/MacOSX13.1.sdk/usr/include] ==> [/Library/Developer/CommandLineTools/SDKs/MacOSX13.1.sdk/usr/include] - collapse include dir [/Library/Developer/CommandLineTools/usr/include] ==> [/Library/Developer/CommandLineTools/usr/include] - implicit include dirs: [/Library/Developer/CommandLineTools/usr/lib/clang/14.0.0/include;/Library/Developer/CommandLineTools/SDKs/MacOSX13.1.sdk/usr/include;/Library/Developer/CommandLineTools/usr/include] - - -Parsed C implicit link information from above output: - link line regex: [^( *|.*[/\])(ld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)] - ignore line: [Change Dir: /Users/rubo/Downloads/uv-k5-firmware-chinese 2/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-7R2ItM] - ignore line: [] - ignore line: [Run Build Command(s):/Applications/CLion.app/Contents/bin/ninja/mac/ninja cmTC_beedd && [1/2] Building C object CMakeFiles/cmTC_beedd.dir/CMakeCCompilerABI.c.o] - ignore line: [Apple clang version 14.0.0 (clang-1400.0.29.202)] - ignore line: [Target: arm64-apple-darwin21.6.0] - ignore line: [Thread model: posix] - ignore line: [InstalledDir: /Library/Developer/CommandLineTools/usr/bin] - ignore line: [clang: warning: -Wl -v: 'linker' input unused [-Wunused-command-line-argument]] - ignore line: [ "/Library/Developer/CommandLineTools/usr/bin/clang" -cc1 -triple arm64-apple-macosx12.6.0 -Wundef-prefix=TARGET_OS_ -Wdeprecated-objc-isa-usage -Werror=deprecated-objc-isa-usage -Werror=implicit-function-declaration -emit-obj -mrelax-all --mrelax-relocations -disable-free -clear-ast-before-backend -disable-llvm-verifier -discard-value-names -main-file-name CMakeCCompilerABI.c -mrelocation-model pic -pic-level 2 -mframe-pointer=non-leaf -fno-strict-return -fno-rounding-math -funwind-tables=2 -fobjc-msgsend-selector-stubs -target-sdk-version=13.1 -fvisibility-inlines-hidden-static-local-var -target-cpu apple-m1 -target-feature +v8.5a -target-feature +fp-armv8 -target-feature +neon -target-feature +crc -target-feature +crypto -target-feature +dotprod -target-feature +fp16fml -target-feature +ras -target-feature +lse -target-feature +rdm -target-feature +rcpc -target-feature +zcm -target-feature +zcz -target-feature +fullfp16 -target-feature +sm4 -target-feature +sha3 -target-feature +sha2 -target-feature +aes -target-abi darwinpcs -fallow-half-arguments-and-returns -debugger-tuning=lldb -target-linker-version 820.1 -v -resource-dir /Library/Developer/CommandLineTools/usr/lib/clang/14.0.0 -dependency-file CMakeFiles/cmTC_beedd.dir/CMakeCCompilerABI.c.o.d -skip-unused-modulemap-deps -MT CMakeFiles/cmTC_beedd.dir/CMakeCCompilerABI.c.o -sys-header-deps -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX13.1.sdk -internal-isystem /Library/Developer/CommandLineTools/SDKs/MacOSX13.1.sdk/usr/local/include -internal-isystem /Library/Developer/CommandLineTools/usr/lib/clang/14.0.0/include -internal-externc-isystem /Library/Developer/CommandLineTools/SDKs/MacOSX13.1.sdk/usr/include -internal-externc-isystem /Library/Developer/CommandLineTools/usr/include -Wno-reorder-init-list -Wno-implicit-int-float-conversion -Wno-c99-designator -Wno-final-dtor-non-final-class -Wno-extra-semi-stmt -Wno-misleading-indentation -Wno-quoted-include-in-framework-header -Wno-implicit-fallthrough -Wno-enum-enum-conversion -Wno-enum-float-conversion -Wno-elaborated-enum-base -Wno-reserved-identifier -Wno-gnu-folding-constant -Wno-cast-function-type -Wno-bitwise-instead-of-logical "-fdebug-compilation-dir=/Users/rubo/Downloads/uv-k5-firmware-chinese 2/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-7R2ItM" -ferror-limit 19 -stack-protector 1 -fstack-check -mdarwin-stkchk-strong-link -fblocks -fencode-extended-block-signature -fregister-global-dtors-with-atexit -fgnuc-version=4.2.1 -fmax-type-align=16 -fcommon -fcolor-diagnostics -clang-vendor-feature=+messageToSelfInClassMethodIdReturnType -clang-vendor-feature=+disableInferNewAvailabilityFromInit -clang-vendor-feature=+disableNonDependentMemberExprInCurrentInstantiation -fno-odr-hash-protocols -clang-vendor-feature=+enableAggressiveVLAFolding -clang-vendor-feature=+revert09abecef7bbf -clang-vendor-feature=+thisNoAlignAttr -clang-vendor-feature=+thisNoNullAttr -mllvm -disable-aligned-alloc-awareness=1 -D__GCC_HAVE_DWARF2_CFI_ASM=1 -o CMakeFiles/cmTC_beedd.dir/CMakeCCompilerABI.c.o -x c /Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.25/Modules/CMakeCCompilerABI.c] - ignore line: [clang -cc1 version 14.0.0 (clang-1400.0.29.202) default target arm64-apple-darwin21.6.0] - ignore line: [ignoring nonexistent directory "/Library/Developer/CommandLineTools/SDKs/MacOSX13.1.sdk/usr/local/include"] - ignore line: [ignoring nonexistent directory "/Library/Developer/CommandLineTools/SDKs/MacOSX13.1.sdk/Library/Frameworks"] - ignore line: [#include "..." search starts here:] - ignore line: [#include <...> search starts here:] - ignore line: [ /Library/Developer/CommandLineTools/usr/lib/clang/14.0.0/include] - ignore line: [ /Library/Developer/CommandLineTools/SDKs/MacOSX13.1.sdk/usr/include] - ignore line: [ /Library/Developer/CommandLineTools/usr/include] - ignore line: [ /Library/Developer/CommandLineTools/SDKs/MacOSX13.1.sdk/System/Library/Frameworks (framework directory)] - ignore line: [End of search list.] - ignore line: [[2/2] Linking C executable cmTC_beedd] - ignore line: [Apple clang version 14.0.0 (clang-1400.0.29.202)] - ignore line: [Target: arm64-apple-darwin21.6.0] - ignore line: [Thread model: posix] - ignore line: [InstalledDir: /Library/Developer/CommandLineTools/usr/bin] - link line: [ "/Library/Developer/CommandLineTools/usr/bin/ld" -demangle -lto_library /Library/Developer/CommandLineTools/usr/lib/libLTO.dylib -dynamic -arch arm64 -platform_version macos 12.6.0 13.1 -syslibroot /Library/Developer/CommandLineTools/SDKs/MacOSX13.1.sdk -o cmTC_beedd -search_paths_first -headerpad_max_install_names -v CMakeFiles/cmTC_beedd.dir/CMakeCCompilerABI.c.o -lSystem /Library/Developer/CommandLineTools/usr/lib/clang/14.0.0/lib/darwin/libclang_rt.osx.a] - arg [/Library/Developer/CommandLineTools/usr/bin/ld] ==> ignore - arg [-demangle] ==> ignore - arg [-lto_library] ==> ignore, skip following value - arg [/Library/Developer/CommandLineTools/usr/lib/libLTO.dylib] ==> skip value of -lto_library - arg [-dynamic] ==> ignore - arg [-arch] ==> ignore - arg [arm64] ==> ignore - arg [-platform_version] ==> ignore - arg [macos] ==> ignore - arg [12.6.0] ==> ignore - arg [13.1] ==> ignore - arg [-syslibroot] ==> ignore - arg [/Library/Developer/CommandLineTools/SDKs/MacOSX13.1.sdk] ==> ignore - arg [-o] ==> ignore - arg [cmTC_beedd] ==> ignore - arg [-search_paths_first] ==> ignore - arg [-headerpad_max_install_names] ==> ignore - arg [-v] ==> ignore - arg [CMakeFiles/cmTC_beedd.dir/CMakeCCompilerABI.c.o] ==> ignore - arg [-lSystem] ==> lib [System] - arg [/Library/Developer/CommandLineTools/usr/lib/clang/14.0.0/lib/darwin/libclang_rt.osx.a] ==> lib [/Library/Developer/CommandLineTools/usr/lib/clang/14.0.0/lib/darwin/libclang_rt.osx.a] - Library search paths: [;/Library/Developer/CommandLineTools/SDKs/MacOSX13.1.sdk/usr/lib] - Framework search paths: [;/Library/Developer/CommandLineTools/SDKs/MacOSX13.1.sdk/System/Library/Frameworks/] - remove lib [System] - remove lib [/Library/Developer/CommandLineTools/usr/lib/clang/14.0.0/lib/darwin/libclang_rt.osx.a] - collapse library dir [/Library/Developer/CommandLineTools/SDKs/MacOSX13.1.sdk/usr/lib] ==> [/Library/Developer/CommandLineTools/SDKs/MacOSX13.1.sdk/usr/lib] - collapse framework dir [/Library/Developer/CommandLineTools/SDKs/MacOSX13.1.sdk/System/Library/Frameworks/] ==> [/Library/Developer/CommandLineTools/SDKs/MacOSX13.1.sdk/System/Library/Frameworks] - implicit libs: [] - implicit objs: [] - implicit dirs: [/Library/Developer/CommandLineTools/SDKs/MacOSX13.1.sdk/usr/lib] - implicit fwks: [/Library/Developer/CommandLineTools/SDKs/MacOSX13.1.sdk/System/Library/Frameworks] - - -Detecting CXX compiler ABI info compiled with the following output: -Change Dir: /Users/rubo/Downloads/uv-k5-firmware-chinese 2/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-wgbyaF - -Run Build Command(s):/Applications/CLion.app/Contents/bin/ninja/mac/ninja cmTC_a4929 && [1/2] Building CXX object CMakeFiles/cmTC_a4929.dir/CMakeCXXCompilerABI.cpp.o -Apple clang version 14.0.0 (clang-1400.0.29.202) -Target: arm64-apple-darwin21.6.0 -Thread model: posix -InstalledDir: /Library/Developer/CommandLineTools/usr/bin -clang: warning: -Wl,-v: 'linker' input unused [-Wunused-command-line-argument] - "/Library/Developer/CommandLineTools/usr/bin/clang" -cc1 -triple arm64-apple-macosx12.6.0 -Wundef-prefix=TARGET_OS_ -Wdeprecated-objc-isa-usage -Werror=deprecated-objc-isa-usage -Werror=implicit-function-declaration -emit-obj -mrelax-all --mrelax-relocations -disable-free -clear-ast-before-backend -disable-llvm-verifier -discard-value-names -main-file-name CMakeCXXCompilerABI.cpp -mrelocation-model pic -pic-level 2 -mframe-pointer=non-leaf -fno-strict-return -fno-rounding-math -funwind-tables=2 -fobjc-msgsend-selector-stubs -target-sdk-version=13.1 -fvisibility-inlines-hidden-static-local-var -target-cpu apple-m1 -target-feature +v8.5a -target-feature +fp-armv8 -target-feature +neon -target-feature +crc -target-feature +crypto -target-feature +dotprod -target-feature +fp16fml -target-feature +ras -target-feature +lse -target-feature +rdm -target-feature +rcpc -target-feature +zcm -target-feature +zcz -target-feature +fullfp16 -target-feature +sm4 -target-feature +sha3 -target-feature +sha2 -target-feature +aes -target-abi darwinpcs -fallow-half-arguments-and-returns -debugger-tuning=lldb -target-linker-version 820.1 -v -resource-dir /Library/Developer/CommandLineTools/usr/lib/clang/14.0.0 -dependency-file CMakeFiles/cmTC_a4929.dir/CMakeCXXCompilerABI.cpp.o.d -skip-unused-modulemap-deps -MT CMakeFiles/cmTC_a4929.dir/CMakeCXXCompilerABI.cpp.o -sys-header-deps -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX13.1.sdk -stdlib=libc++ -internal-isystem /Library/Developer/CommandLineTools/SDKs/MacOSX13.1.sdk/usr/include/c++/v1 -internal-isystem /Library/Developer/CommandLineTools/SDKs/MacOSX13.1.sdk/usr/local/include -internal-isystem /Library/Developer/CommandLineTools/usr/lib/clang/14.0.0/include -internal-externc-isystem /Library/Developer/CommandLineTools/SDKs/MacOSX13.1.sdk/usr/include -internal-externc-isystem /Library/Developer/CommandLineTools/usr/include -Wno-reorder-init-list -Wno-implicit-int-float-conversion -Wno-c99-designator -Wno-final-dtor-non-final-class -Wno-extra-semi-stmt -Wno-misleading-indentation -Wno-quoted-include-in-framework-header -Wno-implicit-fallthrough -Wno-enum-enum-conversion -Wno-enum-float-conversion -Wno-elaborated-enum-base -Wno-reserved-identifier -Wno-gnu-folding-constant -Wno-cast-function-type -Wno-bitwise-instead-of-logical -fdeprecated-macro "-fdebug-compilation-dir=/Users/rubo/Downloads/uv-k5-firmware-chinese 2/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-wgbyaF" -ferror-limit 19 -stack-protector 1 -fstack-check -mdarwin-stkchk-strong-link -fblocks -fencode-extended-block-signature -fregister-global-dtors-with-atexit -fgnuc-version=4.2.1 -fno-cxx-modules -fcxx-exceptions -fexceptions -fmax-type-align=16 -fcommon -fcolor-diagnostics -clang-vendor-feature=+messageToSelfInClassMethodIdReturnType -clang-vendor-feature=+disableInferNewAvailabilityFromInit -clang-vendor-feature=+disableNonDependentMemberExprInCurrentInstantiation -fno-odr-hash-protocols -clang-vendor-feature=+enableAggressiveVLAFolding -clang-vendor-feature=+revert09abecef7bbf -clang-vendor-feature=+thisNoAlignAttr -clang-vendor-feature=+thisNoNullAttr -mllvm -disable-aligned-alloc-awareness=1 -D__GCC_HAVE_DWARF2_CFI_ASM=1 -o CMakeFiles/cmTC_a4929.dir/CMakeCXXCompilerABI.cpp.o -x c++ /Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.25/Modules/CMakeCXXCompilerABI.cpp -clang -cc1 version 14.0.0 (clang-1400.0.29.202) default target arm64-apple-darwin21.6.0 -ignoring nonexistent directory "/Library/Developer/CommandLineTools/SDKs/MacOSX13.1.sdk/usr/local/include" -ignoring nonexistent directory "/Library/Developer/CommandLineTools/SDKs/MacOSX13.1.sdk/Library/Frameworks" -#include "..." search starts here: -#include <...> search starts here: - /Library/Developer/CommandLineTools/SDKs/MacOSX13.1.sdk/usr/include/c++/v1 - /Library/Developer/CommandLineTools/usr/lib/clang/14.0.0/include - /Library/Developer/CommandLineTools/SDKs/MacOSX13.1.sdk/usr/include - /Library/Developer/CommandLineTools/usr/include - /Library/Developer/CommandLineTools/SDKs/MacOSX13.1.sdk/System/Library/Frameworks (framework directory) -End of search list. -[2/2] Linking CXX executable cmTC_a4929 -Apple clang version 14.0.0 (clang-1400.0.29.202) -Target: arm64-apple-darwin21.6.0 -Thread model: posix -InstalledDir: /Library/Developer/CommandLineTools/usr/bin - "/Library/Developer/CommandLineTools/usr/bin/ld" -demangle -lto_library /Library/Developer/CommandLineTools/usr/lib/libLTO.dylib -dynamic -arch arm64 -platform_version macos 12.6.0 13.1 -syslibroot /Library/Developer/CommandLineTools/SDKs/MacOSX13.1.sdk -o cmTC_a4929 -search_paths_first -headerpad_max_install_names -v CMakeFiles/cmTC_a4929.dir/CMakeCXXCompilerABI.cpp.o -lc++ -lSystem /Library/Developer/CommandLineTools/usr/lib/clang/14.0.0/lib/darwin/libclang_rt.osx.a -@(#)PROGRAM:ld PROJECT:ld64-820.1 -BUILD 20:07:05 Nov 7 2022 -configured to support archs: armv6 armv7 armv7s arm64 arm64e arm64_32 i386 x86_64 x86_64h armv6m armv7k armv7m armv7em -Library search paths: - /Library/Developer/CommandLineTools/SDKs/MacOSX13.1.sdk/usr/lib -Framework search paths: - /Library/Developer/CommandLineTools/SDKs/MacOSX13.1.sdk/System/Library/Frameworks/ - - - -Parsed CXX implicit include dir info from above output: rv=done - found start of include info - found start of implicit include info - add: [/Library/Developer/CommandLineTools/SDKs/MacOSX13.1.sdk/usr/include/c++/v1] - add: [/Library/Developer/CommandLineTools/usr/lib/clang/14.0.0/include] - add: [/Library/Developer/CommandLineTools/SDKs/MacOSX13.1.sdk/usr/include] - add: [/Library/Developer/CommandLineTools/usr/include] - end of search list found - collapse include dir [/Library/Developer/CommandLineTools/SDKs/MacOSX13.1.sdk/usr/include/c++/v1] ==> [/Library/Developer/CommandLineTools/SDKs/MacOSX13.1.sdk/usr/include/c++/v1] - collapse include dir [/Library/Developer/CommandLineTools/usr/lib/clang/14.0.0/include] ==> [/Library/Developer/CommandLineTools/usr/lib/clang/14.0.0/include] - collapse include dir [/Library/Developer/CommandLineTools/SDKs/MacOSX13.1.sdk/usr/include] ==> [/Library/Developer/CommandLineTools/SDKs/MacOSX13.1.sdk/usr/include] - collapse include dir [/Library/Developer/CommandLineTools/usr/include] ==> [/Library/Developer/CommandLineTools/usr/include] - implicit include dirs: [/Library/Developer/CommandLineTools/SDKs/MacOSX13.1.sdk/usr/include/c++/v1;/Library/Developer/CommandLineTools/usr/lib/clang/14.0.0/include;/Library/Developer/CommandLineTools/SDKs/MacOSX13.1.sdk/usr/include;/Library/Developer/CommandLineTools/usr/include] - - -Parsed CXX implicit link information from above output: - link line regex: [^( *|.*[/\])(ld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)] - ignore line: [Change Dir: /Users/rubo/Downloads/uv-k5-firmware-chinese 2/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-wgbyaF] - ignore line: [] - ignore line: [Run Build Command(s):/Applications/CLion.app/Contents/bin/ninja/mac/ninja cmTC_a4929 && [1/2] Building CXX object CMakeFiles/cmTC_a4929.dir/CMakeCXXCompilerABI.cpp.o] - ignore line: [Apple clang version 14.0.0 (clang-1400.0.29.202)] - ignore line: [Target: arm64-apple-darwin21.6.0] - ignore line: [Thread model: posix] - ignore line: [InstalledDir: /Library/Developer/CommandLineTools/usr/bin] - ignore line: [clang: warning: -Wl -v: 'linker' input unused [-Wunused-command-line-argument]] - ignore line: [ "/Library/Developer/CommandLineTools/usr/bin/clang" -cc1 -triple arm64-apple-macosx12.6.0 -Wundef-prefix=TARGET_OS_ -Wdeprecated-objc-isa-usage -Werror=deprecated-objc-isa-usage -Werror=implicit-function-declaration -emit-obj -mrelax-all --mrelax-relocations -disable-free -clear-ast-before-backend -disable-llvm-verifier -discard-value-names -main-file-name CMakeCXXCompilerABI.cpp -mrelocation-model pic -pic-level 2 -mframe-pointer=non-leaf -fno-strict-return -fno-rounding-math -funwind-tables=2 -fobjc-msgsend-selector-stubs -target-sdk-version=13.1 -fvisibility-inlines-hidden-static-local-var -target-cpu apple-m1 -target-feature +v8.5a -target-feature +fp-armv8 -target-feature +neon -target-feature +crc -target-feature +crypto -target-feature +dotprod -target-feature +fp16fml -target-feature +ras -target-feature +lse -target-feature +rdm -target-feature +rcpc -target-feature +zcm -target-feature +zcz -target-feature +fullfp16 -target-feature +sm4 -target-feature +sha3 -target-feature +sha2 -target-feature +aes -target-abi darwinpcs -fallow-half-arguments-and-returns -debugger-tuning=lldb -target-linker-version 820.1 -v -resource-dir /Library/Developer/CommandLineTools/usr/lib/clang/14.0.0 -dependency-file CMakeFiles/cmTC_a4929.dir/CMakeCXXCompilerABI.cpp.o.d -skip-unused-modulemap-deps -MT CMakeFiles/cmTC_a4929.dir/CMakeCXXCompilerABI.cpp.o -sys-header-deps -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX13.1.sdk -stdlib=libc++ -internal-isystem /Library/Developer/CommandLineTools/SDKs/MacOSX13.1.sdk/usr/include/c++/v1 -internal-isystem /Library/Developer/CommandLineTools/SDKs/MacOSX13.1.sdk/usr/local/include -internal-isystem /Library/Developer/CommandLineTools/usr/lib/clang/14.0.0/include -internal-externc-isystem /Library/Developer/CommandLineTools/SDKs/MacOSX13.1.sdk/usr/include -internal-externc-isystem /Library/Developer/CommandLineTools/usr/include -Wno-reorder-init-list -Wno-implicit-int-float-conversion -Wno-c99-designator -Wno-final-dtor-non-final-class -Wno-extra-semi-stmt -Wno-misleading-indentation -Wno-quoted-include-in-framework-header -Wno-implicit-fallthrough -Wno-enum-enum-conversion -Wno-enum-float-conversion -Wno-elaborated-enum-base -Wno-reserved-identifier -Wno-gnu-folding-constant -Wno-cast-function-type -Wno-bitwise-instead-of-logical -fdeprecated-macro "-fdebug-compilation-dir=/Users/rubo/Downloads/uv-k5-firmware-chinese 2/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-wgbyaF" -ferror-limit 19 -stack-protector 1 -fstack-check -mdarwin-stkchk-strong-link -fblocks -fencode-extended-block-signature -fregister-global-dtors-with-atexit -fgnuc-version=4.2.1 -fno-cxx-modules -fcxx-exceptions -fexceptions -fmax-type-align=16 -fcommon -fcolor-diagnostics -clang-vendor-feature=+messageToSelfInClassMethodIdReturnType -clang-vendor-feature=+disableInferNewAvailabilityFromInit -clang-vendor-feature=+disableNonDependentMemberExprInCurrentInstantiation -fno-odr-hash-protocols -clang-vendor-feature=+enableAggressiveVLAFolding -clang-vendor-feature=+revert09abecef7bbf -clang-vendor-feature=+thisNoAlignAttr -clang-vendor-feature=+thisNoNullAttr -mllvm -disable-aligned-alloc-awareness=1 -D__GCC_HAVE_DWARF2_CFI_ASM=1 -o CMakeFiles/cmTC_a4929.dir/CMakeCXXCompilerABI.cpp.o -x c++ /Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.25/Modules/CMakeCXXCompilerABI.cpp] - ignore line: [clang -cc1 version 14.0.0 (clang-1400.0.29.202) default target arm64-apple-darwin21.6.0] - ignore line: [ignoring nonexistent directory "/Library/Developer/CommandLineTools/SDKs/MacOSX13.1.sdk/usr/local/include"] - ignore line: [ignoring nonexistent directory "/Library/Developer/CommandLineTools/SDKs/MacOSX13.1.sdk/Library/Frameworks"] - ignore line: [#include "..." search starts here:] - ignore line: [#include <...> search starts here:] - ignore line: [ /Library/Developer/CommandLineTools/SDKs/MacOSX13.1.sdk/usr/include/c++/v1] - ignore line: [ /Library/Developer/CommandLineTools/usr/lib/clang/14.0.0/include] - ignore line: [ /Library/Developer/CommandLineTools/SDKs/MacOSX13.1.sdk/usr/include] - ignore line: [ /Library/Developer/CommandLineTools/usr/include] - ignore line: [ /Library/Developer/CommandLineTools/SDKs/MacOSX13.1.sdk/System/Library/Frameworks (framework directory)] - ignore line: [End of search list.] - ignore line: [[2/2] Linking CXX executable cmTC_a4929] - ignore line: [Apple clang version 14.0.0 (clang-1400.0.29.202)] - ignore line: [Target: arm64-apple-darwin21.6.0] - ignore line: [Thread model: posix] - ignore line: [InstalledDir: /Library/Developer/CommandLineTools/usr/bin] - link line: [ "/Library/Developer/CommandLineTools/usr/bin/ld" -demangle -lto_library /Library/Developer/CommandLineTools/usr/lib/libLTO.dylib -dynamic -arch arm64 -platform_version macos 12.6.0 13.1 -syslibroot /Library/Developer/CommandLineTools/SDKs/MacOSX13.1.sdk -o cmTC_a4929 -search_paths_first -headerpad_max_install_names -v CMakeFiles/cmTC_a4929.dir/CMakeCXXCompilerABI.cpp.o -lc++ -lSystem /Library/Developer/CommandLineTools/usr/lib/clang/14.0.0/lib/darwin/libclang_rt.osx.a] - arg [/Library/Developer/CommandLineTools/usr/bin/ld] ==> ignore - arg [-demangle] ==> ignore - arg [-lto_library] ==> ignore, skip following value - arg [/Library/Developer/CommandLineTools/usr/lib/libLTO.dylib] ==> skip value of -lto_library - arg [-dynamic] ==> ignore - arg [-arch] ==> ignore - arg [arm64] ==> ignore - arg [-platform_version] ==> ignore - arg [macos] ==> ignore - arg [12.6.0] ==> ignore - arg [13.1] ==> ignore - arg [-syslibroot] ==> ignore - arg [/Library/Developer/CommandLineTools/SDKs/MacOSX13.1.sdk] ==> ignore - arg [-o] ==> ignore - arg [cmTC_a4929] ==> ignore - arg [-search_paths_first] ==> ignore - arg [-headerpad_max_install_names] ==> ignore - arg [-v] ==> ignore - arg [CMakeFiles/cmTC_a4929.dir/CMakeCXXCompilerABI.cpp.o] ==> ignore - arg [-lc++] ==> lib [c++] - arg [-lSystem] ==> lib [System] - arg [/Library/Developer/CommandLineTools/usr/lib/clang/14.0.0/lib/darwin/libclang_rt.osx.a] ==> lib [/Library/Developer/CommandLineTools/usr/lib/clang/14.0.0/lib/darwin/libclang_rt.osx.a] - Library search paths: [;/Library/Developer/CommandLineTools/SDKs/MacOSX13.1.sdk/usr/lib] - Framework search paths: [;/Library/Developer/CommandLineTools/SDKs/MacOSX13.1.sdk/System/Library/Frameworks/] - remove lib [System] - remove lib [/Library/Developer/CommandLineTools/usr/lib/clang/14.0.0/lib/darwin/libclang_rt.osx.a] - collapse library dir [/Library/Developer/CommandLineTools/SDKs/MacOSX13.1.sdk/usr/lib] ==> [/Library/Developer/CommandLineTools/SDKs/MacOSX13.1.sdk/usr/lib] - collapse framework dir [/Library/Developer/CommandLineTools/SDKs/MacOSX13.1.sdk/System/Library/Frameworks/] ==> [/Library/Developer/CommandLineTools/SDKs/MacOSX13.1.sdk/System/Library/Frameworks] - implicit libs: [c++] - implicit objs: [] - implicit dirs: [/Library/Developer/CommandLineTools/SDKs/MacOSX13.1.sdk/usr/lib] - implicit fwks: [/Library/Developer/CommandLineTools/SDKs/MacOSX13.1.sdk/System/Library/Frameworks] - - -The system is: Darwin - 21.6.0 - arm64 -Compiling the C compiler identification source file "CMakeCCompilerId.c" succeeded. -Compiler: /Library/Developer/CommandLineTools/usr/bin/cc -Build flags: -Id flags: -c - -The output was: -0 - - -Compilation of the C compiler identification source "CMakeCCompilerId.c" produced "CMakeCCompilerId.o" - -The C compiler identification is AppleClang, found in "/Users/rubo/uv-k5-firmware-chinese/cmake-build-debug/CMakeFiles/3.25.2/CompilerIdC/CMakeCCompilerId.o" - -Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" succeeded. -Compiler: /Library/Developer/CommandLineTools/usr/bin/c++ -Build flags: -Id flags: -c - -The output was: -0 - - -Compilation of the CXX compiler identification source "CMakeCXXCompilerId.cpp" produced "CMakeCXXCompilerId.o" - -The CXX compiler identification is AppleClang, found in "/Users/rubo/uv-k5-firmware-chinese/cmake-build-debug/CMakeFiles/3.25.2/CompilerIdCXX/CMakeCXXCompilerId.o" - -Detecting C compiler ABI info compiled with the following output: -Change Dir: /Users/rubo/uv-k5-firmware-chinese/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-RX1egx - -Run Build Command(s):/Applications/CLion.app/Contents/bin/ninja/mac/ninja cmTC_e2bd2 && [1/2] Building C object CMakeFiles/cmTC_e2bd2.dir/CMakeCCompilerABI.c.o -Apple clang version 14.0.0 (clang-1400.0.29.202) -Target: arm64-apple-darwin21.6.0 -Thread model: posix -InstalledDir: /Library/Developer/CommandLineTools/usr/bin -clang: warning: -Wl,-v: 'linker' input unused [-Wunused-command-line-argument] - "/Library/Developer/CommandLineTools/usr/bin/clang" -cc1 -triple arm64-apple-macosx12.6.0 -Wundef-prefix=TARGET_OS_ -Wdeprecated-objc-isa-usage -Werror=deprecated-objc-isa-usage -Werror=implicit-function-declaration -emit-obj -mrelax-all --mrelax-relocations -disable-free -clear-ast-before-backend -disable-llvm-verifier -discard-value-names -main-file-name CMakeCCompilerABI.c -mrelocation-model pic -pic-level 2 -mframe-pointer=non-leaf -fno-strict-return -fno-rounding-math -funwind-tables=2 -fobjc-msgsend-selector-stubs -target-sdk-version=13.1 -fvisibility-inlines-hidden-static-local-var -target-cpu apple-m1 -target-feature +v8.5a -target-feature +fp-armv8 -target-feature +neon -target-feature +crc -target-feature +crypto -target-feature +dotprod -target-feature +fp16fml -target-feature +ras -target-feature +lse -target-feature +rdm -target-feature +rcpc -target-feature +zcm -target-feature +zcz -target-feature +fullfp16 -target-feature +sm4 -target-feature +sha3 -target-feature +sha2 -target-feature +aes -target-abi darwinpcs -fallow-half-arguments-and-returns -debugger-tuning=lldb -target-linker-version 820.1 -v -resource-dir /Library/Developer/CommandLineTools/usr/lib/clang/14.0.0 -dependency-file CMakeFiles/cmTC_e2bd2.dir/CMakeCCompilerABI.c.o.d -skip-unused-modulemap-deps -MT CMakeFiles/cmTC_e2bd2.dir/CMakeCCompilerABI.c.o -sys-header-deps -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX13.1.sdk -internal-isystem /Library/Developer/CommandLineTools/SDKs/MacOSX13.1.sdk/usr/local/include -internal-isystem /Library/Developer/CommandLineTools/usr/lib/clang/14.0.0/include -internal-externc-isystem /Library/Developer/CommandLineTools/SDKs/MacOSX13.1.sdk/usr/include -internal-externc-isystem /Library/Developer/CommandLineTools/usr/include -Wno-reorder-init-list -Wno-implicit-int-float-conversion -Wno-c99-designator -Wno-final-dtor-non-final-class -Wno-extra-semi-stmt -Wno-misleading-indentation -Wno-quoted-include-in-framework-header -Wno-implicit-fallthrough -Wno-enum-enum-conversion -Wno-enum-float-conversion -Wno-elaborated-enum-base -Wno-reserved-identifier -Wno-gnu-folding-constant -Wno-cast-function-type -Wno-bitwise-instead-of-logical -fdebug-compilation-dir=/Users/rubo/uv-k5-firmware-chinese/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-RX1egx -ferror-limit 19 -stack-protector 1 -fstack-check -mdarwin-stkchk-strong-link -fblocks -fencode-extended-block-signature -fregister-global-dtors-with-atexit -fgnuc-version=4.2.1 -fmax-type-align=16 -fcommon -fcolor-diagnostics -clang-vendor-feature=+messageToSelfInClassMethodIdReturnType -clang-vendor-feature=+disableInferNewAvailabilityFromInit -clang-vendor-feature=+disableNonDependentMemberExprInCurrentInstantiation -fno-odr-hash-protocols -clang-vendor-feature=+enableAggressiveVLAFolding -clang-vendor-feature=+revert09abecef7bbf -clang-vendor-feature=+thisNoAlignAttr -clang-vendor-feature=+thisNoNullAttr -mllvm -disable-aligned-alloc-awareness=1 -D__GCC_HAVE_DWARF2_CFI_ASM=1 -o CMakeFiles/cmTC_e2bd2.dir/CMakeCCompilerABI.c.o -x c /Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.25/Modules/CMakeCCompilerABI.c -clang -cc1 version 14.0.0 (clang-1400.0.29.202) default target arm64-apple-darwin21.6.0 -ignoring nonexistent directory "/Library/Developer/CommandLineTools/SDKs/MacOSX13.1.sdk/usr/local/include" -ignoring nonexistent directory "/Library/Developer/CommandLineTools/SDKs/MacOSX13.1.sdk/Library/Frameworks" -#include "..." search starts here: -#include <...> search starts here: - /Library/Developer/CommandLineTools/usr/lib/clang/14.0.0/include - /Library/Developer/CommandLineTools/SDKs/MacOSX13.1.sdk/usr/include - /Library/Developer/CommandLineTools/usr/include - /Library/Developer/CommandLineTools/SDKs/MacOSX13.1.sdk/System/Library/Frameworks (framework directory) -End of search list. -[2/2] Linking C executable cmTC_e2bd2 -Apple clang version 14.0.0 (clang-1400.0.29.202) -Target: arm64-apple-darwin21.6.0 -Thread model: posix -InstalledDir: /Library/Developer/CommandLineTools/usr/bin - "/Library/Developer/CommandLineTools/usr/bin/ld" -demangle -lto_library /Library/Developer/CommandLineTools/usr/lib/libLTO.dylib -dynamic -arch arm64 -platform_version macos 12.6.0 13.1 -syslibroot /Library/Developer/CommandLineTools/SDKs/MacOSX13.1.sdk -o cmTC_e2bd2 -search_paths_first -headerpad_max_install_names -v CMakeFiles/cmTC_e2bd2.dir/CMakeCCompilerABI.c.o -lSystem /Library/Developer/CommandLineTools/usr/lib/clang/14.0.0/lib/darwin/libclang_rt.osx.a -@(#)PROGRAM:ld PROJECT:ld64-820.1 -BUILD 20:07:05 Nov 7 2022 -configured to support archs: armv6 armv7 armv7s arm64 arm64e arm64_32 i386 x86_64 x86_64h armv6m armv7k armv7m armv7em -Library search paths: - /Library/Developer/CommandLineTools/SDKs/MacOSX13.1.sdk/usr/lib -Framework search paths: - /Library/Developer/CommandLineTools/SDKs/MacOSX13.1.sdk/System/Library/Frameworks/ - - - -Parsed C implicit include dir info from above output: rv=done - found start of include info - found start of implicit include info - add: [/Library/Developer/CommandLineTools/usr/lib/clang/14.0.0/include] - add: [/Library/Developer/CommandLineTools/SDKs/MacOSX13.1.sdk/usr/include] - add: [/Library/Developer/CommandLineTools/usr/include] - end of search list found - collapse include dir [/Library/Developer/CommandLineTools/usr/lib/clang/14.0.0/include] ==> [/Library/Developer/CommandLineTools/usr/lib/clang/14.0.0/include] - collapse include dir [/Library/Developer/CommandLineTools/SDKs/MacOSX13.1.sdk/usr/include] ==> [/Library/Developer/CommandLineTools/SDKs/MacOSX13.1.sdk/usr/include] - collapse include dir [/Library/Developer/CommandLineTools/usr/include] ==> [/Library/Developer/CommandLineTools/usr/include] - implicit include dirs: [/Library/Developer/CommandLineTools/usr/lib/clang/14.0.0/include;/Library/Developer/CommandLineTools/SDKs/MacOSX13.1.sdk/usr/include;/Library/Developer/CommandLineTools/usr/include] - - -Parsed C implicit link information from above output: - link line regex: [^( *|.*[/\])(ld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)] - ignore line: [Change Dir: /Users/rubo/uv-k5-firmware-chinese/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-RX1egx] - ignore line: [] - ignore line: [Run Build Command(s):/Applications/CLion.app/Contents/bin/ninja/mac/ninja cmTC_e2bd2 && [1/2] Building C object CMakeFiles/cmTC_e2bd2.dir/CMakeCCompilerABI.c.o] - ignore line: [Apple clang version 14.0.0 (clang-1400.0.29.202)] - ignore line: [Target: arm64-apple-darwin21.6.0] - ignore line: [Thread model: posix] - ignore line: [InstalledDir: /Library/Developer/CommandLineTools/usr/bin] - ignore line: [clang: warning: -Wl -v: 'linker' input unused [-Wunused-command-line-argument]] - ignore line: [ "/Library/Developer/CommandLineTools/usr/bin/clang" -cc1 -triple arm64-apple-macosx12.6.0 -Wundef-prefix=TARGET_OS_ -Wdeprecated-objc-isa-usage -Werror=deprecated-objc-isa-usage -Werror=implicit-function-declaration -emit-obj -mrelax-all --mrelax-relocations -disable-free -clear-ast-before-backend -disable-llvm-verifier -discard-value-names -main-file-name CMakeCCompilerABI.c -mrelocation-model pic -pic-level 2 -mframe-pointer=non-leaf -fno-strict-return -fno-rounding-math -funwind-tables=2 -fobjc-msgsend-selector-stubs -target-sdk-version=13.1 -fvisibility-inlines-hidden-static-local-var -target-cpu apple-m1 -target-feature +v8.5a -target-feature +fp-armv8 -target-feature +neon -target-feature +crc -target-feature +crypto -target-feature +dotprod -target-feature +fp16fml -target-feature +ras -target-feature +lse -target-feature +rdm -target-feature +rcpc -target-feature +zcm -target-feature +zcz -target-feature +fullfp16 -target-feature +sm4 -target-feature +sha3 -target-feature +sha2 -target-feature +aes -target-abi darwinpcs -fallow-half-arguments-and-returns -debugger-tuning=lldb -target-linker-version 820.1 -v -resource-dir /Library/Developer/CommandLineTools/usr/lib/clang/14.0.0 -dependency-file CMakeFiles/cmTC_e2bd2.dir/CMakeCCompilerABI.c.o.d -skip-unused-modulemap-deps -MT CMakeFiles/cmTC_e2bd2.dir/CMakeCCompilerABI.c.o -sys-header-deps -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX13.1.sdk -internal-isystem /Library/Developer/CommandLineTools/SDKs/MacOSX13.1.sdk/usr/local/include -internal-isystem /Library/Developer/CommandLineTools/usr/lib/clang/14.0.0/include -internal-externc-isystem /Library/Developer/CommandLineTools/SDKs/MacOSX13.1.sdk/usr/include -internal-externc-isystem /Library/Developer/CommandLineTools/usr/include -Wno-reorder-init-list -Wno-implicit-int-float-conversion -Wno-c99-designator -Wno-final-dtor-non-final-class -Wno-extra-semi-stmt -Wno-misleading-indentation -Wno-quoted-include-in-framework-header -Wno-implicit-fallthrough -Wno-enum-enum-conversion -Wno-enum-float-conversion -Wno-elaborated-enum-base -Wno-reserved-identifier -Wno-gnu-folding-constant -Wno-cast-function-type -Wno-bitwise-instead-of-logical -fdebug-compilation-dir=/Users/rubo/uv-k5-firmware-chinese/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-RX1egx -ferror-limit 19 -stack-protector 1 -fstack-check -mdarwin-stkchk-strong-link -fblocks -fencode-extended-block-signature -fregister-global-dtors-with-atexit -fgnuc-version=4.2.1 -fmax-type-align=16 -fcommon -fcolor-diagnostics -clang-vendor-feature=+messageToSelfInClassMethodIdReturnType -clang-vendor-feature=+disableInferNewAvailabilityFromInit -clang-vendor-feature=+disableNonDependentMemberExprInCurrentInstantiation -fno-odr-hash-protocols -clang-vendor-feature=+enableAggressiveVLAFolding -clang-vendor-feature=+revert09abecef7bbf -clang-vendor-feature=+thisNoAlignAttr -clang-vendor-feature=+thisNoNullAttr -mllvm -disable-aligned-alloc-awareness=1 -D__GCC_HAVE_DWARF2_CFI_ASM=1 -o CMakeFiles/cmTC_e2bd2.dir/CMakeCCompilerABI.c.o -x c /Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.25/Modules/CMakeCCompilerABI.c] - ignore line: [clang -cc1 version 14.0.0 (clang-1400.0.29.202) default target arm64-apple-darwin21.6.0] - ignore line: [ignoring nonexistent directory "/Library/Developer/CommandLineTools/SDKs/MacOSX13.1.sdk/usr/local/include"] - ignore line: [ignoring nonexistent directory "/Library/Developer/CommandLineTools/SDKs/MacOSX13.1.sdk/Library/Frameworks"] - ignore line: [#include "..." search starts here:] - ignore line: [#include <...> search starts here:] - ignore line: [ /Library/Developer/CommandLineTools/usr/lib/clang/14.0.0/include] - ignore line: [ /Library/Developer/CommandLineTools/SDKs/MacOSX13.1.sdk/usr/include] - ignore line: [ /Library/Developer/CommandLineTools/usr/include] - ignore line: [ /Library/Developer/CommandLineTools/SDKs/MacOSX13.1.sdk/System/Library/Frameworks (framework directory)] - ignore line: [End of search list.] - ignore line: [[2/2] Linking C executable cmTC_e2bd2] - ignore line: [Apple clang version 14.0.0 (clang-1400.0.29.202)] - ignore line: [Target: arm64-apple-darwin21.6.0] - ignore line: [Thread model: posix] - ignore line: [InstalledDir: /Library/Developer/CommandLineTools/usr/bin] - link line: [ "/Library/Developer/CommandLineTools/usr/bin/ld" -demangle -lto_library /Library/Developer/CommandLineTools/usr/lib/libLTO.dylib -dynamic -arch arm64 -platform_version macos 12.6.0 13.1 -syslibroot /Library/Developer/CommandLineTools/SDKs/MacOSX13.1.sdk -o cmTC_e2bd2 -search_paths_first -headerpad_max_install_names -v CMakeFiles/cmTC_e2bd2.dir/CMakeCCompilerABI.c.o -lSystem /Library/Developer/CommandLineTools/usr/lib/clang/14.0.0/lib/darwin/libclang_rt.osx.a] - arg [/Library/Developer/CommandLineTools/usr/bin/ld] ==> ignore - arg [-demangle] ==> ignore - arg [-lto_library] ==> ignore, skip following value - arg [/Library/Developer/CommandLineTools/usr/lib/libLTO.dylib] ==> skip value of -lto_library - arg [-dynamic] ==> ignore - arg [-arch] ==> ignore - arg [arm64] ==> ignore - arg [-platform_version] ==> ignore - arg [macos] ==> ignore - arg [12.6.0] ==> ignore - arg [13.1] ==> ignore - arg [-syslibroot] ==> ignore - arg [/Library/Developer/CommandLineTools/SDKs/MacOSX13.1.sdk] ==> ignore - arg [-o] ==> ignore - arg [cmTC_e2bd2] ==> ignore - arg [-search_paths_first] ==> ignore - arg [-headerpad_max_install_names] ==> ignore - arg [-v] ==> ignore - arg [CMakeFiles/cmTC_e2bd2.dir/CMakeCCompilerABI.c.o] ==> ignore - arg [-lSystem] ==> lib [System] - arg [/Library/Developer/CommandLineTools/usr/lib/clang/14.0.0/lib/darwin/libclang_rt.osx.a] ==> lib [/Library/Developer/CommandLineTools/usr/lib/clang/14.0.0/lib/darwin/libclang_rt.osx.a] - Library search paths: [;/Library/Developer/CommandLineTools/SDKs/MacOSX13.1.sdk/usr/lib] - Framework search paths: [;/Library/Developer/CommandLineTools/SDKs/MacOSX13.1.sdk/System/Library/Frameworks/] - remove lib [System] - remove lib [/Library/Developer/CommandLineTools/usr/lib/clang/14.0.0/lib/darwin/libclang_rt.osx.a] - collapse library dir [/Library/Developer/CommandLineTools/SDKs/MacOSX13.1.sdk/usr/lib] ==> [/Library/Developer/CommandLineTools/SDKs/MacOSX13.1.sdk/usr/lib] - collapse framework dir [/Library/Developer/CommandLineTools/SDKs/MacOSX13.1.sdk/System/Library/Frameworks/] ==> [/Library/Developer/CommandLineTools/SDKs/MacOSX13.1.sdk/System/Library/Frameworks] - implicit libs: [] - implicit objs: [] - implicit dirs: [/Library/Developer/CommandLineTools/SDKs/MacOSX13.1.sdk/usr/lib] - implicit fwks: [/Library/Developer/CommandLineTools/SDKs/MacOSX13.1.sdk/System/Library/Frameworks] - - -Detecting CXX compiler ABI info compiled with the following output: -Change Dir: /Users/rubo/uv-k5-firmware-chinese/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-9D2dHn - -Run Build Command(s):/Applications/CLion.app/Contents/bin/ninja/mac/ninja cmTC_749c8 && [1/2] Building CXX object CMakeFiles/cmTC_749c8.dir/CMakeCXXCompilerABI.cpp.o -Apple clang version 14.0.0 (clang-1400.0.29.202) -Target: arm64-apple-darwin21.6.0 -Thread model: posix -InstalledDir: /Library/Developer/CommandLineTools/usr/bin -clang: warning: -Wl,-v: 'linker' input unused [-Wunused-command-line-argument] - "/Library/Developer/CommandLineTools/usr/bin/clang" -cc1 -triple arm64-apple-macosx12.6.0 -Wundef-prefix=TARGET_OS_ -Wdeprecated-objc-isa-usage -Werror=deprecated-objc-isa-usage -Werror=implicit-function-declaration -emit-obj -mrelax-all --mrelax-relocations -disable-free -clear-ast-before-backend -disable-llvm-verifier -discard-value-names -main-file-name CMakeCXXCompilerABI.cpp -mrelocation-model pic -pic-level 2 -mframe-pointer=non-leaf -fno-strict-return -fno-rounding-math -funwind-tables=2 -fobjc-msgsend-selector-stubs -target-sdk-version=13.1 -fvisibility-inlines-hidden-static-local-var -target-cpu apple-m1 -target-feature +v8.5a -target-feature +fp-armv8 -target-feature +neon -target-feature +crc -target-feature +crypto -target-feature +dotprod -target-feature +fp16fml -target-feature +ras -target-feature +lse -target-feature +rdm -target-feature +rcpc -target-feature +zcm -target-feature +zcz -target-feature +fullfp16 -target-feature +sm4 -target-feature +sha3 -target-feature +sha2 -target-feature +aes -target-abi darwinpcs -fallow-half-arguments-and-returns -debugger-tuning=lldb -target-linker-version 820.1 -v -resource-dir /Library/Developer/CommandLineTools/usr/lib/clang/14.0.0 -dependency-file CMakeFiles/cmTC_749c8.dir/CMakeCXXCompilerABI.cpp.o.d -skip-unused-modulemap-deps -MT CMakeFiles/cmTC_749c8.dir/CMakeCXXCompilerABI.cpp.o -sys-header-deps -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX13.1.sdk -stdlib=libc++ -internal-isystem /Library/Developer/CommandLineTools/SDKs/MacOSX13.1.sdk/usr/include/c++/v1 -internal-isystem /Library/Developer/CommandLineTools/SDKs/MacOSX13.1.sdk/usr/local/include -internal-isystem /Library/Developer/CommandLineTools/usr/lib/clang/14.0.0/include -internal-externc-isystem /Library/Developer/CommandLineTools/SDKs/MacOSX13.1.sdk/usr/include -internal-externc-isystem /Library/Developer/CommandLineTools/usr/include -Wno-reorder-init-list -Wno-implicit-int-float-conversion -Wno-c99-designator -Wno-final-dtor-non-final-class -Wno-extra-semi-stmt -Wno-misleading-indentation -Wno-quoted-include-in-framework-header -Wno-implicit-fallthrough -Wno-enum-enum-conversion -Wno-enum-float-conversion -Wno-elaborated-enum-base -Wno-reserved-identifier -Wno-gnu-folding-constant -Wno-cast-function-type -Wno-bitwise-instead-of-logical -fdeprecated-macro -fdebug-compilation-dir=/Users/rubo/uv-k5-firmware-chinese/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-9D2dHn -ferror-limit 19 -stack-protector 1 -fstack-check -mdarwin-stkchk-strong-link -fblocks -fencode-extended-block-signature -fregister-global-dtors-with-atexit -fgnuc-version=4.2.1 -fno-cxx-modules -fcxx-exceptions -fexceptions -fmax-type-align=16 -fcommon -fcolor-diagnostics -clang-vendor-feature=+messageToSelfInClassMethodIdReturnType -clang-vendor-feature=+disableInferNewAvailabilityFromInit -clang-vendor-feature=+disableNonDependentMemberExprInCurrentInstantiation -fno-odr-hash-protocols -clang-vendor-feature=+enableAggressiveVLAFolding -clang-vendor-feature=+revert09abecef7bbf -clang-vendor-feature=+thisNoAlignAttr -clang-vendor-feature=+thisNoNullAttr -mllvm -disable-aligned-alloc-awareness=1 -D__GCC_HAVE_DWARF2_CFI_ASM=1 -o CMakeFiles/cmTC_749c8.dir/CMakeCXXCompilerABI.cpp.o -x c++ /Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.25/Modules/CMakeCXXCompilerABI.cpp -clang -cc1 version 14.0.0 (clang-1400.0.29.202) default target arm64-apple-darwin21.6.0 -ignoring nonexistent directory "/Library/Developer/CommandLineTools/SDKs/MacOSX13.1.sdk/usr/local/include" -ignoring nonexistent directory "/Library/Developer/CommandLineTools/SDKs/MacOSX13.1.sdk/Library/Frameworks" -#include "..." search starts here: -#include <...> search starts here: - /Library/Developer/CommandLineTools/SDKs/MacOSX13.1.sdk/usr/include/c++/v1 - /Library/Developer/CommandLineTools/usr/lib/clang/14.0.0/include - /Library/Developer/CommandLineTools/SDKs/MacOSX13.1.sdk/usr/include - /Library/Developer/CommandLineTools/usr/include - /Library/Developer/CommandLineTools/SDKs/MacOSX13.1.sdk/System/Library/Frameworks (framework directory) -End of search list. -[2/2] Linking CXX executable cmTC_749c8 -Apple clang version 14.0.0 (clang-1400.0.29.202) -Target: arm64-apple-darwin21.6.0 -Thread model: posix -InstalledDir: /Library/Developer/CommandLineTools/usr/bin - "/Library/Developer/CommandLineTools/usr/bin/ld" -demangle -lto_library /Library/Developer/CommandLineTools/usr/lib/libLTO.dylib -dynamic -arch arm64 -platform_version macos 12.6.0 13.1 -syslibroot /Library/Developer/CommandLineTools/SDKs/MacOSX13.1.sdk -o cmTC_749c8 -search_paths_first -headerpad_max_install_names -v CMakeFiles/cmTC_749c8.dir/CMakeCXXCompilerABI.cpp.o -lc++ -lSystem /Library/Developer/CommandLineTools/usr/lib/clang/14.0.0/lib/darwin/libclang_rt.osx.a -@(#)PROGRAM:ld PROJECT:ld64-820.1 -BUILD 20:07:05 Nov 7 2022 -configured to support archs: armv6 armv7 armv7s arm64 arm64e arm64_32 i386 x86_64 x86_64h armv6m armv7k armv7m armv7em -Library search paths: - /Library/Developer/CommandLineTools/SDKs/MacOSX13.1.sdk/usr/lib -Framework search paths: - /Library/Developer/CommandLineTools/SDKs/MacOSX13.1.sdk/System/Library/Frameworks/ - - - -Parsed CXX implicit include dir info from above output: rv=done - found start of include info - found start of implicit include info - add: [/Library/Developer/CommandLineTools/SDKs/MacOSX13.1.sdk/usr/include/c++/v1] - add: [/Library/Developer/CommandLineTools/usr/lib/clang/14.0.0/include] - add: [/Library/Developer/CommandLineTools/SDKs/MacOSX13.1.sdk/usr/include] - add: [/Library/Developer/CommandLineTools/usr/include] - end of search list found - collapse include dir [/Library/Developer/CommandLineTools/SDKs/MacOSX13.1.sdk/usr/include/c++/v1] ==> [/Library/Developer/CommandLineTools/SDKs/MacOSX13.1.sdk/usr/include/c++/v1] - collapse include dir [/Library/Developer/CommandLineTools/usr/lib/clang/14.0.0/include] ==> [/Library/Developer/CommandLineTools/usr/lib/clang/14.0.0/include] - collapse include dir [/Library/Developer/CommandLineTools/SDKs/MacOSX13.1.sdk/usr/include] ==> [/Library/Developer/CommandLineTools/SDKs/MacOSX13.1.sdk/usr/include] - collapse include dir [/Library/Developer/CommandLineTools/usr/include] ==> [/Library/Developer/CommandLineTools/usr/include] - implicit include dirs: [/Library/Developer/CommandLineTools/SDKs/MacOSX13.1.sdk/usr/include/c++/v1;/Library/Developer/CommandLineTools/usr/lib/clang/14.0.0/include;/Library/Developer/CommandLineTools/SDKs/MacOSX13.1.sdk/usr/include;/Library/Developer/CommandLineTools/usr/include] - - -Parsed CXX implicit link information from above output: - link line regex: [^( *|.*[/\])(ld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)] - ignore line: [Change Dir: /Users/rubo/uv-k5-firmware-chinese/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-9D2dHn] - ignore line: [] - ignore line: [Run Build Command(s):/Applications/CLion.app/Contents/bin/ninja/mac/ninja cmTC_749c8 && [1/2] Building CXX object CMakeFiles/cmTC_749c8.dir/CMakeCXXCompilerABI.cpp.o] - ignore line: [Apple clang version 14.0.0 (clang-1400.0.29.202)] - ignore line: [Target: arm64-apple-darwin21.6.0] - ignore line: [Thread model: posix] - ignore line: [InstalledDir: /Library/Developer/CommandLineTools/usr/bin] - ignore line: [clang: warning: -Wl -v: 'linker' input unused [-Wunused-command-line-argument]] - ignore line: [ "/Library/Developer/CommandLineTools/usr/bin/clang" -cc1 -triple arm64-apple-macosx12.6.0 -Wundef-prefix=TARGET_OS_ -Wdeprecated-objc-isa-usage -Werror=deprecated-objc-isa-usage -Werror=implicit-function-declaration -emit-obj -mrelax-all --mrelax-relocations -disable-free -clear-ast-before-backend -disable-llvm-verifier -discard-value-names -main-file-name CMakeCXXCompilerABI.cpp -mrelocation-model pic -pic-level 2 -mframe-pointer=non-leaf -fno-strict-return -fno-rounding-math -funwind-tables=2 -fobjc-msgsend-selector-stubs -target-sdk-version=13.1 -fvisibility-inlines-hidden-static-local-var -target-cpu apple-m1 -target-feature +v8.5a -target-feature +fp-armv8 -target-feature +neon -target-feature +crc -target-feature +crypto -target-feature +dotprod -target-feature +fp16fml -target-feature +ras -target-feature +lse -target-feature +rdm -target-feature +rcpc -target-feature +zcm -target-feature +zcz -target-feature +fullfp16 -target-feature +sm4 -target-feature +sha3 -target-feature +sha2 -target-feature +aes -target-abi darwinpcs -fallow-half-arguments-and-returns -debugger-tuning=lldb -target-linker-version 820.1 -v -resource-dir /Library/Developer/CommandLineTools/usr/lib/clang/14.0.0 -dependency-file CMakeFiles/cmTC_749c8.dir/CMakeCXXCompilerABI.cpp.o.d -skip-unused-modulemap-deps -MT CMakeFiles/cmTC_749c8.dir/CMakeCXXCompilerABI.cpp.o -sys-header-deps -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX13.1.sdk -stdlib=libc++ -internal-isystem /Library/Developer/CommandLineTools/SDKs/MacOSX13.1.sdk/usr/include/c++/v1 -internal-isystem /Library/Developer/CommandLineTools/SDKs/MacOSX13.1.sdk/usr/local/include -internal-isystem /Library/Developer/CommandLineTools/usr/lib/clang/14.0.0/include -internal-externc-isystem /Library/Developer/CommandLineTools/SDKs/MacOSX13.1.sdk/usr/include -internal-externc-isystem /Library/Developer/CommandLineTools/usr/include -Wno-reorder-init-list -Wno-implicit-int-float-conversion -Wno-c99-designator -Wno-final-dtor-non-final-class -Wno-extra-semi-stmt -Wno-misleading-indentation -Wno-quoted-include-in-framework-header -Wno-implicit-fallthrough -Wno-enum-enum-conversion -Wno-enum-float-conversion -Wno-elaborated-enum-base -Wno-reserved-identifier -Wno-gnu-folding-constant -Wno-cast-function-type -Wno-bitwise-instead-of-logical -fdeprecated-macro -fdebug-compilation-dir=/Users/rubo/uv-k5-firmware-chinese/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-9D2dHn -ferror-limit 19 -stack-protector 1 -fstack-check -mdarwin-stkchk-strong-link -fblocks -fencode-extended-block-signature -fregister-global-dtors-with-atexit -fgnuc-version=4.2.1 -fno-cxx-modules -fcxx-exceptions -fexceptions -fmax-type-align=16 -fcommon -fcolor-diagnostics -clang-vendor-feature=+messageToSelfInClassMethodIdReturnType -clang-vendor-feature=+disableInferNewAvailabilityFromInit -clang-vendor-feature=+disableNonDependentMemberExprInCurrentInstantiation -fno-odr-hash-protocols -clang-vendor-feature=+enableAggressiveVLAFolding -clang-vendor-feature=+revert09abecef7bbf -clang-vendor-feature=+thisNoAlignAttr -clang-vendor-feature=+thisNoNullAttr -mllvm -disable-aligned-alloc-awareness=1 -D__GCC_HAVE_DWARF2_CFI_ASM=1 -o CMakeFiles/cmTC_749c8.dir/CMakeCXXCompilerABI.cpp.o -x c++ /Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.25/Modules/CMakeCXXCompilerABI.cpp] - ignore line: [clang -cc1 version 14.0.0 (clang-1400.0.29.202) default target arm64-apple-darwin21.6.0] - ignore line: [ignoring nonexistent directory "/Library/Developer/CommandLineTools/SDKs/MacOSX13.1.sdk/usr/local/include"] - ignore line: [ignoring nonexistent directory "/Library/Developer/CommandLineTools/SDKs/MacOSX13.1.sdk/Library/Frameworks"] - ignore line: [#include "..." search starts here:] - ignore line: [#include <...> search starts here:] - ignore line: [ /Library/Developer/CommandLineTools/SDKs/MacOSX13.1.sdk/usr/include/c++/v1] - ignore line: [ /Library/Developer/CommandLineTools/usr/lib/clang/14.0.0/include] - ignore line: [ /Library/Developer/CommandLineTools/SDKs/MacOSX13.1.sdk/usr/include] - ignore line: [ /Library/Developer/CommandLineTools/usr/include] - ignore line: [ /Library/Developer/CommandLineTools/SDKs/MacOSX13.1.sdk/System/Library/Frameworks (framework directory)] - ignore line: [End of search list.] - ignore line: [[2/2] Linking CXX executable cmTC_749c8] - ignore line: [Apple clang version 14.0.0 (clang-1400.0.29.202)] - ignore line: [Target: arm64-apple-darwin21.6.0] - ignore line: [Thread model: posix] - ignore line: [InstalledDir: /Library/Developer/CommandLineTools/usr/bin] - link line: [ "/Library/Developer/CommandLineTools/usr/bin/ld" -demangle -lto_library /Library/Developer/CommandLineTools/usr/lib/libLTO.dylib -dynamic -arch arm64 -platform_version macos 12.6.0 13.1 -syslibroot /Library/Developer/CommandLineTools/SDKs/MacOSX13.1.sdk -o cmTC_749c8 -search_paths_first -headerpad_max_install_names -v CMakeFiles/cmTC_749c8.dir/CMakeCXXCompilerABI.cpp.o -lc++ -lSystem /Library/Developer/CommandLineTools/usr/lib/clang/14.0.0/lib/darwin/libclang_rt.osx.a] - arg [/Library/Developer/CommandLineTools/usr/bin/ld] ==> ignore - arg [-demangle] ==> ignore - arg [-lto_library] ==> ignore, skip following value - arg [/Library/Developer/CommandLineTools/usr/lib/libLTO.dylib] ==> skip value of -lto_library - arg [-dynamic] ==> ignore - arg [-arch] ==> ignore - arg [arm64] ==> ignore - arg [-platform_version] ==> ignore - arg [macos] ==> ignore - arg [12.6.0] ==> ignore - arg [13.1] ==> ignore - arg [-syslibroot] ==> ignore - arg [/Library/Developer/CommandLineTools/SDKs/MacOSX13.1.sdk] ==> ignore - arg [-o] ==> ignore - arg [cmTC_749c8] ==> ignore - arg [-search_paths_first] ==> ignore - arg [-headerpad_max_install_names] ==> ignore - arg [-v] ==> ignore - arg [CMakeFiles/cmTC_749c8.dir/CMakeCXXCompilerABI.cpp.o] ==> ignore - arg [-lc++] ==> lib [c++] - arg [-lSystem] ==> lib [System] - arg [/Library/Developer/CommandLineTools/usr/lib/clang/14.0.0/lib/darwin/libclang_rt.osx.a] ==> lib [/Library/Developer/CommandLineTools/usr/lib/clang/14.0.0/lib/darwin/libclang_rt.osx.a] - Library search paths: [;/Library/Developer/CommandLineTools/SDKs/MacOSX13.1.sdk/usr/lib] - Framework search paths: [;/Library/Developer/CommandLineTools/SDKs/MacOSX13.1.sdk/System/Library/Frameworks/] - remove lib [System] - remove lib [/Library/Developer/CommandLineTools/usr/lib/clang/14.0.0/lib/darwin/libclang_rt.osx.a] - collapse library dir [/Library/Developer/CommandLineTools/SDKs/MacOSX13.1.sdk/usr/lib] ==> [/Library/Developer/CommandLineTools/SDKs/MacOSX13.1.sdk/usr/lib] - collapse framework dir [/Library/Developer/CommandLineTools/SDKs/MacOSX13.1.sdk/System/Library/Frameworks/] ==> [/Library/Developer/CommandLineTools/SDKs/MacOSX13.1.sdk/System/Library/Frameworks] - implicit libs: [c++] - implicit objs: [] - implicit dirs: [/Library/Developer/CommandLineTools/SDKs/MacOSX13.1.sdk/usr/lib] - implicit fwks: [/Library/Developer/CommandLineTools/SDKs/MacOSX13.1.sdk/System/Library/Frameworks] - - +The system is: Windows - 10.0.19045 - AMD64 +Compiling the C compiler identification source file "CMakeCCompilerId.c" succeeded. +Compiler: C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/gcc.exe +Build flags: +Id flags: + +The output was: +0 + + +Compilation of the C compiler identification source "CMakeCCompilerId.c" produced "a.exe" + +The C compiler identification is GNU, found in "C:/Users/RUPC/Desktop/UV-K6/uv-k5-firmware-chinese/cmake-build-debug/CMakeFiles/3.25.2/CompilerIdC/a.exe" + +Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" succeeded. +Compiler: C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/g++.exe +Build flags: +Id flags: + +The output was: +0 + + +Compilation of the CXX compiler identification source "CMakeCXXCompilerId.cpp" produced "a.exe" + +The CXX compiler identification is GNU, found in "C:/Users/RUPC/Desktop/UV-K6/uv-k5-firmware-chinese/cmake-build-debug/CMakeFiles/3.25.2/CompilerIdCXX/a.exe" + +Detecting C compiler ABI info compiled with the following output: +Change Dir: C:/Users/RUPC/Desktop/UV-K6/uv-k5-firmware-chinese/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-woja5q + +Run Build Command(s):C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/mingw32-make.exe -f Makefile cmTC_20047/fast && C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/mingw32-make.exe -f CMakeFiles\cmTC_20047.dir\build.make CMakeFiles/cmTC_20047.dir/build +mingw32-make.exe[1]: Entering directory 'C:/Users/RUPC/Desktop/UV-K6/uv-k5-firmware-chinese/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-woja5q' +Building C object CMakeFiles/cmTC_20047.dir/CMakeCCompilerABI.c.obj +C:\Qt\Qt5.13.1\Tools\mingw730_64\bin\gcc.exe -fdiagnostics-color=always -v -o CMakeFiles\cmTC_20047.dir\CMakeCCompilerABI.c.obj -c "C:\Program Files\JetBrains\CLion 2023.1.1\bin\cmake\win\x64\share\cmake-3.25\Modules\CMakeCCompilerABI.c" +Using built-in specs. +COLLECT_GCC=C:\Qt\Qt5.13.1\Tools\mingw730_64\bin\gcc.exe +Target: x86_64-w64-mingw32 +Configured with: ../../../src/gcc-7.3.0/configure --host=x86_64-w64-mingw32 --build=x86_64-w64-mingw32 --target=x86_64-w64-mingw32 --prefix=/mingw64 --with-sysroot=/c/mingw730/x86_64-730-posix-seh-rt_v5-rev0/mingw64 --enable-shared --enable-static --disable-multilib --enable-languages=c,c++,fortran,lto --enable-libstdcxx-time=yes --enable-threads=posix --enable-libgomp --enable-libatomic --enable-lto --enable-graphite --enable-checking=release --enable-fully-dynamic-string --enable-version-specific-runtime-libs --enable-libstdcxx-filesystem-ts=yes --disable-libstdcxx-pch --disable-libstdcxx-debug --enable-bootstrap --disable-rpath --disable-win32-registry --disable-nls --disable-werror --disable-symvers --with-gnu-as --with-gnu-ld --with-arch=nocona --with-tune=core2 --with-libiconv --with-system-zlib --with-gmp=/c/mingw730/prerequisites/x86_64-w64-mingw32-static --with-mpfr=/c/mingw730/prerequisites/x86_64-w64-mingw32-static --with-mpc=/c/mingw730/prerequisites/x86_64-w64-mingw32-static --with-isl=/c/mingw730/prerequisites/x86_64-w64-mingw32-static --with-pkgversion='x86_64-posix-seh-rev0, Built by MinGW-W64 project' --with-bugurl=https://sourceforge.net/projects/mingw-w64 CFLAGS='-O2 -pipe -fno-ident -I/c/mingw730/x86_64-730-posix-seh-rt_v5-rev0/mingw64/opt/include -I/c/mingw730/prerequisites/x86_64-zlib-static/include -I/c/mingw730/prerequisites/x86_64-w64-mingw32-static/include' CXXFLAGS='-O2 -pipe -fno-ident -I/c/mingw730/x86_64-730-posix-seh-rt_v5-rev0/mingw64/opt/include -I/c/mingw730/prerequisites/x86_64-zlib-static/include -I/c/mingw730/prerequisites/x86_64-w64-mingw32-static/include' CPPFLAGS=' -I/c/mingw730/x86_64-730-posix-seh-rt_v5-rev0/mingw64/opt/include -I/c/mingw730/prerequisites/x86_64-zlib-static/include -I/c/mingw730/prerequisites/x86_64-w64-mingw32-static/include' LDFLAGS='-pipe -fno-ident -L/c/mingw730/x86_64-730-posix-seh-rt_v5-rev0/mingw64/opt/lib -L/c/mingw730/prerequisites/x86_64-zlib-static/lib -L/c/mingw730/prerequisites/x86_64-w64-mingw32-static/lib ' +Thread model: posix +gcc version 7.3.0 (x86_64-posix-seh-rev0, Built by MinGW-W64 project) +COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles\cmTC_20047.dir\CMakeCCompilerABI.c.obj' '-c' '-mtune=core2' '-march=nocona' + C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../libexec/gcc/x86_64-w64-mingw32/7.3.0/cc1.exe -quiet -v -iprefix C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/ -D_REENTRANT C:\Program Files\JetBrains\CLion 2023.1.1\bin\cmake\win\x64\share\cmake-3.25\Modules\CMakeCCompilerABI.c -quiet -dumpbase CMakeCCompilerABI.c -mtune=core2 -march=nocona -auxbase-strip CMakeFiles\cmTC_20047.dir\CMakeCCompilerABI.c.obj -version -fdiagnostics-color=always -o C:\Users\RUPC\AppData\Local\Temp\ccgxby3a.s +GNU C11 (x86_64-posix-seh-rev0, Built by MinGW-W64 project) version 7.3.0 (x86_64-w64-mingw32) + compiled by GNU C version 7.3.0, GMP version 6.1.2, MPFR version 4.0.1, MPC version 1.1.0, isl version isl-0.18-GMP + +GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 +ignoring duplicate directory "C:/Qt/Qt5.13.1/Tools/mingw730_64/lib/gcc/../../lib/gcc/x86_64-w64-mingw32/7.3.0/include" +ignoring nonexistent directory "C:/mingw730/x86_64-730-posix-seh-rt_v5-rev0/mingw64C:/msys64-2/mingw64/lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../include" +ignoring duplicate directory "C:/Qt/Qt5.13.1/Tools/mingw730_64/lib/gcc/../../lib/gcc/x86_64-w64-mingw32/7.3.0/include-fixed" +ignoring duplicate directory "C:/Qt/Qt5.13.1/Tools/mingw730_64/lib/gcc/../../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/include" +ignoring nonexistent directory "C:/mingw730/x86_64-730-posix-seh-rt_v5-rev0/mingw64/mingw/include" +#include "..." search starts here: +#include <...> search starts here: + C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/include + C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/include-fixed + C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/include +End of search list. +GNU C11 (x86_64-posix-seh-rev0, Built by MinGW-W64 project) version 7.3.0 (x86_64-w64-mingw32) + compiled by GNU C version 7.3.0, GMP version 6.1.2, MPFR version 4.0.1, MPC version 1.1.0, isl version isl-0.18-GMP + +GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 +Compiler executable checksum: afb3948cd5c0c8f535365414e7310436 +COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles\cmTC_20047.dir\CMakeCCompilerABI.c.obj' '-c' '-mtune=core2' '-march=nocona' + C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/bin/as.exe -v -o CMakeFiles\cmTC_20047.dir\CMakeCCompilerABI.c.obj C:\Users\RUPC\AppData\Local\Temp\ccgxby3a.s +GNU assembler version 2.30 (x86_64-w64-mingw32) using BFD version (GNU Binutils) 2.30 +COMPILER_PATH=C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../libexec/gcc/x86_64-w64-mingw32/7.3.0/;C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../libexec/gcc/;C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/bin/ +LIBRARY_PATH=C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/;C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/;C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/lib/../lib/;C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../lib/;C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/lib/;C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../ +COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles\cmTC_20047.dir\CMakeCCompilerABI.c.obj' '-c' '-mtune=core2' '-march=nocona' +Linking C executable cmTC_20047.exe +"C:\Program Files\JetBrains\CLion 2023.1.1\bin\cmake\win\x64\bin\cmake.exe" -E cmake_link_script CMakeFiles\cmTC_20047.dir\link.txt --verbose=1 +"C:\Program Files\JetBrains\CLion 2023.1.1\bin\cmake\win\x64\bin\cmake.exe" -E rm -f CMakeFiles\cmTC_20047.dir/objects.a +C:\Qt\Qt5.13.1\Tools\mingw730_64\bin\ar.exe qc CMakeFiles\cmTC_20047.dir/objects.a @CMakeFiles\cmTC_20047.dir\objects1 +C:\Qt\Qt5.13.1\Tools\mingw730_64\bin\gcc.exe -v -Wl,--whole-archive CMakeFiles\cmTC_20047.dir/objects.a -Wl,--no-whole-archive -o cmTC_20047.exe -Wl,--out-implib,libcmTC_20047.dll.a -Wl,--major-image-version,0,--minor-image-version,0 +Using built-in specs. +COLLECT_GCC=C:\Qt\Qt5.13.1\Tools\mingw730_64\bin\gcc.exe +COLLECT_LTO_WRAPPER=C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../libexec/gcc/x86_64-w64-mingw32/7.3.0/lto-wrapper.exe +Target: x86_64-w64-mingw32 +Configured with: ../../../src/gcc-7.3.0/configure --host=x86_64-w64-mingw32 --build=x86_64-w64-mingw32 --target=x86_64-w64-mingw32 --prefix=/mingw64 --with-sysroot=/c/mingw730/x86_64-730-posix-seh-rt_v5-rev0/mingw64 --enable-shared --enable-static --disable-multilib --enable-languages=c,c++,fortran,lto --enable-libstdcxx-time=yes --enable-threads=posix --enable-libgomp --enable-libatomic --enable-lto --enable-graphite --enable-checking=release --enable-fully-dynamic-string --enable-version-specific-runtime-libs --enable-libstdcxx-filesystem-ts=yes --disable-libstdcxx-pch --disable-libstdcxx-debug --enable-bootstrap --disable-rpath --disable-win32-registry --disable-nls --disable-werror --disable-symvers --with-gnu-as --with-gnu-ld --with-arch=nocona --with-tune=core2 --with-libiconv --with-system-zlib --with-gmp=/c/mingw730/prerequisites/x86_64-w64-mingw32-static --with-mpfr=/c/mingw730/prerequisites/x86_64-w64-mingw32-static --with-mpc=/c/mingw730/prerequisites/x86_64-w64-mingw32-static --with-isl=/c/mingw730/prerequisites/x86_64-w64-mingw32-static --with-pkgversion='x86_64-posix-seh-rev0, Built by MinGW-W64 project' --with-bugurl=https://sourceforge.net/projects/mingw-w64 CFLAGS='-O2 -pipe -fno-ident -I/c/mingw730/x86_64-730-posix-seh-rt_v5-rev0/mingw64/opt/include -I/c/mingw730/prerequisites/x86_64-zlib-static/include -I/c/mingw730/prerequisites/x86_64-w64-mingw32-static/include' CXXFLAGS='-O2 -pipe -fno-ident -I/c/mingw730/x86_64-730-posix-seh-rt_v5-rev0/mingw64/opt/include -I/c/mingw730/prerequisites/x86_64-zlib-static/include -I/c/mingw730/prerequisites/x86_64-w64-mingw32-static/include' CPPFLAGS=' -I/c/mingw730/x86_64-730-posix-seh-rt_v5-rev0/mingw64/opt/include -I/c/mingw730/prerequisites/x86_64-zlib-static/include -I/c/mingw730/prerequisites/x86_64-w64-mingw32-static/include' LDFLAGS='-pipe -fno-ident -L/c/mingw730/x86_64-730-posix-seh-rt_v5-rev0/mingw64/opt/lib -L/c/mingw730/prerequisites/x86_64-zlib-static/lib -L/c/mingw730/prerequisites/x86_64-w64-mingw32-static/lib ' +Thread model: posix +gcc version 7.3.0 (x86_64-posix-seh-rev0, Built by MinGW-W64 project) +COMPILER_PATH=C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../libexec/gcc/x86_64-w64-mingw32/7.3.0/;C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../libexec/gcc/;C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/bin/ +LIBRARY_PATH=C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/;C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/;C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/lib/../lib/;C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../lib/;C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/lib/;C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../ +COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_20047.exe' '-mtune=core2' '-march=nocona' + C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../libexec/gcc/x86_64-w64-mingw32/7.3.0/collect2.exe -plugin C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../libexec/gcc/x86_64-w64-mingw32/7.3.0/liblto_plugin-0.dll -plugin-opt=C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../libexec/gcc/x86_64-w64-mingw32/7.3.0/lto-wrapper.exe -plugin-opt=-fresolution=C:\Users\RUPC\AppData\Local\Temp\ccW2SMrq.res -plugin-opt=-pass-through=-lmingw32 -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_eh -plugin-opt=-pass-through=-lmoldname -plugin-opt=-pass-through=-lmingwex -plugin-opt=-pass-through=-lmsvcrt -plugin-opt=-pass-through=-lpthread -plugin-opt=-pass-through=-ladvapi32 -plugin-opt=-pass-through=-lshell32 -plugin-opt=-pass-through=-luser32 -plugin-opt=-pass-through=-lkernel32 -plugin-opt=-pass-through=-liconv -plugin-opt=-pass-through=-lmingw32 -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_eh -plugin-opt=-pass-through=-lmoldname -plugin-opt=-pass-through=-lmingwex -plugin-opt=-pass-through=-lmsvcrt --sysroot=C:/mingw730/x86_64-730-posix-seh-rt_v5-rev0/mingw64 -m i386pep -Bdynamic -o cmTC_20047.exe C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/lib/../lib/crt2.o C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/crtbegin.o -LC:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0 -LC:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc -LC:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/lib/../lib -LC:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../lib -LC:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/lib -LC:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../.. --whole-archive CMakeFiles\cmTC_20047.dir/objects.a --no-whole-archive --out-implib libcmTC_20047.dll.a --major-image-version 0 --minor-image-version 0 -lmingw32 -lgcc -lgcc_eh -lmoldname -lmingwex -lmsvcrt -lpthread -ladvapi32 -lshell32 -luser32 -lkernel32 -liconv -lmingw32 -lgcc -lgcc_eh -lmoldname -lmingwex -lmsvcrt C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/crtend.o +COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_20047.exe' '-mtune=core2' '-march=nocona' +mingw32-make.exe[1]: Leaving directory 'C:/Users/RUPC/Desktop/UV-K6/uv-k5-firmware-chinese/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-woja5q' + + + +Parsed C implicit include dir info from above output: rv=done + found start of include info + found start of implicit include info + add: [C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/include] + add: [C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/include-fixed] + add: [C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/include] + end of search list found + collapse include dir [C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/include] ==> [C:/Qt/Qt5.13.1/Tools/mingw730_64/lib/gcc/x86_64-w64-mingw32/7.3.0/include] + collapse include dir [C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/include-fixed] ==> [C:/Qt/Qt5.13.1/Tools/mingw730_64/lib/gcc/x86_64-w64-mingw32/7.3.0/include-fixed] + collapse include dir [C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/include] ==> [C:/Qt/Qt5.13.1/Tools/mingw730_64/x86_64-w64-mingw32/include] + implicit include dirs: [C:/Qt/Qt5.13.1/Tools/mingw730_64/lib/gcc/x86_64-w64-mingw32/7.3.0/include;C:/Qt/Qt5.13.1/Tools/mingw730_64/lib/gcc/x86_64-w64-mingw32/7.3.0/include-fixed;C:/Qt/Qt5.13.1/Tools/mingw730_64/x86_64-w64-mingw32/include] + + +Parsed C implicit link information from above output: + link line regex: [^( *|.*[/\])(ld\.exe|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)] + ignore line: [Change Dir: C:/Users/RUPC/Desktop/UV-K6/uv-k5-firmware-chinese/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-woja5q] + ignore line: [] + ignore line: [Run Build Command(s):C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/mingw32-make.exe -f Makefile cmTC_20047/fast && C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/mingw32-make.exe -f CMakeFiles\cmTC_20047.dir\build.make CMakeFiles/cmTC_20047.dir/build] + ignore line: [mingw32-make.exe[1]: Entering directory 'C:/Users/RUPC/Desktop/UV-K6/uv-k5-firmware-chinese/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-woja5q'] + ignore line: [Building C object CMakeFiles/cmTC_20047.dir/CMakeCCompilerABI.c.obj] + ignore line: [C:\Qt\Qt5.13.1\Tools\mingw730_64\bin\gcc.exe -fdiagnostics-color=always -v -o CMakeFiles\cmTC_20047.dir\CMakeCCompilerABI.c.obj -c "C:\Program Files\JetBrains\CLion 2023.1.1\bin\cmake\win\x64\share\cmake-3.25\Modules\CMakeCCompilerABI.c"] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=C:\Qt\Qt5.13.1\Tools\mingw730_64\bin\gcc.exe] + ignore line: [Target: x86_64-w64-mingw32] + ignore line: [Configured with: ../../../src/gcc-7.3.0/configure --host=x86_64-w64-mingw32 --build=x86_64-w64-mingw32 --target=x86_64-w64-mingw32 --prefix=/mingw64 --with-sysroot=/c/mingw730/x86_64-730-posix-seh-rt_v5-rev0/mingw64 --enable-shared --enable-static --disable-multilib --enable-languages=c,c++,fortran,lto --enable-libstdcxx-time=yes --enable-threads=posix --enable-libgomp --enable-libatomic --enable-lto --enable-graphite --enable-checking=release --enable-fully-dynamic-string --enable-version-specific-runtime-libs --enable-libstdcxx-filesystem-ts=yes --disable-libstdcxx-pch --disable-libstdcxx-debug --enable-bootstrap --disable-rpath --disable-win32-registry --disable-nls --disable-werror --disable-symvers --with-gnu-as --with-gnu-ld --with-arch=nocona --with-tune=core2 --with-libiconv --with-system-zlib --with-gmp=/c/mingw730/prerequisites/x86_64-w64-mingw32-static --with-mpfr=/c/mingw730/prerequisites/x86_64-w64-mingw32-static --with-mpc=/c/mingw730/prerequisites/x86_64-w64-mingw32-static --with-isl=/c/mingw730/prerequisites/x86_64-w64-mingw32-static --with-pkgversion='x86_64-posix-seh-rev0, Built by MinGW-W64 project' --with-bugurl=https://sourceforge.net/projects/mingw-w64 CFLAGS='-O2 -pipe -fno-ident -I/c/mingw730/x86_64-730-posix-seh-rt_v5-rev0/mingw64/opt/include -I/c/mingw730/prerequisites/x86_64-zlib-static/include -I/c/mingw730/prerequisites/x86_64-w64-mingw32-static/include' CXXFLAGS='-O2 -pipe -fno-ident -I/c/mingw730/x86_64-730-posix-seh-rt_v5-rev0/mingw64/opt/include -I/c/mingw730/prerequisites/x86_64-zlib-static/include -I/c/mingw730/prerequisites/x86_64-w64-mingw32-static/include' CPPFLAGS=' -I/c/mingw730/x86_64-730-posix-seh-rt_v5-rev0/mingw64/opt/include -I/c/mingw730/prerequisites/x86_64-zlib-static/include -I/c/mingw730/prerequisites/x86_64-w64-mingw32-static/include' LDFLAGS='-pipe -fno-ident -L/c/mingw730/x86_64-730-posix-seh-rt_v5-rev0/mingw64/opt/lib -L/c/mingw730/prerequisites/x86_64-zlib-static/lib -L/c/mingw730/prerequisites/x86_64-w64-mingw32-static/lib '] + ignore line: [Thread model: posix] + ignore line: [gcc version 7.3.0 (x86_64-posix-seh-rev0 Built by MinGW-W64 project) ] + ignore line: [COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles\cmTC_20047.dir\CMakeCCompilerABI.c.obj' '-c' '-mtune=core2' '-march=nocona'] + ignore line: [ C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../libexec/gcc/x86_64-w64-mingw32/7.3.0/cc1.exe -quiet -v -iprefix C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/ -D_REENTRANT C:\Program Files\JetBrains\CLion 2023.1.1\bin\cmake\win\x64\share\cmake-3.25\Modules\CMakeCCompilerABI.c -quiet -dumpbase CMakeCCompilerABI.c -mtune=core2 -march=nocona -auxbase-strip CMakeFiles\cmTC_20047.dir\CMakeCCompilerABI.c.obj -version -fdiagnostics-color=always -o C:\Users\RUPC\AppData\Local\Temp\ccgxby3a.s] + ignore line: [GNU C11 (x86_64-posix-seh-rev0 Built by MinGW-W64 project) version 7.3.0 (x86_64-w64-mingw32)] + ignore line: [ compiled by GNU C version 7.3.0 GMP version 6.1.2 MPFR version 4.0.1 MPC version 1.1.0 isl version isl-0.18-GMP] + ignore line: [] + ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072] + ignore line: [ignoring duplicate directory "C:/Qt/Qt5.13.1/Tools/mingw730_64/lib/gcc/../../lib/gcc/x86_64-w64-mingw32/7.3.0/include"] + ignore line: [ignoring nonexistent directory "C:/mingw730/x86_64-730-posix-seh-rt_v5-rev0/mingw64C:/msys64-2/mingw64/lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../include"] + ignore line: [ignoring duplicate directory "C:/Qt/Qt5.13.1/Tools/mingw730_64/lib/gcc/../../lib/gcc/x86_64-w64-mingw32/7.3.0/include-fixed"] + ignore line: [ignoring duplicate directory "C:/Qt/Qt5.13.1/Tools/mingw730_64/lib/gcc/../../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/include"] + ignore line: [ignoring nonexistent directory "C:/mingw730/x86_64-730-posix-seh-rt_v5-rev0/mingw64/mingw/include"] + ignore line: [#include "..." search starts here:] + ignore line: [#include <...> search starts here:] + ignore line: [ C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/include] + ignore line: [ C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/include-fixed] + ignore line: [ C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/include] + ignore line: [End of search list.] + ignore line: [GNU C11 (x86_64-posix-seh-rev0 Built by MinGW-W64 project) version 7.3.0 (x86_64-w64-mingw32)] + ignore line: [ compiled by GNU C version 7.3.0 GMP version 6.1.2 MPFR version 4.0.1 MPC version 1.1.0 isl version isl-0.18-GMP] + ignore line: [] + ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072] + ignore line: [Compiler executable checksum: afb3948cd5c0c8f535365414e7310436] + ignore line: [COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles\cmTC_20047.dir\CMakeCCompilerABI.c.obj' '-c' '-mtune=core2' '-march=nocona'] + ignore line: [ C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/bin/as.exe -v -o CMakeFiles\cmTC_20047.dir\CMakeCCompilerABI.c.obj C:\Users\RUPC\AppData\Local\Temp\ccgxby3a.s] + ignore line: [GNU assembler version 2.30 (x86_64-w64-mingw32) using BFD version (GNU Binutils) 2.30] + ignore line: [COMPILER_PATH=C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../libexec/gcc/x86_64-w64-mingw32/7.3.0/] + ignore line: [C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../libexec/gcc/] + ignore line: [C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/bin/] + ignore line: [LIBRARY_PATH=C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/] + ignore line: [C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/] + ignore line: [C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/lib/../lib/] + ignore line: [C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../lib/] + ignore line: [C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/lib/] + ignore line: [C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../] + ignore line: [COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles\cmTC_20047.dir\CMakeCCompilerABI.c.obj' '-c' '-mtune=core2' '-march=nocona'] + ignore line: [Linking C executable cmTC_20047.exe] + ignore line: ["C:\Program Files\JetBrains\CLion 2023.1.1\bin\cmake\win\x64\bin\cmake.exe" -E cmake_link_script CMakeFiles\cmTC_20047.dir\link.txt --verbose=1] + ignore line: ["C:\Program Files\JetBrains\CLion 2023.1.1\bin\cmake\win\x64\bin\cmake.exe" -E rm -f CMakeFiles\cmTC_20047.dir/objects.a] + ignore line: [C:\Qt\Qt5.13.1\Tools\mingw730_64\bin\ar.exe qc CMakeFiles\cmTC_20047.dir/objects.a @CMakeFiles\cmTC_20047.dir\objects1] + ignore line: [C:\Qt\Qt5.13.1\Tools\mingw730_64\bin\gcc.exe -v -Wl --whole-archive CMakeFiles\cmTC_20047.dir/objects.a -Wl --no-whole-archive -o cmTC_20047.exe -Wl --out-implib libcmTC_20047.dll.a -Wl --major-image-version 0 --minor-image-version 0 ] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=C:\Qt\Qt5.13.1\Tools\mingw730_64\bin\gcc.exe] + ignore line: [COLLECT_LTO_WRAPPER=C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../libexec/gcc/x86_64-w64-mingw32/7.3.0/lto-wrapper.exe] + ignore line: [Target: x86_64-w64-mingw32] + ignore line: [Configured with: ../../../src/gcc-7.3.0/configure --host=x86_64-w64-mingw32 --build=x86_64-w64-mingw32 --target=x86_64-w64-mingw32 --prefix=/mingw64 --with-sysroot=/c/mingw730/x86_64-730-posix-seh-rt_v5-rev0/mingw64 --enable-shared --enable-static --disable-multilib --enable-languages=c,c++,fortran,lto --enable-libstdcxx-time=yes --enable-threads=posix --enable-libgomp --enable-libatomic --enable-lto --enable-graphite --enable-checking=release --enable-fully-dynamic-string --enable-version-specific-runtime-libs --enable-libstdcxx-filesystem-ts=yes --disable-libstdcxx-pch --disable-libstdcxx-debug --enable-bootstrap --disable-rpath --disable-win32-registry --disable-nls --disable-werror --disable-symvers --with-gnu-as --with-gnu-ld --with-arch=nocona --with-tune=core2 --with-libiconv --with-system-zlib --with-gmp=/c/mingw730/prerequisites/x86_64-w64-mingw32-static --with-mpfr=/c/mingw730/prerequisites/x86_64-w64-mingw32-static --with-mpc=/c/mingw730/prerequisites/x86_64-w64-mingw32-static --with-isl=/c/mingw730/prerequisites/x86_64-w64-mingw32-static --with-pkgversion='x86_64-posix-seh-rev0, Built by MinGW-W64 project' --with-bugurl=https://sourceforge.net/projects/mingw-w64 CFLAGS='-O2 -pipe -fno-ident -I/c/mingw730/x86_64-730-posix-seh-rt_v5-rev0/mingw64/opt/include -I/c/mingw730/prerequisites/x86_64-zlib-static/include -I/c/mingw730/prerequisites/x86_64-w64-mingw32-static/include' CXXFLAGS='-O2 -pipe -fno-ident -I/c/mingw730/x86_64-730-posix-seh-rt_v5-rev0/mingw64/opt/include -I/c/mingw730/prerequisites/x86_64-zlib-static/include -I/c/mingw730/prerequisites/x86_64-w64-mingw32-static/include' CPPFLAGS=' -I/c/mingw730/x86_64-730-posix-seh-rt_v5-rev0/mingw64/opt/include -I/c/mingw730/prerequisites/x86_64-zlib-static/include -I/c/mingw730/prerequisites/x86_64-w64-mingw32-static/include' LDFLAGS='-pipe -fno-ident -L/c/mingw730/x86_64-730-posix-seh-rt_v5-rev0/mingw64/opt/lib -L/c/mingw730/prerequisites/x86_64-zlib-static/lib -L/c/mingw730/prerequisites/x86_64-w64-mingw32-static/lib '] + ignore line: [Thread model: posix] + ignore line: [gcc version 7.3.0 (x86_64-posix-seh-rev0 Built by MinGW-W64 project) ] + ignore line: [COMPILER_PATH=C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../libexec/gcc/x86_64-w64-mingw32/7.3.0/] + ignore line: [C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../libexec/gcc/] + ignore line: [C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/bin/] + ignore line: [LIBRARY_PATH=C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/] + ignore line: [C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/] + ignore line: [C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/lib/../lib/] + ignore line: [C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../lib/] + ignore line: [C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/lib/] + ignore line: [C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_20047.exe' '-mtune=core2' '-march=nocona'] + link line: [ C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../libexec/gcc/x86_64-w64-mingw32/7.3.0/collect2.exe -plugin C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../libexec/gcc/x86_64-w64-mingw32/7.3.0/liblto_plugin-0.dll -plugin-opt=C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../libexec/gcc/x86_64-w64-mingw32/7.3.0/lto-wrapper.exe -plugin-opt=-fresolution=C:\Users\RUPC\AppData\Local\Temp\ccW2SMrq.res -plugin-opt=-pass-through=-lmingw32 -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_eh -plugin-opt=-pass-through=-lmoldname -plugin-opt=-pass-through=-lmingwex -plugin-opt=-pass-through=-lmsvcrt -plugin-opt=-pass-through=-lpthread -plugin-opt=-pass-through=-ladvapi32 -plugin-opt=-pass-through=-lshell32 -plugin-opt=-pass-through=-luser32 -plugin-opt=-pass-through=-lkernel32 -plugin-opt=-pass-through=-liconv -plugin-opt=-pass-through=-lmingw32 -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_eh -plugin-opt=-pass-through=-lmoldname -plugin-opt=-pass-through=-lmingwex -plugin-opt=-pass-through=-lmsvcrt --sysroot=C:/mingw730/x86_64-730-posix-seh-rt_v5-rev0/mingw64 -m i386pep -Bdynamic -o cmTC_20047.exe C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/lib/../lib/crt2.o C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/crtbegin.o -LC:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0 -LC:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc -LC:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/lib/../lib -LC:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../lib -LC:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/lib -LC:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../.. --whole-archive CMakeFiles\cmTC_20047.dir/objects.a --no-whole-archive --out-implib libcmTC_20047.dll.a --major-image-version 0 --minor-image-version 0 -lmingw32 -lgcc -lgcc_eh -lmoldname -lmingwex -lmsvcrt -lpthread -ladvapi32 -lshell32 -luser32 -lkernel32 -liconv -lmingw32 -lgcc -lgcc_eh -lmoldname -lmingwex -lmsvcrt C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/crtend.o] + arg [C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../libexec/gcc/x86_64-w64-mingw32/7.3.0/collect2.exe] ==> ignore + arg [-plugin] ==> ignore + arg [C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../libexec/gcc/x86_64-w64-mingw32/7.3.0/liblto_plugin-0.dll] ==> ignore + arg [-plugin-opt=C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../libexec/gcc/x86_64-w64-mingw32/7.3.0/lto-wrapper.exe] ==> ignore + arg [-plugin-opt=-fresolution=C:\Users\RUPC\AppData\Local\Temp\ccW2SMrq.res] ==> ignore + arg [-plugin-opt=-pass-through=-lmingw32] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc_eh] ==> ignore + arg [-plugin-opt=-pass-through=-lmoldname] ==> ignore + arg [-plugin-opt=-pass-through=-lmingwex] ==> ignore + arg [-plugin-opt=-pass-through=-lmsvcrt] ==> ignore + arg [-plugin-opt=-pass-through=-lpthread] ==> ignore + arg [-plugin-opt=-pass-through=-ladvapi32] ==> ignore + arg [-plugin-opt=-pass-through=-lshell32] ==> ignore + arg [-plugin-opt=-pass-through=-luser32] ==> ignore + arg [-plugin-opt=-pass-through=-lkernel32] ==> ignore + arg [-plugin-opt=-pass-through=-liconv] ==> ignore + arg [-plugin-opt=-pass-through=-lmingw32] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc_eh] ==> ignore + arg [-plugin-opt=-pass-through=-lmoldname] ==> ignore + arg [-plugin-opt=-pass-through=-lmingwex] ==> ignore + arg [-plugin-opt=-pass-through=-lmsvcrt] ==> ignore + arg [--sysroot=C:/mingw730/x86_64-730-posix-seh-rt_v5-rev0/mingw64] ==> ignore + arg [-m] ==> ignore + arg [i386pep] ==> ignore + arg [-Bdynamic] ==> search dynamic + arg [-o] ==> ignore + arg [cmTC_20047.exe] ==> ignore + arg [C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/lib/../lib/crt2.o] ==> obj [C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/lib/../lib/crt2.o] + arg [C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/crtbegin.o] ==> obj [C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/crtbegin.o] + arg [-LC:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0] ==> dir [C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0] + arg [-LC:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc] ==> dir [C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc] + arg [-LC:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/lib/../lib] ==> dir [C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/lib/../lib] + arg [-LC:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../lib] ==> dir [C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../lib] + arg [-LC:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/lib] ==> dir [C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/lib] + arg [-LC:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../..] ==> dir [C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../..] + arg [--whole-archive] ==> ignore + arg [CMakeFiles\cmTC_20047.dir/objects.a] ==> ignore + arg [--no-whole-archive] ==> ignore + arg [--out-implib] ==> ignore + arg [libcmTC_20047.dll.a] ==> ignore + arg [--major-image-version] ==> ignore + arg [0] ==> ignore + arg [--minor-image-version] ==> ignore + arg [0] ==> ignore + arg [-lmingw32] ==> lib [mingw32] + arg [-lgcc] ==> lib [gcc] + arg [-lgcc_eh] ==> lib [gcc_eh] + arg [-lmoldname] ==> lib [moldname] + arg [-lmingwex] ==> lib [mingwex] + arg [-lmsvcrt] ==> lib [msvcrt] + arg [-lpthread] ==> lib [pthread] + arg [-ladvapi32] ==> lib [advapi32] + arg [-lshell32] ==> lib [shell32] + arg [-luser32] ==> lib [user32] + arg [-lkernel32] ==> lib [kernel32] + arg [-liconv] ==> lib [iconv] + arg [-lmingw32] ==> lib [mingw32] + arg [-lgcc] ==> lib [gcc] + arg [-lgcc_eh] ==> lib [gcc_eh] + arg [-lmoldname] ==> lib [moldname] + arg [-lmingwex] ==> lib [mingwex] + arg [-lmsvcrt] ==> lib [msvcrt] + arg [C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/crtend.o] ==> obj [C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/crtend.o] + remove lib [gcc_eh] + remove lib [msvcrt] + remove lib [gcc_eh] + remove lib [msvcrt] + collapse obj [C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/lib/../lib/crt2.o] ==> [C:/Qt/Qt5.13.1/Tools/mingw730_64/x86_64-w64-mingw32/lib/crt2.o] + collapse obj [C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/crtbegin.o] ==> [C:/Qt/Qt5.13.1/Tools/mingw730_64/lib/gcc/x86_64-w64-mingw32/7.3.0/crtbegin.o] + collapse obj [C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/crtend.o] ==> [C:/Qt/Qt5.13.1/Tools/mingw730_64/lib/gcc/x86_64-w64-mingw32/7.3.0/crtend.o] + collapse library dir [C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0] ==> [C:/Qt/Qt5.13.1/Tools/mingw730_64/lib/gcc/x86_64-w64-mingw32/7.3.0] + collapse library dir [C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc] ==> [C:/Qt/Qt5.13.1/Tools/mingw730_64/lib/gcc] + collapse library dir [C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/lib/../lib] ==> [C:/Qt/Qt5.13.1/Tools/mingw730_64/x86_64-w64-mingw32/lib] + collapse library dir [C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../lib] ==> [C:/Qt/Qt5.13.1/Tools/mingw730_64/lib] + collapse library dir [C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/lib] ==> [C:/Qt/Qt5.13.1/Tools/mingw730_64/x86_64-w64-mingw32/lib] + collapse library dir [C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../..] ==> [C:/Qt/Qt5.13.1/Tools/mingw730_64/lib] + implicit libs: [mingw32;gcc;moldname;mingwex;pthread;advapi32;shell32;user32;kernel32;iconv;mingw32;gcc;moldname;mingwex] + implicit objs: [C:/Qt/Qt5.13.1/Tools/mingw730_64/x86_64-w64-mingw32/lib/crt2.o;C:/Qt/Qt5.13.1/Tools/mingw730_64/lib/gcc/x86_64-w64-mingw32/7.3.0/crtbegin.o;C:/Qt/Qt5.13.1/Tools/mingw730_64/lib/gcc/x86_64-w64-mingw32/7.3.0/crtend.o] + implicit dirs: [C:/Qt/Qt5.13.1/Tools/mingw730_64/lib/gcc/x86_64-w64-mingw32/7.3.0;C:/Qt/Qt5.13.1/Tools/mingw730_64/lib/gcc;C:/Qt/Qt5.13.1/Tools/mingw730_64/x86_64-w64-mingw32/lib;C:/Qt/Qt5.13.1/Tools/mingw730_64/lib] + implicit fwks: [] + + +Detecting CXX compiler ABI info compiled with the following output: +Change Dir: C:/Users/RUPC/Desktop/UV-K6/uv-k5-firmware-chinese/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-jdqrv5 + +Run Build Command(s):C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/mingw32-make.exe -f Makefile cmTC_77359/fast && C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/mingw32-make.exe -f CMakeFiles\cmTC_77359.dir\build.make CMakeFiles/cmTC_77359.dir/build +mingw32-make.exe[1]: Entering directory 'C:/Users/RUPC/Desktop/UV-K6/uv-k5-firmware-chinese/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-jdqrv5' +Building CXX object CMakeFiles/cmTC_77359.dir/CMakeCXXCompilerABI.cpp.obj +C:\Qt\Qt5.13.1\Tools\mingw730_64\bin\g++.exe -fdiagnostics-color=always -v -o CMakeFiles\cmTC_77359.dir\CMakeCXXCompilerABI.cpp.obj -c "C:\Program Files\JetBrains\CLion 2023.1.1\bin\cmake\win\x64\share\cmake-3.25\Modules\CMakeCXXCompilerABI.cpp" +Using built-in specs. +COLLECT_GCC=C:\Qt\Qt5.13.1\Tools\mingw730_64\bin\g++.exe +Target: x86_64-w64-mingw32 +Configured with: ../../../src/gcc-7.3.0/configure --host=x86_64-w64-mingw32 --build=x86_64-w64-mingw32 --target=x86_64-w64-mingw32 --prefix=/mingw64 --with-sysroot=/c/mingw730/x86_64-730-posix-seh-rt_v5-rev0/mingw64 --enable-shared --enable-static --disable-multilib --enable-languages=c,c++,fortran,lto --enable-libstdcxx-time=yes --enable-threads=posix --enable-libgomp --enable-libatomic --enable-lto --enable-graphite --enable-checking=release --enable-fully-dynamic-string --enable-version-specific-runtime-libs --enable-libstdcxx-filesystem-ts=yes --disable-libstdcxx-pch --disable-libstdcxx-debug --enable-bootstrap --disable-rpath --disable-win32-registry --disable-nls --disable-werror --disable-symvers --with-gnu-as --with-gnu-ld --with-arch=nocona --with-tune=core2 --with-libiconv --with-system-zlib --with-gmp=/c/mingw730/prerequisites/x86_64-w64-mingw32-static --with-mpfr=/c/mingw730/prerequisites/x86_64-w64-mingw32-static --with-mpc=/c/mingw730/prerequisites/x86_64-w64-mingw32-static --with-isl=/c/mingw730/prerequisites/x86_64-w64-mingw32-static --with-pkgversion='x86_64-posix-seh-rev0, Built by MinGW-W64 project' --with-bugurl=https://sourceforge.net/projects/mingw-w64 CFLAGS='-O2 -pipe -fno-ident -I/c/mingw730/x86_64-730-posix-seh-rt_v5-rev0/mingw64/opt/include -I/c/mingw730/prerequisites/x86_64-zlib-static/include -I/c/mingw730/prerequisites/x86_64-w64-mingw32-static/include' CXXFLAGS='-O2 -pipe -fno-ident -I/c/mingw730/x86_64-730-posix-seh-rt_v5-rev0/mingw64/opt/include -I/c/mingw730/prerequisites/x86_64-zlib-static/include -I/c/mingw730/prerequisites/x86_64-w64-mingw32-static/include' CPPFLAGS=' -I/c/mingw730/x86_64-730-posix-seh-rt_v5-rev0/mingw64/opt/include -I/c/mingw730/prerequisites/x86_64-zlib-static/include -I/c/mingw730/prerequisites/x86_64-w64-mingw32-static/include' LDFLAGS='-pipe -fno-ident -L/c/mingw730/x86_64-730-posix-seh-rt_v5-rev0/mingw64/opt/lib -L/c/mingw730/prerequisites/x86_64-zlib-static/lib -L/c/mingw730/prerequisites/x86_64-w64-mingw32-static/lib ' +Thread model: posix +gcc version 7.3.0 (x86_64-posix-seh-rev0, Built by MinGW-W64 project) +COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles\cmTC_77359.dir\CMakeCXXCompilerABI.cpp.obj' '-c' '-shared-libgcc' '-mtune=core2' '-march=nocona' + C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../libexec/gcc/x86_64-w64-mingw32/7.3.0/cc1plus.exe -quiet -v -iprefix C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/ -D_REENTRANT C:\Program Files\JetBrains\CLion 2023.1.1\bin\cmake\win\x64\share\cmake-3.25\Modules\CMakeCXXCompilerABI.cpp -quiet -dumpbase CMakeCXXCompilerABI.cpp -mtune=core2 -march=nocona -auxbase-strip CMakeFiles\cmTC_77359.dir\CMakeCXXCompilerABI.cpp.obj -version -fdiagnostics-color=always -o C:\Users\RUPC\AppData\Local\Temp\ccKSaxPT.s +GNU C++14 (x86_64-posix-seh-rev0, Built by MinGW-W64 project) version 7.3.0 (x86_64-w64-mingw32) + compiled by GNU C version 7.3.0, GMP version 6.1.2, MPFR version 4.0.1, MPC version 1.1.0, isl version isl-0.18-GMP + +GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 +ignoring duplicate directory "C:/Qt/Qt5.13.1/Tools/mingw730_64/lib/gcc/../../lib/gcc/x86_64-w64-mingw32/7.3.0/include/c++" +ignoring duplicate directory "C:/Qt/Qt5.13.1/Tools/mingw730_64/lib/gcc/../../lib/gcc/x86_64-w64-mingw32/7.3.0/include/c++/x86_64-w64-mingw32" +ignoring duplicate directory "C:/Qt/Qt5.13.1/Tools/mingw730_64/lib/gcc/../../lib/gcc/x86_64-w64-mingw32/7.3.0/include/c++/backward" +ignoring duplicate directory "C:/Qt/Qt5.13.1/Tools/mingw730_64/lib/gcc/../../lib/gcc/x86_64-w64-mingw32/7.3.0/include" +ignoring nonexistent directory "C:/mingw730/x86_64-730-posix-seh-rt_v5-rev0/mingw64C:/msys64-2/mingw64/lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../include" +ignoring duplicate directory "C:/Qt/Qt5.13.1/Tools/mingw730_64/lib/gcc/../../lib/gcc/x86_64-w64-mingw32/7.3.0/include-fixed" +ignoring duplicate directory "C:/Qt/Qt5.13.1/Tools/mingw730_64/lib/gcc/../../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/include" +ignoring nonexistent directory "C:/mingw730/x86_64-730-posix-seh-rt_v5-rev0/mingw64/mingw/include" +#include "..." search starts here: +#include <...> search starts here: + C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/include/c++ + C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/include/c++/x86_64-w64-mingw32 + C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/include/c++/backward + C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/include + C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/include-fixed + C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/include +End of search list. +GNU C++14 (x86_64-posix-seh-rev0, Built by MinGW-W64 project) version 7.3.0 (x86_64-w64-mingw32) + compiled by GNU C version 7.3.0, GMP version 6.1.2, MPFR version 4.0.1, MPC version 1.1.0, isl version isl-0.18-GMP + +GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 +Compiler executable checksum: 86cf749bb84a0f12f1d61bff4e68fffd +COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles\cmTC_77359.dir\CMakeCXXCompilerABI.cpp.obj' '-c' '-shared-libgcc' '-mtune=core2' '-march=nocona' + C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/bin/as.exe -v -o CMakeFiles\cmTC_77359.dir\CMakeCXXCompilerABI.cpp.obj C:\Users\RUPC\AppData\Local\Temp\ccKSaxPT.s +GNU assembler version 2.30 (x86_64-w64-mingw32) using BFD version (GNU Binutils) 2.30 +COMPILER_PATH=C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../libexec/gcc/x86_64-w64-mingw32/7.3.0/;C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../libexec/gcc/;C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/bin/ +LIBRARY_PATH=C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/;C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/;C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/lib/../lib/;C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../lib/;C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/lib/;C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../ +COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles\cmTC_77359.dir\CMakeCXXCompilerABI.cpp.obj' '-c' '-shared-libgcc' '-mtune=core2' '-march=nocona' +Linking CXX executable cmTC_77359.exe +"C:\Program Files\JetBrains\CLion 2023.1.1\bin\cmake\win\x64\bin\cmake.exe" -E cmake_link_script CMakeFiles\cmTC_77359.dir\link.txt --verbose=1 +"C:\Program Files\JetBrains\CLion 2023.1.1\bin\cmake\win\x64\bin\cmake.exe" -E rm -f CMakeFiles\cmTC_77359.dir/objects.a +C:\Qt\Qt5.13.1\Tools\mingw730_64\bin\ar.exe qc CMakeFiles\cmTC_77359.dir/objects.a @CMakeFiles\cmTC_77359.dir\objects1 +C:\Qt\Qt5.13.1\Tools\mingw730_64\bin\g++.exe -v -Wl,--whole-archive CMakeFiles\cmTC_77359.dir/objects.a -Wl,--no-whole-archive -o cmTC_77359.exe -Wl,--out-implib,libcmTC_77359.dll.a -Wl,--major-image-version,0,--minor-image-version,0 +Using built-in specs. +COLLECT_GCC=C:\Qt\Qt5.13.1\Tools\mingw730_64\bin\g++.exe +COLLECT_LTO_WRAPPER=C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../libexec/gcc/x86_64-w64-mingw32/7.3.0/lto-wrapper.exe +Target: x86_64-w64-mingw32 +Configured with: ../../../src/gcc-7.3.0/configure --host=x86_64-w64-mingw32 --build=x86_64-w64-mingw32 --target=x86_64-w64-mingw32 --prefix=/mingw64 --with-sysroot=/c/mingw730/x86_64-730-posix-seh-rt_v5-rev0/mingw64 --enable-shared --enable-static --disable-multilib --enable-languages=c,c++,fortran,lto --enable-libstdcxx-time=yes --enable-threads=posix --enable-libgomp --enable-libatomic --enable-lto --enable-graphite --enable-checking=release --enable-fully-dynamic-string --enable-version-specific-runtime-libs --enable-libstdcxx-filesystem-ts=yes --disable-libstdcxx-pch --disable-libstdcxx-debug --enable-bootstrap --disable-rpath --disable-win32-registry --disable-nls --disable-werror --disable-symvers --with-gnu-as --with-gnu-ld --with-arch=nocona --with-tune=core2 --with-libiconv --with-system-zlib --with-gmp=/c/mingw730/prerequisites/x86_64-w64-mingw32-static --with-mpfr=/c/mingw730/prerequisites/x86_64-w64-mingw32-static --with-mpc=/c/mingw730/prerequisites/x86_64-w64-mingw32-static --with-isl=/c/mingw730/prerequisites/x86_64-w64-mingw32-static --with-pkgversion='x86_64-posix-seh-rev0, Built by MinGW-W64 project' --with-bugurl=https://sourceforge.net/projects/mingw-w64 CFLAGS='-O2 -pipe -fno-ident -I/c/mingw730/x86_64-730-posix-seh-rt_v5-rev0/mingw64/opt/include -I/c/mingw730/prerequisites/x86_64-zlib-static/include -I/c/mingw730/prerequisites/x86_64-w64-mingw32-static/include' CXXFLAGS='-O2 -pipe -fno-ident -I/c/mingw730/x86_64-730-posix-seh-rt_v5-rev0/mingw64/opt/include -I/c/mingw730/prerequisites/x86_64-zlib-static/include -I/c/mingw730/prerequisites/x86_64-w64-mingw32-static/include' CPPFLAGS=' -I/c/mingw730/x86_64-730-posix-seh-rt_v5-rev0/mingw64/opt/include -I/c/mingw730/prerequisites/x86_64-zlib-static/include -I/c/mingw730/prerequisites/x86_64-w64-mingw32-static/include' LDFLAGS='-pipe -fno-ident -L/c/mingw730/x86_64-730-posix-seh-rt_v5-rev0/mingw64/opt/lib -L/c/mingw730/prerequisites/x86_64-zlib-static/lib -L/c/mingw730/prerequisites/x86_64-w64-mingw32-static/lib ' +Thread model: posix +gcc version 7.3.0 (x86_64-posix-seh-rev0, Built by MinGW-W64 project) +COMPILER_PATH=C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../libexec/gcc/x86_64-w64-mingw32/7.3.0/;C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../libexec/gcc/;C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/bin/ +LIBRARY_PATH=C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/;C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/;C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/lib/../lib/;C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../lib/;C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/lib/;C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../ +COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_77359.exe' '-shared-libgcc' '-mtune=core2' '-march=nocona' + C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../libexec/gcc/x86_64-w64-mingw32/7.3.0/collect2.exe -plugin C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../libexec/gcc/x86_64-w64-mingw32/7.3.0/liblto_plugin-0.dll -plugin-opt=C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../libexec/gcc/x86_64-w64-mingw32/7.3.0/lto-wrapper.exe -plugin-opt=-fresolution=C:\Users\RUPC\AppData\Local\Temp\ccMruwF4.res -plugin-opt=-pass-through=-lmingw32 -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lmoldname -plugin-opt=-pass-through=-lmingwex -plugin-opt=-pass-through=-lmsvcrt -plugin-opt=-pass-through=-lpthread -plugin-opt=-pass-through=-ladvapi32 -plugin-opt=-pass-through=-lshell32 -plugin-opt=-pass-through=-luser32 -plugin-opt=-pass-through=-lkernel32 -plugin-opt=-pass-through=-liconv -plugin-opt=-pass-through=-lmingw32 -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lmoldname -plugin-opt=-pass-through=-lmingwex -plugin-opt=-pass-through=-lmsvcrt --sysroot=C:/mingw730/x86_64-730-posix-seh-rt_v5-rev0/mingw64 -m i386pep -Bdynamic -o cmTC_77359.exe C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/lib/../lib/crt2.o C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/crtbegin.o -LC:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0 -LC:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc -LC:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/lib/../lib -LC:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../lib -LC:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/lib -LC:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../.. --whole-archive CMakeFiles\cmTC_77359.dir/objects.a --no-whole-archive --out-implib libcmTC_77359.dll.a --major-image-version 0 --minor-image-version 0 -lstdc++ -lmingw32 -lgcc_s -lgcc -lmoldname -lmingwex -lmsvcrt -lpthread -ladvapi32 -lshell32 -luser32 -lkernel32 -liconv -lmingw32 -lgcc_s -lgcc -lmoldname -lmingwex -lmsvcrt C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/crtend.o +COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_77359.exe' '-shared-libgcc' '-mtune=core2' '-march=nocona' +mingw32-make.exe[1]: Leaving directory 'C:/Users/RUPC/Desktop/UV-K6/uv-k5-firmware-chinese/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-jdqrv5' + + + +Parsed CXX implicit include dir info from above output: rv=done + found start of include info + found start of implicit include info + add: [C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/include/c++] + add: [C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/include/c++/x86_64-w64-mingw32] + add: [C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/include/c++/backward] + add: [C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/include] + add: [C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/include-fixed] + add: [C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/include] + end of search list found + collapse include dir [C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/include/c++] ==> [C:/Qt/Qt5.13.1/Tools/mingw730_64/lib/gcc/x86_64-w64-mingw32/7.3.0/include/c++] + collapse include dir [C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/include/c++/x86_64-w64-mingw32] ==> [C:/Qt/Qt5.13.1/Tools/mingw730_64/lib/gcc/x86_64-w64-mingw32/7.3.0/include/c++/x86_64-w64-mingw32] + collapse include dir [C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/include/c++/backward] ==> [C:/Qt/Qt5.13.1/Tools/mingw730_64/lib/gcc/x86_64-w64-mingw32/7.3.0/include/c++/backward] + collapse include dir [C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/include] ==> [C:/Qt/Qt5.13.1/Tools/mingw730_64/lib/gcc/x86_64-w64-mingw32/7.3.0/include] + collapse include dir [C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/include-fixed] ==> [C:/Qt/Qt5.13.1/Tools/mingw730_64/lib/gcc/x86_64-w64-mingw32/7.3.0/include-fixed] + collapse include dir [C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/include] ==> [C:/Qt/Qt5.13.1/Tools/mingw730_64/x86_64-w64-mingw32/include] + implicit include dirs: [C:/Qt/Qt5.13.1/Tools/mingw730_64/lib/gcc/x86_64-w64-mingw32/7.3.0/include/c++;C:/Qt/Qt5.13.1/Tools/mingw730_64/lib/gcc/x86_64-w64-mingw32/7.3.0/include/c++/x86_64-w64-mingw32;C:/Qt/Qt5.13.1/Tools/mingw730_64/lib/gcc/x86_64-w64-mingw32/7.3.0/include/c++/backward;C:/Qt/Qt5.13.1/Tools/mingw730_64/lib/gcc/x86_64-w64-mingw32/7.3.0/include;C:/Qt/Qt5.13.1/Tools/mingw730_64/lib/gcc/x86_64-w64-mingw32/7.3.0/include-fixed;C:/Qt/Qt5.13.1/Tools/mingw730_64/x86_64-w64-mingw32/include] + + +Parsed CXX implicit link information from above output: + link line regex: [^( *|.*[/\])(ld\.exe|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)] + ignore line: [Change Dir: C:/Users/RUPC/Desktop/UV-K6/uv-k5-firmware-chinese/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-jdqrv5] + ignore line: [] + ignore line: [Run Build Command(s):C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/mingw32-make.exe -f Makefile cmTC_77359/fast && C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/mingw32-make.exe -f CMakeFiles\cmTC_77359.dir\build.make CMakeFiles/cmTC_77359.dir/build] + ignore line: [mingw32-make.exe[1]: Entering directory 'C:/Users/RUPC/Desktop/UV-K6/uv-k5-firmware-chinese/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-jdqrv5'] + ignore line: [Building CXX object CMakeFiles/cmTC_77359.dir/CMakeCXXCompilerABI.cpp.obj] + ignore line: [C:\Qt\Qt5.13.1\Tools\mingw730_64\bin\g++.exe -fdiagnostics-color=always -v -o CMakeFiles\cmTC_77359.dir\CMakeCXXCompilerABI.cpp.obj -c "C:\Program Files\JetBrains\CLion 2023.1.1\bin\cmake\win\x64\share\cmake-3.25\Modules\CMakeCXXCompilerABI.cpp"] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=C:\Qt\Qt5.13.1\Tools\mingw730_64\bin\g++.exe] + ignore line: [Target: x86_64-w64-mingw32] + ignore line: [Configured with: ../../../src/gcc-7.3.0/configure --host=x86_64-w64-mingw32 --build=x86_64-w64-mingw32 --target=x86_64-w64-mingw32 --prefix=/mingw64 --with-sysroot=/c/mingw730/x86_64-730-posix-seh-rt_v5-rev0/mingw64 --enable-shared --enable-static --disable-multilib --enable-languages=c,c++,fortran,lto --enable-libstdcxx-time=yes --enable-threads=posix --enable-libgomp --enable-libatomic --enable-lto --enable-graphite --enable-checking=release --enable-fully-dynamic-string --enable-version-specific-runtime-libs --enable-libstdcxx-filesystem-ts=yes --disable-libstdcxx-pch --disable-libstdcxx-debug --enable-bootstrap --disable-rpath --disable-win32-registry --disable-nls --disable-werror --disable-symvers --with-gnu-as --with-gnu-ld --with-arch=nocona --with-tune=core2 --with-libiconv --with-system-zlib --with-gmp=/c/mingw730/prerequisites/x86_64-w64-mingw32-static --with-mpfr=/c/mingw730/prerequisites/x86_64-w64-mingw32-static --with-mpc=/c/mingw730/prerequisites/x86_64-w64-mingw32-static --with-isl=/c/mingw730/prerequisites/x86_64-w64-mingw32-static --with-pkgversion='x86_64-posix-seh-rev0, Built by MinGW-W64 project' --with-bugurl=https://sourceforge.net/projects/mingw-w64 CFLAGS='-O2 -pipe -fno-ident -I/c/mingw730/x86_64-730-posix-seh-rt_v5-rev0/mingw64/opt/include -I/c/mingw730/prerequisites/x86_64-zlib-static/include -I/c/mingw730/prerequisites/x86_64-w64-mingw32-static/include' CXXFLAGS='-O2 -pipe -fno-ident -I/c/mingw730/x86_64-730-posix-seh-rt_v5-rev0/mingw64/opt/include -I/c/mingw730/prerequisites/x86_64-zlib-static/include -I/c/mingw730/prerequisites/x86_64-w64-mingw32-static/include' CPPFLAGS=' -I/c/mingw730/x86_64-730-posix-seh-rt_v5-rev0/mingw64/opt/include -I/c/mingw730/prerequisites/x86_64-zlib-static/include -I/c/mingw730/prerequisites/x86_64-w64-mingw32-static/include' LDFLAGS='-pipe -fno-ident -L/c/mingw730/x86_64-730-posix-seh-rt_v5-rev0/mingw64/opt/lib -L/c/mingw730/prerequisites/x86_64-zlib-static/lib -L/c/mingw730/prerequisites/x86_64-w64-mingw32-static/lib '] + ignore line: [Thread model: posix] + ignore line: [gcc version 7.3.0 (x86_64-posix-seh-rev0 Built by MinGW-W64 project) ] + ignore line: [COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles\cmTC_77359.dir\CMakeCXXCompilerABI.cpp.obj' '-c' '-shared-libgcc' '-mtune=core2' '-march=nocona'] + ignore line: [ C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../libexec/gcc/x86_64-w64-mingw32/7.3.0/cc1plus.exe -quiet -v -iprefix C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/ -D_REENTRANT C:\Program Files\JetBrains\CLion 2023.1.1\bin\cmake\win\x64\share\cmake-3.25\Modules\CMakeCXXCompilerABI.cpp -quiet -dumpbase CMakeCXXCompilerABI.cpp -mtune=core2 -march=nocona -auxbase-strip CMakeFiles\cmTC_77359.dir\CMakeCXXCompilerABI.cpp.obj -version -fdiagnostics-color=always -o C:\Users\RUPC\AppData\Local\Temp\ccKSaxPT.s] + ignore line: [GNU C++14 (x86_64-posix-seh-rev0 Built by MinGW-W64 project) version 7.3.0 (x86_64-w64-mingw32)] + ignore line: [ compiled by GNU C version 7.3.0 GMP version 6.1.2 MPFR version 4.0.1 MPC version 1.1.0 isl version isl-0.18-GMP] + ignore line: [] + ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072] + ignore line: [ignoring duplicate directory "C:/Qt/Qt5.13.1/Tools/mingw730_64/lib/gcc/../../lib/gcc/x86_64-w64-mingw32/7.3.0/include/c++"] + ignore line: [ignoring duplicate directory "C:/Qt/Qt5.13.1/Tools/mingw730_64/lib/gcc/../../lib/gcc/x86_64-w64-mingw32/7.3.0/include/c++/x86_64-w64-mingw32"] + ignore line: [ignoring duplicate directory "C:/Qt/Qt5.13.1/Tools/mingw730_64/lib/gcc/../../lib/gcc/x86_64-w64-mingw32/7.3.0/include/c++/backward"] + ignore line: [ignoring duplicate directory "C:/Qt/Qt5.13.1/Tools/mingw730_64/lib/gcc/../../lib/gcc/x86_64-w64-mingw32/7.3.0/include"] + ignore line: [ignoring nonexistent directory "C:/mingw730/x86_64-730-posix-seh-rt_v5-rev0/mingw64C:/msys64-2/mingw64/lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../include"] + ignore line: [ignoring duplicate directory "C:/Qt/Qt5.13.1/Tools/mingw730_64/lib/gcc/../../lib/gcc/x86_64-w64-mingw32/7.3.0/include-fixed"] + ignore line: [ignoring duplicate directory "C:/Qt/Qt5.13.1/Tools/mingw730_64/lib/gcc/../../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/include"] + ignore line: [ignoring nonexistent directory "C:/mingw730/x86_64-730-posix-seh-rt_v5-rev0/mingw64/mingw/include"] + ignore line: [#include "..." search starts here:] + ignore line: [#include <...> search starts here:] + ignore line: [ C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/include/c++] + ignore line: [ C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/include/c++/x86_64-w64-mingw32] + ignore line: [ C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/include/c++/backward] + ignore line: [ C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/include] + ignore line: [ C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/include-fixed] + ignore line: [ C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/include] + ignore line: [End of search list.] + ignore line: [GNU C++14 (x86_64-posix-seh-rev0 Built by MinGW-W64 project) version 7.3.0 (x86_64-w64-mingw32)] + ignore line: [ compiled by GNU C version 7.3.0 GMP version 6.1.2 MPFR version 4.0.1 MPC version 1.1.0 isl version isl-0.18-GMP] + ignore line: [] + ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072] + ignore line: [Compiler executable checksum: 86cf749bb84a0f12f1d61bff4e68fffd] + ignore line: [COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles\cmTC_77359.dir\CMakeCXXCompilerABI.cpp.obj' '-c' '-shared-libgcc' '-mtune=core2' '-march=nocona'] + ignore line: [ C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/bin/as.exe -v -o CMakeFiles\cmTC_77359.dir\CMakeCXXCompilerABI.cpp.obj C:\Users\RUPC\AppData\Local\Temp\ccKSaxPT.s] + ignore line: [GNU assembler version 2.30 (x86_64-w64-mingw32) using BFD version (GNU Binutils) 2.30] + ignore line: [COMPILER_PATH=C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../libexec/gcc/x86_64-w64-mingw32/7.3.0/] + ignore line: [C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../libexec/gcc/] + ignore line: [C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/bin/] + ignore line: [LIBRARY_PATH=C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/] + ignore line: [C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/] + ignore line: [C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/lib/../lib/] + ignore line: [C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../lib/] + ignore line: [C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/lib/] + ignore line: [C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../] + ignore line: [COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles\cmTC_77359.dir\CMakeCXXCompilerABI.cpp.obj' '-c' '-shared-libgcc' '-mtune=core2' '-march=nocona'] + ignore line: [Linking CXX executable cmTC_77359.exe] + ignore line: ["C:\Program Files\JetBrains\CLion 2023.1.1\bin\cmake\win\x64\bin\cmake.exe" -E cmake_link_script CMakeFiles\cmTC_77359.dir\link.txt --verbose=1] + ignore line: ["C:\Program Files\JetBrains\CLion 2023.1.1\bin\cmake\win\x64\bin\cmake.exe" -E rm -f CMakeFiles\cmTC_77359.dir/objects.a] + ignore line: [C:\Qt\Qt5.13.1\Tools\mingw730_64\bin\ar.exe qc CMakeFiles\cmTC_77359.dir/objects.a @CMakeFiles\cmTC_77359.dir\objects1] + ignore line: [C:\Qt\Qt5.13.1\Tools\mingw730_64\bin\g++.exe -v -Wl --whole-archive CMakeFiles\cmTC_77359.dir/objects.a -Wl --no-whole-archive -o cmTC_77359.exe -Wl --out-implib libcmTC_77359.dll.a -Wl --major-image-version 0 --minor-image-version 0 ] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=C:\Qt\Qt5.13.1\Tools\mingw730_64\bin\g++.exe] + ignore line: [COLLECT_LTO_WRAPPER=C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../libexec/gcc/x86_64-w64-mingw32/7.3.0/lto-wrapper.exe] + ignore line: [Target: x86_64-w64-mingw32] + ignore line: [Configured with: ../../../src/gcc-7.3.0/configure --host=x86_64-w64-mingw32 --build=x86_64-w64-mingw32 --target=x86_64-w64-mingw32 --prefix=/mingw64 --with-sysroot=/c/mingw730/x86_64-730-posix-seh-rt_v5-rev0/mingw64 --enable-shared --enable-static --disable-multilib --enable-languages=c,c++,fortran,lto --enable-libstdcxx-time=yes --enable-threads=posix --enable-libgomp --enable-libatomic --enable-lto --enable-graphite --enable-checking=release --enable-fully-dynamic-string --enable-version-specific-runtime-libs --enable-libstdcxx-filesystem-ts=yes --disable-libstdcxx-pch --disable-libstdcxx-debug --enable-bootstrap --disable-rpath --disable-win32-registry --disable-nls --disable-werror --disable-symvers --with-gnu-as --with-gnu-ld --with-arch=nocona --with-tune=core2 --with-libiconv --with-system-zlib --with-gmp=/c/mingw730/prerequisites/x86_64-w64-mingw32-static --with-mpfr=/c/mingw730/prerequisites/x86_64-w64-mingw32-static --with-mpc=/c/mingw730/prerequisites/x86_64-w64-mingw32-static --with-isl=/c/mingw730/prerequisites/x86_64-w64-mingw32-static --with-pkgversion='x86_64-posix-seh-rev0, Built by MinGW-W64 project' --with-bugurl=https://sourceforge.net/projects/mingw-w64 CFLAGS='-O2 -pipe -fno-ident -I/c/mingw730/x86_64-730-posix-seh-rt_v5-rev0/mingw64/opt/include -I/c/mingw730/prerequisites/x86_64-zlib-static/include -I/c/mingw730/prerequisites/x86_64-w64-mingw32-static/include' CXXFLAGS='-O2 -pipe -fno-ident -I/c/mingw730/x86_64-730-posix-seh-rt_v5-rev0/mingw64/opt/include -I/c/mingw730/prerequisites/x86_64-zlib-static/include -I/c/mingw730/prerequisites/x86_64-w64-mingw32-static/include' CPPFLAGS=' -I/c/mingw730/x86_64-730-posix-seh-rt_v5-rev0/mingw64/opt/include -I/c/mingw730/prerequisites/x86_64-zlib-static/include -I/c/mingw730/prerequisites/x86_64-w64-mingw32-static/include' LDFLAGS='-pipe -fno-ident -L/c/mingw730/x86_64-730-posix-seh-rt_v5-rev0/mingw64/opt/lib -L/c/mingw730/prerequisites/x86_64-zlib-static/lib -L/c/mingw730/prerequisites/x86_64-w64-mingw32-static/lib '] + ignore line: [Thread model: posix] + ignore line: [gcc version 7.3.0 (x86_64-posix-seh-rev0 Built by MinGW-W64 project) ] + ignore line: [COMPILER_PATH=C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../libexec/gcc/x86_64-w64-mingw32/7.3.0/] + ignore line: [C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../libexec/gcc/] + ignore line: [C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/bin/] + ignore line: [LIBRARY_PATH=C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/] + ignore line: [C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/] + ignore line: [C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/lib/../lib/] + ignore line: [C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../lib/] + ignore line: [C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/lib/] + ignore line: [C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_77359.exe' '-shared-libgcc' '-mtune=core2' '-march=nocona'] + link line: [ C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../libexec/gcc/x86_64-w64-mingw32/7.3.0/collect2.exe -plugin C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../libexec/gcc/x86_64-w64-mingw32/7.3.0/liblto_plugin-0.dll -plugin-opt=C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../libexec/gcc/x86_64-w64-mingw32/7.3.0/lto-wrapper.exe -plugin-opt=-fresolution=C:\Users\RUPC\AppData\Local\Temp\ccMruwF4.res -plugin-opt=-pass-through=-lmingw32 -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lmoldname -plugin-opt=-pass-through=-lmingwex -plugin-opt=-pass-through=-lmsvcrt -plugin-opt=-pass-through=-lpthread -plugin-opt=-pass-through=-ladvapi32 -plugin-opt=-pass-through=-lshell32 -plugin-opt=-pass-through=-luser32 -plugin-opt=-pass-through=-lkernel32 -plugin-opt=-pass-through=-liconv -plugin-opt=-pass-through=-lmingw32 -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lmoldname -plugin-opt=-pass-through=-lmingwex -plugin-opt=-pass-through=-lmsvcrt --sysroot=C:/mingw730/x86_64-730-posix-seh-rt_v5-rev0/mingw64 -m i386pep -Bdynamic -o cmTC_77359.exe C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/lib/../lib/crt2.o C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/crtbegin.o -LC:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0 -LC:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc -LC:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/lib/../lib -LC:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../lib -LC:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/lib -LC:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../.. --whole-archive CMakeFiles\cmTC_77359.dir/objects.a --no-whole-archive --out-implib libcmTC_77359.dll.a --major-image-version 0 --minor-image-version 0 -lstdc++ -lmingw32 -lgcc_s -lgcc -lmoldname -lmingwex -lmsvcrt -lpthread -ladvapi32 -lshell32 -luser32 -lkernel32 -liconv -lmingw32 -lgcc_s -lgcc -lmoldname -lmingwex -lmsvcrt C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/crtend.o] + arg [C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../libexec/gcc/x86_64-w64-mingw32/7.3.0/collect2.exe] ==> ignore + arg [-plugin] ==> ignore + arg [C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../libexec/gcc/x86_64-w64-mingw32/7.3.0/liblto_plugin-0.dll] ==> ignore + arg [-plugin-opt=C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../libexec/gcc/x86_64-w64-mingw32/7.3.0/lto-wrapper.exe] ==> ignore + arg [-plugin-opt=-fresolution=C:\Users\RUPC\AppData\Local\Temp\ccMruwF4.res] ==> ignore + arg [-plugin-opt=-pass-through=-lmingw32] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc] ==> ignore + arg [-plugin-opt=-pass-through=-lmoldname] ==> ignore + arg [-plugin-opt=-pass-through=-lmingwex] ==> ignore + arg [-plugin-opt=-pass-through=-lmsvcrt] ==> ignore + arg [-plugin-opt=-pass-through=-lpthread] ==> ignore + arg [-plugin-opt=-pass-through=-ladvapi32] ==> ignore + arg [-plugin-opt=-pass-through=-lshell32] ==> ignore + arg [-plugin-opt=-pass-through=-luser32] ==> ignore + arg [-plugin-opt=-pass-through=-lkernel32] ==> ignore + arg [-plugin-opt=-pass-through=-liconv] ==> ignore + arg [-plugin-opt=-pass-through=-lmingw32] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc] ==> ignore + arg [-plugin-opt=-pass-through=-lmoldname] ==> ignore + arg [-plugin-opt=-pass-through=-lmingwex] ==> ignore + arg [-plugin-opt=-pass-through=-lmsvcrt] ==> ignore + arg [--sysroot=C:/mingw730/x86_64-730-posix-seh-rt_v5-rev0/mingw64] ==> ignore + arg [-m] ==> ignore + arg [i386pep] ==> ignore + arg [-Bdynamic] ==> search dynamic + arg [-o] ==> ignore + arg [cmTC_77359.exe] ==> ignore + arg [C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/lib/../lib/crt2.o] ==> obj [C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/lib/../lib/crt2.o] + arg [C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/crtbegin.o] ==> obj [C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/crtbegin.o] + arg [-LC:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0] ==> dir [C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0] + arg [-LC:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc] ==> dir [C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc] + arg [-LC:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/lib/../lib] ==> dir [C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/lib/../lib] + arg [-LC:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../lib] ==> dir [C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../lib] + arg [-LC:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/lib] ==> dir [C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/lib] + arg [-LC:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../..] ==> dir [C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../..] + arg [--whole-archive] ==> ignore + arg [CMakeFiles\cmTC_77359.dir/objects.a] ==> ignore + arg [--no-whole-archive] ==> ignore + arg [--out-implib] ==> ignore + arg [libcmTC_77359.dll.a] ==> ignore + arg [--major-image-version] ==> ignore + arg [0] ==> ignore + arg [--minor-image-version] ==> ignore + arg [0] ==> ignore + arg [-lstdc++] ==> lib [stdc++] + arg [-lmingw32] ==> lib [mingw32] + arg [-lgcc_s] ==> lib [gcc_s] + arg [-lgcc] ==> lib [gcc] + arg [-lmoldname] ==> lib [moldname] + arg [-lmingwex] ==> lib [mingwex] + arg [-lmsvcrt] ==> lib [msvcrt] + arg [-lpthread] ==> lib [pthread] + arg [-ladvapi32] ==> lib [advapi32] + arg [-lshell32] ==> lib [shell32] + arg [-luser32] ==> lib [user32] + arg [-lkernel32] ==> lib [kernel32] + arg [-liconv] ==> lib [iconv] + arg [-lmingw32] ==> lib [mingw32] + arg [-lgcc_s] ==> lib [gcc_s] + arg [-lgcc] ==> lib [gcc] + arg [-lmoldname] ==> lib [moldname] + arg [-lmingwex] ==> lib [mingwex] + arg [-lmsvcrt] ==> lib [msvcrt] + arg [C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/crtend.o] ==> obj [C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/crtend.o] + remove lib [msvcrt] + remove lib [msvcrt] + collapse obj [C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/lib/../lib/crt2.o] ==> [C:/Qt/Qt5.13.1/Tools/mingw730_64/x86_64-w64-mingw32/lib/crt2.o] + collapse obj [C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/crtbegin.o] ==> [C:/Qt/Qt5.13.1/Tools/mingw730_64/lib/gcc/x86_64-w64-mingw32/7.3.0/crtbegin.o] + collapse obj [C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/crtend.o] ==> [C:/Qt/Qt5.13.1/Tools/mingw730_64/lib/gcc/x86_64-w64-mingw32/7.3.0/crtend.o] + collapse library dir [C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0] ==> [C:/Qt/Qt5.13.1/Tools/mingw730_64/lib/gcc/x86_64-w64-mingw32/7.3.0] + collapse library dir [C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc] ==> [C:/Qt/Qt5.13.1/Tools/mingw730_64/lib/gcc] + collapse library dir [C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/lib/../lib] ==> [C:/Qt/Qt5.13.1/Tools/mingw730_64/x86_64-w64-mingw32/lib] + collapse library dir [C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../lib] ==> [C:/Qt/Qt5.13.1/Tools/mingw730_64/lib] + collapse library dir [C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/lib] ==> [C:/Qt/Qt5.13.1/Tools/mingw730_64/x86_64-w64-mingw32/lib] + collapse library dir [C:/Qt/Qt5.13.1/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../..] ==> [C:/Qt/Qt5.13.1/Tools/mingw730_64/lib] + implicit libs: [stdc++;mingw32;gcc_s;gcc;moldname;mingwex;pthread;advapi32;shell32;user32;kernel32;iconv;mingw32;gcc_s;gcc;moldname;mingwex] + implicit objs: [C:/Qt/Qt5.13.1/Tools/mingw730_64/x86_64-w64-mingw32/lib/crt2.o;C:/Qt/Qt5.13.1/Tools/mingw730_64/lib/gcc/x86_64-w64-mingw32/7.3.0/crtbegin.o;C:/Qt/Qt5.13.1/Tools/mingw730_64/lib/gcc/x86_64-w64-mingw32/7.3.0/crtend.o] + implicit dirs: [C:/Qt/Qt5.13.1/Tools/mingw730_64/lib/gcc/x86_64-w64-mingw32/7.3.0;C:/Qt/Qt5.13.1/Tools/mingw730_64/lib/gcc;C:/Qt/Qt5.13.1/Tools/mingw730_64/x86_64-w64-mingw32/lib;C:/Qt/Qt5.13.1/Tools/mingw730_64/lib] + implicit fwks: [] + + diff --git a/cmake-build-debug/CMakeFiles/clion-environment.txt b/cmake-build-debug/CMakeFiles/clion-environment.txt index b7d7a449d7db3bfb66a52b98a790976dab843bf0..b2ac2d2f3b6ec28e2eac872fa2a8c0a0fbbde30d 100644 GIT binary patch literal 281 zcmWH^&(8@?EwNH4H#1Q%(=$-e$jMJm%+Yjkwu%WX0U}d9Lt{O|m=K`4;+Wjby!3K& zV}p1z6E6RPlFaXu01?C>eXv3LNCxRA xW#&Qn#zwliiP@=osTHXVFr%E~o&9|SJbhe)h%+cXIT=-dLw-O2b6ov7jI)GdZy&Ge56b-`NL9=_M8v d=sV} + #include // NULL #include "app/mdc1200.h" #include "app/uart.h" @@ -42,7 +43,7 @@ #include "ui/welcome.h" #include "ui/menu.h" #include "version.h" - +#include "driver/eeprom.h" void _putchar(char c) { UART_Send((uint8_t *)&c, 1); @@ -131,7 +132,7 @@ void Main(void) boot_counter_10ms=250; while (boot_counter_10ms > 0) { - if (KEYBOARD_Poll() != KEY_INVALID) + if (KEYBOARD_Poll() == KEY_EXIT) { // halt boot beeps boot_counter_10ms = 0; break; @@ -184,12 +185,25 @@ void Main(void) RADIO_ConfigureNOAA(); #endif - // ****************** -// } - +// uint8_t B[64]; +// memset(B,'B',sizeof (B)); +// for ( uint16_t j = 0; j < ARRAY_SIZE(MDC_ADD); ++j) { +// for (uint16_t i =MDC_ADD[j]; i < MDC_ADD[j]+64; ++i) { +// EEPROM_WriteBuffer(i,&B[i-MDC_ADD[j]]); +// } +// } +// +// +// uint8_t A[16]={0XFF,0XFF,'B','G','2','F','Z','V',' ','U','V','K','5',' ','S','B'}; +// for (int i =MDC_ADD[0]; i < MDC_ADD[0]+16; ++i) { +// EEPROM_WriteBuffer(i,&A[i-MDC_ADD[0]]); +// } while (1) { - APP_Update(); + + + + APP_Update(); if (gNextTimeslice) { diff --git a/payment/sponsors.md b/payment/sponsors.md index 19f94b2..7a2d573 100644 --- a/payment/sponsors.md +++ b/payment/sponsors.md @@ -16,21 +16,22 @@ ### 收款码 -| 赞助商 | 渠道 | 金额 | 时间 | -|-----------|-------|-------:|------------| -| 忠 | 微信打赏 | ¥20.00 | 2023-11-19 | -| BG6SNG | 支付宝打赏 | ¥10.00 | 2023-11-20 | -| 江璐璐 | 支付宝打赏 | ¥10.00 | 2023-11-21 | -| 济南黄河业余无线电 | 微信打赏 | ¥25.00 | 2023-11-22 | -| DE.BG9JAQ | 微信打赏 | ¥9.99 | 2023-11-22 | -| 井之水 | 微信打赏 | ¥9.90 | 2023-11-22 | -| 姜先生 | 微信打赏 | ¥66.61 | 2023-11-28 | -| Hui-Shao | 支付宝打赏 | ¥10.00 | 2023-11-29 | -| BI1OWT | 支付宝打赏 | ¥10.00 | 2023-12-01 | -| 蛋 | 微信打赏 | ¥6.66 | 2023-12-01 | -| J*n | 微信打赏 | ¥10.00 | 2023-12-04 | -| BG2FYX | 支付宝打赏 | ¥20.00 | 2023-12-06 | -| 井之水 | 微信打赏 | ¥9.90 | 2023-12-08 | +| 赞助商 | 渠道 | 金额 | 时间 | +|-----------|-------|------------:|------------| +| 忠 | 微信打赏 | ¥20.00 | 2023-11-19 | +| BG6SNG | 支付宝打赏 | ¥10.00 | 2023-11-20 | +| 江璐璐 | 支付宝打赏 | ¥10.00 | 2023-11-21 | +| 济南黄河业余无线电 | 微信打赏 | ¥25.00 | 2023-11-22 | +| DE.BG9JAQ | 微信打赏 | ¥9.99 | 2023-11-22 | +| 井之水 | 微信打赏 | ¥9.90 | 2023-11-22 | +| 姜先生 | 微信打赏 | ¥66.61 | 2023-11-28 | +| Hui-Shao | 支付宝打赏 | ¥10.00 | 2023-11-29 | +| BI1OWT | 支付宝打赏 | ¥10.00 | 2023-12-01 | +| 蛋 | 微信打赏 | ¥6.66 | 2023-12-01 | +| J*n | 微信打赏 | ¥10.00 | 2023-12-04 | +| BG2FYX | 支付宝打赏 | ¥20.00 | 2023-12-06 | +| 井之水 | 微信打赏 | ¥9.90 | 2023-12-08 | +| BA7LFZ | 微信打赏 | **¥100.00** | 2023-12-09 | diff --git a/ui/main.c b/ui/main.c index eddbfb3..4bc8cb4 100644 --- a/ui/main.c +++ b/ui/main.c @@ -732,54 +732,63 @@ void UI_DisplayMain(void) { const bool rx = FUNCTION_IsRx(); #ifdef ENABLE_MDC1200 - if (mdc1200_rx_ready_tick_500ms > 0) - { + if (mdc1200_rx_ready_tick_500ms > 0) { + char mdc1200_contact[14]; center_line = CENTER_LINE_MDC1200; -#ifdef ENABLE_MDC1200_SHOW_OP_ARG - sprintf(String, "MDC1200 %02X %02X %04X", mdc1200_op, mdc1200_arg, mdc1200_unit_id); -#else - sprintf(String, "MDC1200 ID %04X", mdc1200_unit_id); -#endif -#ifdef ENABLE_SMALL_BOLD - UI_PrintStringSmallBold(String, 2, 0, 3); -#else - UI_PrintStringSmall(String, 2, 0, 3); -#endif - } - else + uint8_t print_col = 0; + if (mdc1200_contact_find(mdc1200_unit_id, mdc1200_contact))// + { + + memcpy(String, mdc1200_contact, 14); + String[14] = 0; + print_col = 29; + } else { + sprintf(String, "ID %04X", mdc1200_unit_id); + print_col = 40; + } + +//#ifdef ENABLE_MDC1200_SHOW_OP_ARG +// sprintf(String, "MDC1200 %02X %02X %04X", mdc1200_op, mdc1200_arg, mdc1200_unit_id); +//#else +// sprintf(String, "MDC1200 ID %04X", mdc1200_unit_id); +//#endif + + UI_PrintStringSmallBold(String, print_col, 0, 3); + + } else #endif #ifdef ENABLE_AUDIO_BAR - if (gCurrentFunction == FUNCTION_TRANSMIT) { - center_line = CENTER_LINE_AUDIO_BAR; - UI_DisplayAudioBar(); - } - else + if (gCurrentFunction == FUNCTION_TRANSMIT) { + center_line = CENTER_LINE_AUDIO_BAR; + UI_DisplayAudioBar(); + } + else #endif #if defined(ENABLE_AM_FIX) && defined(ENABLE_AM_FIX_SHOW_DATA) - if (rx && gEeprom.VfoInfo[gEeprom.RX_VFO].Modulation == MODULATION_AM && gSetting_AM_fix) - { - if (gScreenToDisplay != DISPLAY_MAIN + if (rx && gEeprom.VfoInfo[gEeprom.RX_VFO].Modulation == MODULATION_AM && gSetting_AM_fix) + { + if (gScreenToDisplay != DISPLAY_MAIN #ifdef ENABLE_DTMF_CALLING - || gDTMF_CallState != DTMF_CALL_STATE_NONE + || gDTMF_CallState != DTMF_CALL_STATE_NONE #endif - ) - return; + ) + return; - center_line = CENTER_LINE_AM_FIX_DATA; - AM_fix_print_data(gEeprom.RX_VFO, String); - UI_PrintStringSmall(String, 2, 0, 3); - } - else + center_line = CENTER_LINE_AM_FIX_DATA; + AM_fix_print_data(gEeprom.RX_VFO, String); + UI_PrintStringSmall(String, 2, 0, 3); + } + else #endif #ifdef ENABLE_RSSI_BAR - if (rx) { - center_line = CENTER_LINE_RSSI; - DisplayRSSIBar(false); - } - else + if (rx) { + center_line = CENTER_LINE_RSSI; + DisplayRSSIBar(false); + } + else #endif if (rx || gCurrentFunction == FUNCTION_FOREGROUND || gCurrentFunction == FUNCTION_POWER_SAVE) { diff --git a/win_make.bat b/win_make.bat index 6e55461..4df713d 100644 --- a/win_make.bat +++ b/win_make.bat @@ -28,7 +28,7 @@ :: Do the compile :: -make clean +::make clean make :: If you have python installed, you can create a 'packed' .bin from the compiled firmware.bin file. :: The Quansheng windows upload-to-radio program requires a 'packed' .bin file.