From ed07fe005c7beab234890cf35ebea44d8c0faf31 Mon Sep 17 00:00:00 2001 From: Andrew-Kochanov Date: Thu, 16 Oct 2025 01:34:07 +0300 Subject: [PATCH 01/16] =?UTF-8?q?=D0=9F=D1=80=D0=BE=D0=B4=D0=B2=D0=B8?= =?UTF-8?q?=D0=BD=D1=83=D1=82=D1=8B=D0=B9=20=D0=B1=D0=B0=D0=BB=D0=B0=D0=BD?= =?UTF-8?q?=D1=81=20=D1=81=D0=BA=D0=BE=D0=B1=D0=BE=D0=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- advancBalancStap.c | 88 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 88 insertions(+) create mode 100644 advancBalancStap.c diff --git a/advancBalancStap.c b/advancBalancStap.c new file mode 100644 index 0000000..1d579f8 --- /dev/null +++ b/advancBalancStap.c @@ -0,0 +1,88 @@ +#include +#include +#include + +void balance(char* str) +{ + // флаг для вложенности + bool flagEnclosure = true; + + // счетчик для () + int countParentheses = 0; + + // счетчик для {} + int countBraces = 0; + + // счетчик для [] + int countBrackets = 0; + + // флаг, чтобы проверять,что закрылась та скобка, которая последней открывалась + // каждому виду скобок дано значение от 1 до 3, если скобка открывается, флагу дается соответствующее значение + // когда скобка закрывается, проверяем что флаг минус значение флага для этой скобке равно нулю + // то есть закрывается та скобка, которая открывалась, иначе даем счетчику данного вида скобок отрицательное значение + int flagCloseStap = 0; + + // коэф для проверки вложености скобок во время пробежки по строке(если коэф меньше 0, вложенность нарушена) + // открывающая скобка имеет коэф +1 + // закрывающая скобка имеет коэф -1 + for (int i = 0; i < strlen(str); i++) { + switch (str[i]) { + case '(': + countParentheses++; + flagCloseStap = 1; + break; + case ')': + countParentheses--; + if (flagCloseStap - 1 != 0) { + countParentheses = -1; + } + + break; + case '{': + countBraces++; + flagCloseStap = 2; + break; + case '}': + countBraces--; + if (flagCloseStap - 2 != 0) { + countBraces = -1; + } + break; + case '[': + countBrackets++; + flagCloseStap = 3; + break; + case ']': + countBrackets--; + if (flagCloseStap - 3 != 0) { + countBrackets = -1; + } + break; + } + + // если где-то в строке не сохранялась вложенность скобок один из счетчиков стал равен -1 + // тогда при прибавлении 1, один из множителей станет равен нулю, соответственно все + // произведение станет равно нулю + if ((countParentheses + 1) * (countBraces + 1) * (countBrackets + 1) == 0) { + flagEnclosure = false; + break; + } + } + + // если после пробежки по строке коэф неравен 0, значит, количество открывающих и закрывающих скобок разное + if (countParentheses + countBraces + countBrackets == 0 && flagEnclosure) { + printf("Баланс есть\n"); + } else { + printf("Баланса нет\n"); + } +} + +int main(int argc, char** argv) +{ + char str[1000]; + printf("Введите строку: "); + fgets(str, sizeof(str), stdin); + balance(str); + + return 0; +} \ No newline at end of file From 8016d21806941185c8c87a3227a0d9b14dcc87c0 Mon Sep 17 00:00:00 2001 From: Andrew-Kochanov Date: Thu, 16 Oct 2025 13:31:45 +0300 Subject: [PATCH 02/16] =?UTF-8?q?=D0=A7=D1=83=D1=82=D1=8C=20=D0=BF=D0=B5?= =?UTF-8?q?=D1=80=D0=B5=D0=B4=D0=B5=D0=BB=D0=B0=D0=BB=20=D0=BF=D1=80=D0=BE?= =?UTF-8?q?=D0=B4=D0=B2=D0=B8=D0=BD=D1=83=D1=82=D1=8B=D0=B9=20=D0=B1=D0=B0?= =?UTF-8?q?=D0=BB=D0=B0=D0=BD=D1=81=20=D1=81=D0=BA=D0=BE=D0=B1=D0=BE=D0=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- advancBalancStap.c | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/advancBalancStap.c b/advancBalancStap.c index 1d579f8..5c00317 100644 --- a/advancBalancStap.c +++ b/advancBalancStap.c @@ -33,10 +33,10 @@ void balance(char* str) break; case ')': countParentheses--; - if (flagCloseStap - 1 != 0) { + if (flagCloseStap - 1 != 0 && flagCloseStap != 0) { countParentheses = -1; } - + flagCloseStap = 0; break; case '{': countBraces++; @@ -44,9 +44,10 @@ void balance(char* str) break; case '}': countBraces--; - if (flagCloseStap - 2 != 0) { + if (flagCloseStap - 2 != 0 && flagCloseStap != 0) { countBraces = -1; } + flagCloseStap = 0; break; case '[': countBrackets++; @@ -54,9 +55,10 @@ void balance(char* str) break; case ']': countBrackets--; - if (flagCloseStap - 3 != 0) { + if (flagCloseStap - 3 != 0 && flagCloseStap != 0) { countBrackets = -1; } + flagCloseStap = 0; break; } From 083b097a2bb14d60fde34916e1a7495132eeef9d Mon Sep 17 00:00:00 2001 From: Andrew-Kochanov Date: Wed, 22 Oct 2025 20:05:56 +0300 Subject: [PATCH 03/16] =?UTF-8?q?=D0=A0=D0=B5=D0=B0=D0=BB=D0=B8=D0=B7?= =?UTF-8?q?=D0=B0=D1=86=D0=B8=D1=8F=20=D1=81=D1=82=D0=B5=D0=BA=D0=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- stack.c | 76 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ stack.h | 9 +++++++ 2 files changed, 85 insertions(+) create mode 100644 stack.c create mode 100644 stack.h diff --git a/stack.c b/stack.c new file mode 100644 index 0000000..3e8720f --- /dev/null +++ b/stack.c @@ -0,0 +1,76 @@ +#include "stack.h" +#include +#include +// #include + + +struct StackNode { + // значение + char value; + // ссылка на следующую "ячейку" + struct StackNode* next; +}; + +// делаем ссулку на голову +struct Stack { + struct StackNode* head; +}; + +// создаем пустую тсруктуру с пустой ссылкой на нулевую голову +struct Stack* new(void) +{ + struct Stack* stack = calloc(1, sizeof(*stack)); + return stack; +} + +// положить элемент +void push(struct Stack* stack, char value) +{ + // выделяем память для нового стека + struct StackNode* node = (struct StackNode*)malloc(sizeof(struct StackNode)); + + // пихаем в него значение + node->value = value; + + // пихаем в него ссылку на предыдущий стек + node->next = stack->head; + + // делаем ссылку на этот же стек ссылкой на голову + stack->head = node; +} + +bool isEmpty(struct Stack* stack) +{ + return stack->head == NULL; +} + +char pop(struct Stack* stack) +{ + if (isEmpty(stack)){ + return '\0'; + } + // получаем ссылку на текущую голову(стек) + struct StackNode* oldNode = stack->head; + + // переприсваиваем ссылку головы на предыдущую от текущего стека + stack->head = oldNode->next; + + // вытаскиваем значение из текущего стека + char result = oldNode->value; + free(oldNode); + return result; +} + +char peek(struct Stack* stack) +{ + char result = stack->head->value; + return result; +} + +void deleteStack(struct Stack* stack) +{ + while (!isEmpty(stack)) { + pop(stack); + } + free(stack); +} diff --git a/stack.h b/stack.h new file mode 100644 index 0000000..cde3423 --- /dev/null +++ b/stack.h @@ -0,0 +1,9 @@ +#pragma once +#include + +typedef struct Stack Stack; + +Stack* new(void); +void push(Stack* stack, char value); +char pop(Stack* stack); +bool isEmpty(Stack* stack); \ No newline at end of file From 4cf30ef86922d043d503a99a936cc9a5b84a1c1c Mon Sep 17 00:00:00 2001 From: Andrew-Kochanov Date: Thu, 23 Oct 2025 10:05:42 +0300 Subject: [PATCH 04/16] =?UTF-8?q?=D0=94=D0=BE=D0=B1=D0=B0=D0=B2=D0=B8?= =?UTF-8?q?=D0=BB=20=D1=84=D1=83=D0=BD=D0=BA=D1=86=D0=B8=D1=8E=20peek?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- stack.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/stack.h b/stack.h index cde3423..93e5d37 100644 --- a/stack.h +++ b/stack.h @@ -6,4 +6,5 @@ typedef struct Stack Stack; Stack* new(void); void push(Stack* stack, char value); char pop(Stack* stack); -bool isEmpty(Stack* stack); \ No newline at end of file +bool isEmpty(Stack* stack); +char peek(struct Stack* stack); \ No newline at end of file From 76095409065b3e5105f027266b87d5c09aee2775 Mon Sep 17 00:00:00 2001 From: Andrew-Kochanov Date: Thu, 23 Oct 2025 10:09:53 +0300 Subject: [PATCH 05/16] =?UTF-8?q?=D0=94=D0=BE=D0=B1=D0=B0=D0=B2=D0=B8?= =?UTF-8?q?=D0=BB=20=D1=84=D1=83=D0=BD=D0=BA=D1=86=D0=B8=D1=8E=20peek?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- stack.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/stack.h b/stack.h index cde3423..93e5d37 100644 --- a/stack.h +++ b/stack.h @@ -6,4 +6,5 @@ typedef struct Stack Stack; Stack* new(void); void push(Stack* stack, char value); char pop(Stack* stack); -bool isEmpty(Stack* stack); \ No newline at end of file +bool isEmpty(Stack* stack); +char peek(struct Stack* stack); \ No newline at end of file From aeefeda76cb70955e6eb3b6f15b68ad4a06b63ca Mon Sep 17 00:00:00 2001 From: Andrew-Kochanov Date: Thu, 23 Oct 2025 22:07:55 +0300 Subject: [PATCH 06/16] =?UTF-8?q?=D0=A1=D0=BE=D1=80=D1=82=D0=B8=D1=80?= =?UTF-8?q?=D0=BE=D0=B2=D0=BE=D1=87=D0=BD=D0=B0=D1=8F=20=D1=81=D1=82=D0=B0?= =?UTF-8?q?=D0=BD=D1=86=D0=B8=D1=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- sortStation.c | 82 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 82 insertions(+) create mode 100644 sortStation.c diff --git a/sortStation.c b/sortStation.c new file mode 100644 index 0000000..fdabe87 --- /dev/null +++ b/sortStation.c @@ -0,0 +1,82 @@ +#include "stack.h" +#include +#include +#include +#include + +// переносит все операторы от ")" до "(" из стека в очередь по индексу ind +int moveBtwStap(struct Stack* stack, char* queue, int ind) +{ + int index = ind; + char operator = pop(stack); + while (operator != '(' && operator != '\0') { + index++; + // printf("%s\n", queue[ind]); + queue[index] = operator; + operator = pop(stack); + } + return index; +} + +char* postfNotation(char* str, int lenght) +{ + char* queue = (char*)malloc((lenght + 1) * sizeof(char)); + int indQueue = 0; + struct Stack* operators = new(); + + for (int ind = 0; ind < lenght; ind++) { + if (str[ind] == '-' || str[ind] == ')' || str[ind] == '+' || str[ind] == '*' || str[ind] == '/') { + if (str[ind] == ')') { + indQueue = moveBtwStap(operators, queue, indQueue); + } else { + if (str[ind] == '*' || str[ind] == '/') { + while (!isEmpty(operators) && (peek(operators) == '*' || peek(operators) == '/')) { + indQueue++; + queue[indQueue] = pop(operators); + } + push(operators, str[ind]); + } else if (str[ind] == '+' || str[ind] == '-') { + while (!isEmpty(operators) && (peek(operators) == '-' || peek(operators) == '+' || peek(operators) == '*' || peek(operators) == '/')) { + indQueue++; + queue[indQueue] = pop(operators); + } + push(operators, str[ind]); + } + } + } else if (str[ind] == '(') { + push(operators, str[ind]); + } else if (str[ind] != ' ' && str[ind] != '\n') { + indQueue++; + queue[indQueue] = str[ind]; + } + } + + while (!isEmpty(operators)) { + char operator = pop(operators); + if (operator != '(') { + indQueue++; + queue[indQueue] = operator; + } + } + indQueue++; + queue[indQueue] = '\0'; + deleteStack(operators); + return queue; +} + +int main(int argc, char** argv) +{ + char str[1000]; + printf("Введите строку: "); + fgets(str, sizeof(str), stdin); + int lenght = strlen(str); + + char* results = postfNotation(str, lenght); + for (int ind = 0; ind < lenght; ind++) { + printf("%c ", results[ind]); + } + printf("\n"); + free(results); + + return 0; +} \ No newline at end of file From 20ba75d76fbb59e56fc797589eacefafe6bc82e0 Mon Sep 17 00:00:00 2001 From: Andrew-Kochanov Date: Thu, 23 Oct 2025 22:12:06 +0300 Subject: [PATCH 07/16] =?UTF-8?q?=D0=94=D0=BE=D0=B1=D0=B0=D0=B2=D0=B8?= =?UTF-8?q?=D0=BB=20=D1=84=D1=83=D0=BD=D0=BA=D1=86=D0=B8=D1=8E=20deleteSta?= =?UTF-8?q?ck?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- stack.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/stack.h b/stack.h index 93e5d37..b2f0838 100644 --- a/stack.h +++ b/stack.h @@ -7,4 +7,5 @@ Stack* new(void); void push(Stack* stack, char value); char pop(Stack* stack); bool isEmpty(Stack* stack); -char peek(struct Stack* stack); \ No newline at end of file +char peek(struct Stack* stack); +void deleteStack(struct Stack* stack); \ No newline at end of file From 06228b904f387399ec2f5e32592468f0ce3f17cd Mon Sep 17 00:00:00 2001 From: Andrew-Kochanov Date: Thu, 23 Oct 2025 22:14:16 +0300 Subject: [PATCH 08/16] =?UTF-8?q?=D0=A3=D0=B4=D0=B0=D0=BB=D0=B8=D0=BB=20?= =?UTF-8?q?=D1=81=D1=82=D0=B0=D1=80=D1=83=D1=8E=20=D0=BF=D1=80=D0=BE=D0=B3?= =?UTF-8?q?=D1=80=D0=B0=D0=BC=D0=BC=D1=83=20=D0=BF=D1=80=D0=BE=D0=B4=D0=B2?= =?UTF-8?q?=D0=B8=D0=BD=D1=83=D1=82=D0=BE=D0=B3=D0=BE=20=D0=B1=D0=B0=D0=BB?= =?UTF-8?q?=D0=B0=D0=BD=D1=81=D0=B0=20=D1=81=D0=BA=D0=BE=D0=B1=D0=BE=D0=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- advancBalancStap.c | 90 ---------------------------------------------- 1 file changed, 90 deletions(-) delete mode 100644 advancBalancStap.c diff --git a/advancBalancStap.c b/advancBalancStap.c deleted file mode 100644 index 5c00317..0000000 --- a/advancBalancStap.c +++ /dev/null @@ -1,90 +0,0 @@ -#include -#include -#include - -void balance(char* str) -{ - // флаг для вложенности - bool flagEnclosure = true; - - // счетчик для () - int countParentheses = 0; - - // счетчик для {} - int countBraces = 0; - - // счетчик для [] - int countBrackets = 0; - - // флаг, чтобы проверять,что закрылась та скобка, которая последней открывалась - // каждому виду скобок дано значение от 1 до 3, если скобка открывается, флагу дается соответствующее значение - // когда скобка закрывается, проверяем что флаг минус значение флага для этой скобке равно нулю - // то есть закрывается та скобка, которая открывалась, иначе даем счетчику данного вида скобок отрицательное значение - int flagCloseStap = 0; - - // коэф для проверки вложености скобок во время пробежки по строке(если коэф меньше 0, вложенность нарушена) - // открывающая скобка имеет коэф +1 - // закрывающая скобка имеет коэф -1 - for (int i = 0; i < strlen(str); i++) { - switch (str[i]) { - case '(': - countParentheses++; - flagCloseStap = 1; - break; - case ')': - countParentheses--; - if (flagCloseStap - 1 != 0 && flagCloseStap != 0) { - countParentheses = -1; - } - flagCloseStap = 0; - break; - case '{': - countBraces++; - flagCloseStap = 2; - break; - case '}': - countBraces--; - if (flagCloseStap - 2 != 0 && flagCloseStap != 0) { - countBraces = -1; - } - flagCloseStap = 0; - break; - case '[': - countBrackets++; - flagCloseStap = 3; - break; - case ']': - countBrackets--; - if (flagCloseStap - 3 != 0 && flagCloseStap != 0) { - countBrackets = -1; - } - flagCloseStap = 0; - break; - } - - // если где-то в строке не сохранялась вложенность скобок один из счетчиков стал равен -1 - // тогда при прибавлении 1, один из множителей станет равен нулю, соответственно все - // произведение станет равно нулю - if ((countParentheses + 1) * (countBraces + 1) * (countBrackets + 1) == 0) { - flagEnclosure = false; - break; - } - } - - // если после пробежки по строке коэф неравен 0, значит, количество открывающих и закрывающих скобок разное - if (countParentheses + countBraces + countBrackets == 0 && flagEnclosure) { - printf("Баланс есть\n"); - } else { - printf("Баланса нет\n"); - } -} - -int main(int argc, char** argv) -{ - char str[1000]; - printf("Введите строку: "); - fgets(str, sizeof(str), stdin); - balance(str); - - return 0; -} \ No newline at end of file From ee371340101fd6c3b6af4a0db0d7cda5b6c9e991 Mon Sep 17 00:00:00 2001 From: Andrew-Kochanov Date: Thu, 23 Oct 2025 22:18:05 +0300 Subject: [PATCH 09/16] =?UTF-8?q?=D0=9F=D0=BE=D0=BC=D0=B5=D0=BD=D1=8F?= =?UTF-8?q?=D0=BB=20=D1=84=D0=B0=D0=B9=D0=BB=D1=8B=20=D0=B2=20=D0=B2=D0=B5?= =?UTF-8?q?=D1=82=D0=BA=D0=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- sortStation.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sortStation.c b/sortStation.c index fdabe87..077e818 100644 --- a/sortStation.c +++ b/sortStation.c @@ -77,6 +77,6 @@ int main(int argc, char** argv) } printf("\n"); free(results); - + return 0; } \ No newline at end of file From 03eea181290d8ef6ecc11ade115339cd351c70c2 Mon Sep 17 00:00:00 2001 From: Andrew-Kochanov Date: Thu, 23 Oct 2025 22:23:00 +0300 Subject: [PATCH 10/16] =?UTF-8?q?=D0=A3=D0=B4=D0=B0=D0=BB=D0=B8=D0=BB=20?= =?UTF-8?q?=D0=BF=D1=80=D0=BE=D0=B3=D1=80=D0=B0=D0=BC=D0=BC=D1=83=20=D1=81?= =?UTF-8?q?=D1=82=D0=B0=D1=80=D0=BE=D0=B3=D0=BE=20=D0=BF=D1=80=D0=BE=D0=B4?= =?UTF-8?q?=D0=B2=D0=B8=D0=BD=D1=83=D1=82=D0=BE=D0=B3=D0=BE=20=D0=B1=D0=B0?= =?UTF-8?q?=D0=BB=D0=B0=D0=BD=D1=81=D0=B0=20=D1=81=D0=BA=D0=BE=D0=B1=D0=BE?= =?UTF-8?q?=D0=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- advancBalancStap.c | 90 ---------------------------------------------- 1 file changed, 90 deletions(-) delete mode 100644 advancBalancStap.c diff --git a/advancBalancStap.c b/advancBalancStap.c deleted file mode 100644 index 5c00317..0000000 --- a/advancBalancStap.c +++ /dev/null @@ -1,90 +0,0 @@ -#include -#include -#include - -void balance(char* str) -{ - // флаг для вложенности - bool flagEnclosure = true; - - // счетчик для () - int countParentheses = 0; - - // счетчик для {} - int countBraces = 0; - - // счетчик для [] - int countBrackets = 0; - - // флаг, чтобы проверять,что закрылась та скобка, которая последней открывалась - // каждому виду скобок дано значение от 1 до 3, если скобка открывается, флагу дается соответствующее значение - // когда скобка закрывается, проверяем что флаг минус значение флага для этой скобке равно нулю - // то есть закрывается та скобка, которая открывалась, иначе даем счетчику данного вида скобок отрицательное значение - int flagCloseStap = 0; - - // коэф для проверки вложености скобок во время пробежки по строке(если коэф меньше 0, вложенность нарушена) - // открывающая скобка имеет коэф +1 - // закрывающая скобка имеет коэф -1 - for (int i = 0; i < strlen(str); i++) { - switch (str[i]) { - case '(': - countParentheses++; - flagCloseStap = 1; - break; - case ')': - countParentheses--; - if (flagCloseStap - 1 != 0 && flagCloseStap != 0) { - countParentheses = -1; - } - flagCloseStap = 0; - break; - case '{': - countBraces++; - flagCloseStap = 2; - break; - case '}': - countBraces--; - if (flagCloseStap - 2 != 0 && flagCloseStap != 0) { - countBraces = -1; - } - flagCloseStap = 0; - break; - case '[': - countBrackets++; - flagCloseStap = 3; - break; - case ']': - countBrackets--; - if (flagCloseStap - 3 != 0 && flagCloseStap != 0) { - countBrackets = -1; - } - flagCloseStap = 0; - break; - } - - // если где-то в строке не сохранялась вложенность скобок один из счетчиков стал равен -1 - // тогда при прибавлении 1, один из множителей станет равен нулю, соответственно все - // произведение станет равно нулю - if ((countParentheses + 1) * (countBraces + 1) * (countBrackets + 1) == 0) { - flagEnclosure = false; - break; - } - } - - // если после пробежки по строке коэф неравен 0, значит, количество открывающих и закрывающих скобок разное - if (countParentheses + countBraces + countBrackets == 0 && flagEnclosure) { - printf("Баланс есть\n"); - } else { - printf("Баланса нет\n"); - } -} - -int main(int argc, char** argv) -{ - char str[1000]; - printf("Введите строку: "); - fgets(str, sizeof(str), stdin); - balance(str); - - return 0; -} \ No newline at end of file From 4831ff06624eb59f045013c0153c0fc8b947fa63 Mon Sep 17 00:00:00 2001 From: Andrew-Kochanov Date: Thu, 23 Oct 2025 22:59:51 +0300 Subject: [PATCH 11/16] =?UTF-8?q?=D0=94=D0=BE=D0=B1=D0=B0=D0=B2=D0=B8?= =?UTF-8?q?=D0=BB=20=D0=B2=20stack.h=20=D1=84=D1=83=D0=BD=D0=BA=D1=86?= =?UTF-8?q?=D0=B8=D1=8E=20deleteStack?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- stack.h | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 stack.h diff --git a/stack.h b/stack.h new file mode 100644 index 0000000..cde3aab --- /dev/null +++ b/stack.h @@ -0,0 +1,11 @@ +#pragma once +#include + +typedef struct Stack Stack; + +Stack* new(void); +void push(Stack* stack, char value); +char pop(Stack* stack); +bool isEmpty(Stack* stack); +char peek(struct Stack* stack); +void deleteStack(struct Stack* stack); From 00ebe9944caf1adddabfa52630db8b89e7b265dd Mon Sep 17 00:00:00 2001 From: Andrew-Kochanov Date: Mon, 10 Nov 2025 22:32:51 +0300 Subject: [PATCH 12/16] CMakeLists.txt --- CMakeLists.txt | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 CMakeLists.txt diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..ead3c7c --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,17 @@ +cmake_minimum_required(VERSION 3.25) + +project(advancBalancStap C) + +add_library(stack stack.c) + +add_executable(advancBalancStap advancBalancStap.c) + +target_link_libraries(advancBalancStap PRIVATE stack) + +project(sortStation C) + +add_library(stack stack.c) + +add_executable(sortStation sortStation.c) + +target_link_libraries(sortStation PRIVATE stack) \ No newline at end of file From 5f9a537db05dd3293de4917c5b46f26933de67b6 Mon Sep 17 00:00:00 2001 From: Andrew-Kochanov Date: Mon, 10 Nov 2025 22:37:40 +0300 Subject: [PATCH 13/16] =?UTF-8?q?=D0=9F=D0=B0=D0=BF=D0=BA=D0=B0=20build?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- build/CMakeCache.txt | 366 +++++++ build/CMakeFiles/4.1.1/CMakeCCompiler.cmake | 84 ++ .../4.1.1/CMakeDetermineCompilerABI_C.bin | Bin 0 -> 15472 bytes build/CMakeFiles/4.1.1/CMakeSystem.cmake | 15 + .../4.1.1/CompilerIdC/CMakeCCompilerId.c | 934 +++++++++++++++++ build/CMakeFiles/4.1.1/CompilerIdC/a.out | Bin 0 -> 15536 bytes build/CMakeFiles/CMakeConfigureLog.yaml | 937 ++++++++++++++++++ .../CMakeDirectoryInformation.cmake | 16 + build/CMakeFiles/InstallScripts.json | 7 + build/CMakeFiles/Makefile.cmake | 52 + build/CMakeFiles/Makefile2 | 157 +++ build/CMakeFiles/TargetDirectories.txt | 4 + .../advancBalancStap.dir/DependInfo.cmake | 24 + .../advancBalancStap.dir/advancBalancStap.c.o | Bin 0 -> 2872 bytes .../advancBalancStap.c.o.d | 37 + .../advancBalancStap.dir/build.make | 115 +++ .../advancBalancStap.dir/cmake_clean.cmake | 12 + .../advancBalancStap.dir/compiler_depend.make | 2 + .../advancBalancStap.dir/compiler_depend.ts | 2 + .../advancBalancStap.dir/depend.make | 2 + .../advancBalancStap.dir/flags.make | 10 + build/CMakeFiles/advancBalancStap.dir/link.d | 79 ++ .../CMakeFiles/advancBalancStap.dir/link.txt | 1 + .../advancBalancStap.dir/progress.make | 3 + build/CMakeFiles/cmake.check_cache | 1 + build/CMakeFiles/progress.marks | 1 + .../sortStation.dir/DependInfo.cmake | 24 + build/CMakeFiles/sortStation.dir/build.make | 115 +++ .../sortStation.dir/cmake_clean.cmake | 12 + .../sortStation.dir/compiler_depend.make | 2 + .../sortStation.dir/compiler_depend.ts | 2 + build/CMakeFiles/sortStation.dir/depend.make | 2 + build/CMakeFiles/sortStation.dir/flags.make | 10 + build/CMakeFiles/sortStation.dir/link.d | 79 ++ build/CMakeFiles/sortStation.dir/link.txt | 1 + .../CMakeFiles/sortStation.dir/progress.make | 3 + .../sortStation.dir/sortStation.c.o | Bin 0 -> 4016 bytes .../sortStation.dir/sortStation.c.o.d | 37 + build/CMakeFiles/stack.dir/DependInfo.cmake | 23 + build/CMakeFiles/stack.dir/build.make | 114 +++ build/CMakeFiles/stack.dir/cmake_clean.cmake | 11 + .../stack.dir/cmake_clean_target.cmake | 3 + .../stack.dir/compiler_depend.internal | 62 ++ .../CMakeFiles/stack.dir/compiler_depend.make | 175 ++++ build/CMakeFiles/stack.dir/compiler_depend.ts | 2 + build/CMakeFiles/stack.dir/depend.make | 2 + build/CMakeFiles/stack.dir/flags.make | 10 + build/CMakeFiles/stack.dir/link.txt | 2 + build/CMakeFiles/stack.dir/progress.make | 3 + build/CMakeFiles/stack.dir/stack.c.o | Bin 0 -> 2280 bytes build/CMakeFiles/stack.dir/stack.c.o.d | 34 + build/Makefile | 222 +++++ build/advancBalancStap | Bin 0 -> 16080 bytes build/cmake_install.cmake | 66 ++ build/libstack.a | Bin 0 -> 2474 bytes build/sortStation | Bin 0 -> 16120 bytes 56 files changed, 3877 insertions(+) create mode 100644 build/CMakeCache.txt create mode 100644 build/CMakeFiles/4.1.1/CMakeCCompiler.cmake create mode 100755 build/CMakeFiles/4.1.1/CMakeDetermineCompilerABI_C.bin create mode 100644 build/CMakeFiles/4.1.1/CMakeSystem.cmake create mode 100644 build/CMakeFiles/4.1.1/CompilerIdC/CMakeCCompilerId.c create mode 100755 build/CMakeFiles/4.1.1/CompilerIdC/a.out create mode 100644 build/CMakeFiles/CMakeConfigureLog.yaml create mode 100644 build/CMakeFiles/CMakeDirectoryInformation.cmake create mode 100644 build/CMakeFiles/InstallScripts.json create mode 100644 build/CMakeFiles/Makefile.cmake create mode 100644 build/CMakeFiles/Makefile2 create mode 100644 build/CMakeFiles/TargetDirectories.txt create mode 100644 build/CMakeFiles/advancBalancStap.dir/DependInfo.cmake create mode 100644 build/CMakeFiles/advancBalancStap.dir/advancBalancStap.c.o create mode 100644 build/CMakeFiles/advancBalancStap.dir/advancBalancStap.c.o.d create mode 100644 build/CMakeFiles/advancBalancStap.dir/build.make create mode 100644 build/CMakeFiles/advancBalancStap.dir/cmake_clean.cmake create mode 100644 build/CMakeFiles/advancBalancStap.dir/compiler_depend.make create mode 100644 build/CMakeFiles/advancBalancStap.dir/compiler_depend.ts create mode 100644 build/CMakeFiles/advancBalancStap.dir/depend.make create mode 100644 build/CMakeFiles/advancBalancStap.dir/flags.make create mode 100644 build/CMakeFiles/advancBalancStap.dir/link.d create mode 100644 build/CMakeFiles/advancBalancStap.dir/link.txt create mode 100644 build/CMakeFiles/advancBalancStap.dir/progress.make create mode 100644 build/CMakeFiles/cmake.check_cache create mode 100644 build/CMakeFiles/progress.marks create mode 100644 build/CMakeFiles/sortStation.dir/DependInfo.cmake create mode 100644 build/CMakeFiles/sortStation.dir/build.make create mode 100644 build/CMakeFiles/sortStation.dir/cmake_clean.cmake create mode 100644 build/CMakeFiles/sortStation.dir/compiler_depend.make create mode 100644 build/CMakeFiles/sortStation.dir/compiler_depend.ts create mode 100644 build/CMakeFiles/sortStation.dir/depend.make create mode 100644 build/CMakeFiles/sortStation.dir/flags.make create mode 100644 build/CMakeFiles/sortStation.dir/link.d create mode 100644 build/CMakeFiles/sortStation.dir/link.txt create mode 100644 build/CMakeFiles/sortStation.dir/progress.make create mode 100644 build/CMakeFiles/sortStation.dir/sortStation.c.o create mode 100644 build/CMakeFiles/sortStation.dir/sortStation.c.o.d create mode 100644 build/CMakeFiles/stack.dir/DependInfo.cmake create mode 100644 build/CMakeFiles/stack.dir/build.make create mode 100644 build/CMakeFiles/stack.dir/cmake_clean.cmake create mode 100644 build/CMakeFiles/stack.dir/cmake_clean_target.cmake create mode 100644 build/CMakeFiles/stack.dir/compiler_depend.internal create mode 100644 build/CMakeFiles/stack.dir/compiler_depend.make create mode 100644 build/CMakeFiles/stack.dir/compiler_depend.ts create mode 100644 build/CMakeFiles/stack.dir/depend.make create mode 100644 build/CMakeFiles/stack.dir/flags.make create mode 100644 build/CMakeFiles/stack.dir/link.txt create mode 100644 build/CMakeFiles/stack.dir/progress.make create mode 100644 build/CMakeFiles/stack.dir/stack.c.o create mode 100644 build/CMakeFiles/stack.dir/stack.c.o.d create mode 100644 build/Makefile create mode 100755 build/advancBalancStap create mode 100644 build/cmake_install.cmake create mode 100644 build/libstack.a create mode 100755 build/sortStation diff --git a/build/CMakeCache.txt b/build/CMakeCache.txt new file mode 100644 index 0000000..c09ee65 --- /dev/null +++ b/build/CMakeCache.txt @@ -0,0 +1,366 @@ +# This is the CMakeCache file. +# For build in directory: /home/andrew/src2/build +# It was generated by CMake: /usr/bin/cmake +# You can edit this file to change values found and used by cmake. +# If you do not want to change any of the values, simply exit the editor. +# If you do want to change a value, simply edit, save, and exit the editor. +# The syntax for the file is as follows: +# KEY:TYPE=VALUE +# KEY is the name of a variable in the cache. +# TYPE is a hint to GUIs for the type of VALUE, DO NOT EDIT TYPE!. +# VALUE is the current value for the KEY. + +######################## +# EXTERNAL cache entries +######################## + +//Path to a program. +CMAKE_ADDR2LINE:FILEPATH=/usr/bin/addr2line + +//Path to a program. +CMAKE_AR:FILEPATH=/usr/bin/ar + +//Choose the type of build, options are: None Debug Release RelWithDebInfo +// MinSizeRel ... +CMAKE_BUILD_TYPE:STRING= + +//Enable/Disable color output during build. +CMAKE_COLOR_MAKEFILE:BOOL=ON + +//C compiler +CMAKE_C_COMPILER:FILEPATH=/usr/bin/cc + +//A wrapper around 'ar' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_C_COMPILER_AR:FILEPATH=/usr/bin/gcc-ar + +//A wrapper around 'ranlib' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_C_COMPILER_RANLIB:FILEPATH=/usr/bin/gcc-ranlib + +//Flags used by the C compiler during all build types. +CMAKE_C_FLAGS:STRING= + +//Flags used by the C compiler during DEBUG builds. +CMAKE_C_FLAGS_DEBUG:STRING=-g + +//Flags used by the C compiler during MINSIZEREL builds. +CMAKE_C_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG + +//Flags used by the C compiler during RELEASE builds. +CMAKE_C_FLAGS_RELEASE:STRING=-O3 -DNDEBUG + +//Flags used by the C compiler during RELWITHDEBINFO builds. +CMAKE_C_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG + +//Path to a program. +CMAKE_DLLTOOL:FILEPATH=CMAKE_DLLTOOL-NOTFOUND + +//Flags used by the linker during all build types. +CMAKE_EXE_LINKER_FLAGS:STRING= + +//Flags used by the linker during DEBUG builds. +CMAKE_EXE_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during MINSIZEREL builds. +CMAKE_EXE_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during RELEASE builds. +CMAKE_EXE_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during RELWITHDEBINFO builds. +CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//Enable/Disable output of compile commands during generation. +CMAKE_EXPORT_COMPILE_COMMANDS:BOOL= + +//Value Computed by CMake. +CMAKE_FIND_PACKAGE_REDIRECTS_DIR:STATIC=/home/andrew/src2/build/CMakeFiles/pkgRedirects + +//Install path prefix, prepended onto install directories. +CMAKE_INSTALL_PREFIX:PATH=/usr/local + +//Path to a program. +CMAKE_LINKER:FILEPATH=/usr/bin/ld + +//Path to a program. +CMAKE_MAKE_PROGRAM:FILEPATH=/usr/bin/make + +//Flags used by the linker during the creation of modules during +// all build types. +CMAKE_MODULE_LINKER_FLAGS:STRING= + +//Flags used by the linker during the creation of modules during +// DEBUG builds. +CMAKE_MODULE_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during the creation of modules during +// MINSIZEREL builds. +CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during the creation of modules during +// RELEASE builds. +CMAKE_MODULE_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during the creation of modules during +// RELWITHDEBINFO builds. +CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//Path to a program. +CMAKE_NM:FILEPATH=/usr/bin/nm + +//Path to a program. +CMAKE_OBJCOPY:FILEPATH=/usr/bin/objcopy + +//Path to a program. +CMAKE_OBJDUMP:FILEPATH=/usr/bin/objdump + +//Value Computed by CMake +CMAKE_PROJECT_COMPAT_VERSION:STATIC= + +//Value Computed by CMake +CMAKE_PROJECT_DESCRIPTION:STATIC= + +//Value Computed by CMake +CMAKE_PROJECT_HOMEPAGE_URL:STATIC= + +//Value Computed by CMake +CMAKE_PROJECT_NAME:STATIC=sortStation + +//Value Computed by CMake +CMAKE_PROJECT_VERSION:STATIC= + +//Value Computed by CMake +CMAKE_PROJECT_VERSION_MAJOR:STATIC= + +//Value Computed by CMake +CMAKE_PROJECT_VERSION_MINOR:STATIC= + +//Value Computed by CMake +CMAKE_PROJECT_VERSION_PATCH:STATIC= + +//Value Computed by CMake +CMAKE_PROJECT_VERSION_TWEAK:STATIC= + +//Path to a program. +CMAKE_RANLIB:FILEPATH=/usr/bin/ranlib + +//Path to a program. +CMAKE_READELF:FILEPATH=/usr/bin/readelf + +//Flags used by the linker during the creation of shared libraries +// during all build types. +CMAKE_SHARED_LINKER_FLAGS:STRING= + +//Flags used by the linker during the creation of shared libraries +// during DEBUG builds. +CMAKE_SHARED_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during the creation of shared libraries +// during MINSIZEREL builds. +CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during the creation of shared libraries +// during RELEASE builds. +CMAKE_SHARED_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during the creation of shared libraries +// during RELWITHDEBINFO builds. +CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//If set, runtime paths are not added when installing shared libraries, +// but are added when building. +CMAKE_SKIP_INSTALL_RPATH:BOOL=NO + +//If set, runtime paths are not added when using shared libraries. +CMAKE_SKIP_RPATH:BOOL=NO + +//Flags used by the archiver during the creation of static libraries +// during all build types. +CMAKE_STATIC_LINKER_FLAGS:STRING= + +//Flags used by the archiver during the creation of static libraries +// during DEBUG builds. +CMAKE_STATIC_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the archiver during the creation of static libraries +// during MINSIZEREL builds. +CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the archiver during the creation of static libraries +// during RELEASE builds. +CMAKE_STATIC_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the archiver during the creation of static libraries +// during RELWITHDEBINFO builds. +CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//Path to a program. +CMAKE_STRIP:FILEPATH=/usr/bin/strip + +//Path to a program. +CMAKE_TAPI:FILEPATH=CMAKE_TAPI-NOTFOUND + +//If this value is on, makefiles will be generated without the +// .SILENT directive, and all commands will be echoed to the console +// during the make. This is useful for debugging only. With Visual +// Studio IDE projects all commands are done without /nologo. +CMAKE_VERBOSE_MAKEFILE:BOOL=FALSE + +//Value Computed by CMake +advancBalancStap_BINARY_DIR:STATIC=/home/andrew/src2/build + +//Value Computed by CMake +advancBalancStap_IS_TOP_LEVEL:STATIC=ON + +//Value Computed by CMake +advancBalancStap_SOURCE_DIR:STATIC=/home/andrew/src2 + +//Value Computed by CMake +sortStation_BINARY_DIR:STATIC=/home/andrew/src2/build + +//Value Computed by CMake +sortStation_IS_TOP_LEVEL:STATIC=ON + +//Value Computed by CMake +sortStation_SOURCE_DIR:STATIC=/home/andrew/src2 + + +######################## +# INTERNAL cache entries +######################## + +//ADVANCED property for variable: CMAKE_ADDR2LINE +CMAKE_ADDR2LINE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_AR +CMAKE_AR-ADVANCED:INTERNAL=1 +//This is the directory where this CMakeCache.txt was created +CMAKE_CACHEFILE_DIR:INTERNAL=/home/andrew/src2/build +//Major version of cmake used to create the current loaded cache +CMAKE_CACHE_MAJOR_VERSION:INTERNAL=4 +//Minor version of cmake used to create the current loaded cache +CMAKE_CACHE_MINOR_VERSION:INTERNAL=1 +//Patch version of cmake used to create the current loaded cache +CMAKE_CACHE_PATCH_VERSION:INTERNAL=1 +//ADVANCED property for variable: CMAKE_COLOR_MAKEFILE +CMAKE_COLOR_MAKEFILE-ADVANCED:INTERNAL=1 +//Path to CMake executable. +CMAKE_COMMAND:INTERNAL=/usr/bin/cmake +//Path to cpack program executable. +CMAKE_CPACK_COMMAND:INTERNAL=/usr/bin/cpack +//Path to ctest program executable. +CMAKE_CTEST_COMMAND:INTERNAL=/usr/bin/ctest +//ADVANCED property for variable: CMAKE_C_COMPILER +CMAKE_C_COMPILER-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_COMPILER_AR +CMAKE_C_COMPILER_AR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_COMPILER_RANLIB +CMAKE_C_COMPILER_RANLIB-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS +CMAKE_C_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS_DEBUG +CMAKE_C_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS_MINSIZEREL +CMAKE_C_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS_RELEASE +CMAKE_C_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS_RELWITHDEBINFO +CMAKE_C_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_DLLTOOL +CMAKE_DLLTOOL-ADVANCED:INTERNAL=1 +//Path to cache edit program executable. +CMAKE_EDIT_COMMAND:INTERNAL=/usr/bin/ccmake +//Executable file format +CMAKE_EXECUTABLE_FORMAT:INTERNAL=ELF +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS +CMAKE_EXE_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_DEBUG +CMAKE_EXE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_MINSIZEREL +CMAKE_EXE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELEASE +CMAKE_EXE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXPORT_COMPILE_COMMANDS +CMAKE_EXPORT_COMPILE_COMMANDS-ADVANCED:INTERNAL=1 +//Name of external makefile project generator. +CMAKE_EXTRA_GENERATOR:INTERNAL= +//Name of generator. +CMAKE_GENERATOR:INTERNAL=Unix Makefiles +//Generator instance identifier. +CMAKE_GENERATOR_INSTANCE:INTERNAL= +//Name of generator platform. +CMAKE_GENERATOR_PLATFORM:INTERNAL= +//Name of generator toolset. +CMAKE_GENERATOR_TOOLSET:INTERNAL= +//Source directory with the top level CMakeLists.txt file for this +// project +CMAKE_HOME_DIRECTORY:INTERNAL=/home/andrew/src2 +//Install .so files without execute permission. +CMAKE_INSTALL_SO_NO_EXE:INTERNAL=0 +//ADVANCED property for variable: CMAKE_LINKER +CMAKE_LINKER-ADVANCED:INTERNAL=1 +//Name of CMakeLists files to read +CMAKE_LIST_FILE_NAME:INTERNAL=CMakeLists.txt +//ADVANCED property for variable: CMAKE_MAKE_PROGRAM +CMAKE_MAKE_PROGRAM-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS +CMAKE_MODULE_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_DEBUG +CMAKE_MODULE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL +CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELEASE +CMAKE_MODULE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_NM +CMAKE_NM-ADVANCED:INTERNAL=1 +//number of local generators +CMAKE_NUMBER_OF_MAKEFILES:INTERNAL=1 +//ADVANCED property for variable: CMAKE_OBJCOPY +CMAKE_OBJCOPY-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_OBJDUMP +CMAKE_OBJDUMP-ADVANCED:INTERNAL=1 +//Platform information initialized +CMAKE_PLATFORM_INFO_INITIALIZED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_RANLIB +CMAKE_RANLIB-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_READELF +CMAKE_READELF-ADVANCED:INTERNAL=1 +//Path to CMake installation. +CMAKE_ROOT:INTERNAL=/usr/share/cmake +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS +CMAKE_SHARED_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_DEBUG +CMAKE_SHARED_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL +CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELEASE +CMAKE_SHARED_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SKIP_INSTALL_RPATH +CMAKE_SKIP_INSTALL_RPATH-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SKIP_RPATH +CMAKE_SKIP_RPATH-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS +CMAKE_STATIC_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_DEBUG +CMAKE_STATIC_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL +CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELEASE +CMAKE_STATIC_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STRIP +CMAKE_STRIP-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_TAPI +CMAKE_TAPI-ADVANCED:INTERNAL=1 +//uname command +CMAKE_UNAME:INTERNAL=/usr/bin/uname +//ADVANCED property for variable: CMAKE_VERBOSE_MAKEFILE +CMAKE_VERBOSE_MAKEFILE-ADVANCED:INTERNAL=1 + diff --git a/build/CMakeFiles/4.1.1/CMakeCCompiler.cmake b/build/CMakeFiles/4.1.1/CMakeCCompiler.cmake new file mode 100644 index 0000000..6d26591 --- /dev/null +++ b/build/CMakeFiles/4.1.1/CMakeCCompiler.cmake @@ -0,0 +1,84 @@ +set(CMAKE_C_COMPILER "/usr/bin/cc") +set(CMAKE_C_COMPILER_ARG1 "") +set(CMAKE_C_COMPILER_ID "GNU") +set(CMAKE_C_COMPILER_VERSION "15.2.1") +set(CMAKE_C_COMPILER_VERSION_INTERNAL "") +set(CMAKE_C_COMPILER_WRAPPER "") +set(CMAKE_C_STANDARD_COMPUTED_DEFAULT "23") +set(CMAKE_C_EXTENSIONS_COMPUTED_DEFAULT "ON") +set(CMAKE_C_STANDARD_LATEST "23") +set(CMAKE_C_COMPILE_FEATURES "c_std_90;c_function_prototypes;c_std_99;c_restrict;c_variadic_macros;c_std_11;c_static_assert;c_std_17;c_std_23") +set(CMAKE_C90_COMPILE_FEATURES "c_std_90;c_function_prototypes") +set(CMAKE_C99_COMPILE_FEATURES "c_std_99;c_restrict;c_variadic_macros") +set(CMAKE_C11_COMPILE_FEATURES "c_std_11;c_static_assert") +set(CMAKE_C17_COMPILE_FEATURES "c_std_17") +set(CMAKE_C23_COMPILE_FEATURES "c_std_23") + +set(CMAKE_C_PLATFORM_ID "Linux") +set(CMAKE_C_SIMULATE_ID "") +set(CMAKE_C_COMPILER_FRONTEND_VARIANT "GNU") +set(CMAKE_C_COMPILER_APPLE_SYSROOT "") +set(CMAKE_C_SIMULATE_VERSION "") +set(CMAKE_C_COMPILER_ARCHITECTURE_ID "x86_64") + + + +set(CMAKE_AR "/usr/bin/ar") +set(CMAKE_C_COMPILER_AR "/usr/bin/gcc-ar") +set(CMAKE_RANLIB "/usr/bin/ranlib") +set(CMAKE_C_COMPILER_RANLIB "/usr/bin/gcc-ranlib") +set(CMAKE_LINKER "/usr/bin/ld") +set(CMAKE_LINKER_LINK "") +set(CMAKE_LINKER_LLD "") +set(CMAKE_C_COMPILER_LINKER "/usr/bin/ld") +set(CMAKE_C_COMPILER_LINKER_ID "GNU") +set(CMAKE_C_COMPILER_LINKER_VERSION 2.45.0) +set(CMAKE_C_COMPILER_LINKER_FRONTEND_VARIANT GNU) +set(CMAKE_MT "") +set(CMAKE_TAPI "CMAKE_TAPI-NOTFOUND") +set(CMAKE_COMPILER_IS_GNUCC 1) +set(CMAKE_C_COMPILER_LOADED 1) +set(CMAKE_C_COMPILER_WORKS TRUE) +set(CMAKE_C_ABI_COMPILED TRUE) + +set(CMAKE_C_COMPILER_ENV_VAR "CC") + +set(CMAKE_C_COMPILER_ID_RUN 1) +set(CMAKE_C_SOURCE_FILE_EXTENSIONS c;m) +set(CMAKE_C_IGNORE_EXTENSIONS h;H;o;O;obj;OBJ;def;DEF;rc;RC) +set(CMAKE_C_LINKER_PREFERENCE 10) +set(CMAKE_C_LINKER_DEPFILE_SUPPORTED TRUE) +set(CMAKE_LINKER_PUSHPOP_STATE_SUPPORTED TRUE) +set(CMAKE_C_LINKER_PUSHPOP_STATE_SUPPORTED TRUE) + +# Save compiler ABI information. +set(CMAKE_C_SIZEOF_DATA_PTR "8") +set(CMAKE_C_COMPILER_ABI "ELF") +set(CMAKE_C_BYTE_ORDER "LITTLE_ENDIAN") +set(CMAKE_C_LIBRARY_ARCHITECTURE "") + +if(CMAKE_C_SIZEOF_DATA_PTR) + set(CMAKE_SIZEOF_VOID_P "${CMAKE_C_SIZEOF_DATA_PTR}") +endif() + +if(CMAKE_C_COMPILER_ABI) + set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_C_COMPILER_ABI}") +endif() + +if(CMAKE_C_LIBRARY_ARCHITECTURE) + set(CMAKE_LIBRARY_ARCHITECTURE "") +endif() + +set(CMAKE_C_CL_SHOWINCLUDES_PREFIX "") +if(CMAKE_C_CL_SHOWINCLUDES_PREFIX) + set(CMAKE_CL_SHOWINCLUDES_PREFIX "${CMAKE_C_CL_SHOWINCLUDES_PREFIX}") +endif() + + + + + +set(CMAKE_C_IMPLICIT_INCLUDE_DIRECTORIES "/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include;/usr/local/include;/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include-fixed;/usr/include") +set(CMAKE_C_IMPLICIT_LINK_LIBRARIES "gcc;gcc_s;c;gcc;gcc_s") +set(CMAKE_C_IMPLICIT_LINK_DIRECTORIES "/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1;/usr/lib;/lib") +set(CMAKE_C_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "") diff --git a/build/CMakeFiles/4.1.1/CMakeDetermineCompilerABI_C.bin b/build/CMakeFiles/4.1.1/CMakeDetermineCompilerABI_C.bin new file mode 100755 index 0000000000000000000000000000000000000000..4223d3d5614626ec702fed2cc9a50676b4a3a2f0 GIT binary patch literal 15472 zcmeHOYit}>6~4Q9xoHw_lQ_6d)J&tQq*A@H9osTNY1dw_JuCSU5(iXS&M@|l?Sb{K zH9JOeQ58!msK%tENuTCrp#v?e8nsaEL_q*S}wN6RDX zu-ZxT_CTlYDGg-REwODQ)`*_f%zH!ZVLT#!Kt#yMyscV02Sg31WIdR-gAF2w@kcTN z5cbM^29v27!Loua!UI?8r~kZ)&#Fa^1@@SVZII(3 zImjvb^X6dwyBB`<=_A*^JA13^SNR_#Uhn(iv)<~7ygSm?aw4B=$h(EIuNwRB-^4RbI%5;PwS~U0h5i8Pk8LuJvMgGgQLE(Jo^MUsZh>1b_NKh>^_kVt<%^#C?Fb%2T3y8<7vA-rB z()xNiexYBK0c%p)4n5>VNIz?6zxt5=CDAWFqwTzpS8wxQRO$Jgg0@tpmqR`<{iaHf zV}}jPRr=ukiGd=FG7x1T%0QHXC<9Rjq6|bC_(*2pueFc<%e;KM#+=`A?SxY1mlpka zdC9!|vzqI{`mnv}PuaP5E|_zFFfYHia%M2owAggRymI=t!>w@I}oxs2K6^19*%()fw+Mk~>udQw~V{e=9 ztoa9NfCd?$ro22>d$env&+*NkK2K&fee%3{`Sfn?nse{_d(HXNPmoZqTczL9H%H6m z^4mL}B1LTY`g*(+M@o&Y%RJt#aq>M+W6V8&+nk$T{(0suhdiITZGPLlQg>^gQnhbx zPt^WoF_yV2+Jn5xci8gQ_IT}EVao>_EarUOHz+1ejV;x_sq|Q+e_=EIeCF;jZH~&e zs%#w&D{4^&q6|bCh%yjmAj&|LfhYq}2BHi^8Hh3vW#Gdz!0);4*RuWH1E) a>pRpXT=;VgHY^T-JpUHOhcc{QG;E&Asj#c#N9oIVq<7L)&>`Qz(p5D7N{#9bK zLciB$XMUf??_jy{JF)8bVu3PRL>Y)O5M?0BK$L+f15pN|3`7}-G7x3pBb))$Euu~l zHHBOY$!(8@N@3()kzbd3$A?8mJ>+4LQRn!G$f%3t-(%ch|6r|LWO+%76H#+GD?h%t z&XL=S*mrADy(svgV7*|SAYhktOc@ySu85wBJc9=QzsouvQUEFXG9;aizW4@^V)&`0Ts@} z=a@iWGb|WEr?PmSdNEa}Zc6kKg_R`FkbZxBcjdfPaY^^tpLf#f;^dT@cf5|yY;sh&g|VWw{!q#qamOvEkaO+A zJ*K?t`*~-Bm7Z2zs8huY& zzTkKzw^-O9SY-2@yv+n2hr&tv&P7@V`AT}lAbUw?!W#4JNynPV5d)G0Lpw}^Z;xxf zWqY1YVKN_m8r+_AM``9FjZBN=RGvC|XiBO|jus~;odV_Jf6@4Q%Ga>C42JJ!fGN=f zaD9VJoE~I1fPGK^;2OD)Vpk-4^`Wx4LCX_&Z$_5&x3R55)Zdu9xBX z&k>)m@!+orA9z(J!}k#2<9a?scBX)j`wHNT!Uu%oA0-1{^TEe;9*FxR#1B8<6!G~U z0y6F+fQ>S7IDW))i8{PZz{hk1@U(;^TS-#Qh}v!~5T>!pHh6Lp%i+LAHU)6=L|RshUdRQ`hD~-yS>7FHoj8}&j%U!YvR^c@o^ts z&nE_I@YB+|4E^uP!21s7$Ndz(S6ql`CiXAzupjXK3cG-h@0S)&Xx?!Rl_mJVJ7lTm z;&z$$$%D>24 & 0x00FF) +# define COMPILER_VERSION_MINOR HEX(__CODEGEARC_VERSION__>>16 & 0x00FF) +# define COMPILER_VERSION_PATCH DEC(__CODEGEARC_VERSION__ & 0xFFFF) + +#elif defined(__BORLANDC__) +# define COMPILER_ID "Borland" + /* __BORLANDC__ = 0xVRR */ +# define COMPILER_VERSION_MAJOR HEX(__BORLANDC__>>8) +# define COMPILER_VERSION_MINOR HEX(__BORLANDC__ & 0xFF) + +#elif defined(__WATCOMC__) && __WATCOMC__ < 1200 +# define COMPILER_ID "Watcom" + /* __WATCOMC__ = VVRR */ +# define COMPILER_VERSION_MAJOR DEC(__WATCOMC__ / 100) +# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) +# if (__WATCOMC__ % 10) > 0 +# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) +# endif + +#elif defined(__WATCOMC__) +# define COMPILER_ID "OpenWatcom" + /* __WATCOMC__ = VVRP + 1100 */ +# define COMPILER_VERSION_MAJOR DEC((__WATCOMC__ - 1100) / 100) +# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) +# if (__WATCOMC__ % 10) > 0 +# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) +# endif + +#elif defined(__SUNPRO_C) +# define COMPILER_ID "SunPro" +# if __SUNPRO_C >= 0x5100 + /* __SUNPRO_C = 0xVRRP */ +# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_C>>12) +# define COMPILER_VERSION_MINOR HEX(__SUNPRO_C>>4 & 0xFF) +# define COMPILER_VERSION_PATCH HEX(__SUNPRO_C & 0xF) +# else + /* __SUNPRO_CC = 0xVRP */ +# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_C>>8) +# define COMPILER_VERSION_MINOR HEX(__SUNPRO_C>>4 & 0xF) +# define COMPILER_VERSION_PATCH HEX(__SUNPRO_C & 0xF) +# endif + +#elif defined(__HP_cc) +# define COMPILER_ID "HP" + /* __HP_cc = VVRRPP */ +# define COMPILER_VERSION_MAJOR DEC(__HP_cc/10000) +# define COMPILER_VERSION_MINOR DEC(__HP_cc/100 % 100) +# define COMPILER_VERSION_PATCH DEC(__HP_cc % 100) + +#elif defined(__DECC) +# define COMPILER_ID "Compaq" + /* __DECC_VER = VVRRTPPPP */ +# define COMPILER_VERSION_MAJOR DEC(__DECC_VER/10000000) +# define COMPILER_VERSION_MINOR DEC(__DECC_VER/100000 % 100) +# define COMPILER_VERSION_PATCH DEC(__DECC_VER % 10000) + +#elif defined(__IBMC__) && defined(__COMPILER_VER__) +# define COMPILER_ID "zOS" + /* __IBMC__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10) + +#elif defined(__open_xl__) && defined(__clang__) +# define COMPILER_ID "IBMClang" +# define COMPILER_VERSION_MAJOR DEC(__open_xl_version__) +# define COMPILER_VERSION_MINOR DEC(__open_xl_release__) +# define COMPILER_VERSION_PATCH DEC(__open_xl_modification__) +# define COMPILER_VERSION_TWEAK DEC(__open_xl_ptf_fix_level__) +# define COMPILER_VERSION_INTERNAL_STR __clang_version__ + + +#elif defined(__ibmxl__) && defined(__clang__) +# define COMPILER_ID "XLClang" +# define COMPILER_VERSION_MAJOR DEC(__ibmxl_version__) +# define COMPILER_VERSION_MINOR DEC(__ibmxl_release__) +# define COMPILER_VERSION_PATCH DEC(__ibmxl_modification__) +# define COMPILER_VERSION_TWEAK DEC(__ibmxl_ptf_fix_level__) + + +#elif defined(__IBMC__) && !defined(__COMPILER_VER__) && __IBMC__ >= 800 +# define COMPILER_ID "XL" + /* __IBMC__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10) + +#elif defined(__IBMC__) && !defined(__COMPILER_VER__) && __IBMC__ < 800 +# define COMPILER_ID "VisualAge" + /* __IBMC__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10) + +#elif defined(__NVCOMPILER) +# define COMPILER_ID "NVHPC" +# define COMPILER_VERSION_MAJOR DEC(__NVCOMPILER_MAJOR__) +# define COMPILER_VERSION_MINOR DEC(__NVCOMPILER_MINOR__) +# if defined(__NVCOMPILER_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__NVCOMPILER_PATCHLEVEL__) +# endif + +#elif defined(__PGI) +# define COMPILER_ID "PGI" +# define COMPILER_VERSION_MAJOR DEC(__PGIC__) +# define COMPILER_VERSION_MINOR DEC(__PGIC_MINOR__) +# if defined(__PGIC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__PGIC_PATCHLEVEL__) +# endif + +#elif defined(__clang__) && defined(__cray__) +# define COMPILER_ID "CrayClang" +# define COMPILER_VERSION_MAJOR DEC(__cray_major__) +# define COMPILER_VERSION_MINOR DEC(__cray_minor__) +# define COMPILER_VERSION_PATCH DEC(__cray_patchlevel__) +# define COMPILER_VERSION_INTERNAL_STR __clang_version__ + + +#elif defined(_CRAYC) +# define COMPILER_ID "Cray" +# define COMPILER_VERSION_MAJOR DEC(_RELEASE_MAJOR) +# define COMPILER_VERSION_MINOR DEC(_RELEASE_MINOR) + +#elif defined(__TI_COMPILER_VERSION__) +# define COMPILER_ID "TI" + /* __TI_COMPILER_VERSION__ = VVVRRRPPP */ +# define COMPILER_VERSION_MAJOR DEC(__TI_COMPILER_VERSION__/1000000) +# define COMPILER_VERSION_MINOR DEC(__TI_COMPILER_VERSION__/1000 % 1000) +# define COMPILER_VERSION_PATCH DEC(__TI_COMPILER_VERSION__ % 1000) + +#elif defined(__CLANG_FUJITSU) +# define COMPILER_ID "FujitsuClang" +# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) +# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) +# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) +# define COMPILER_VERSION_INTERNAL_STR __clang_version__ + + +#elif defined(__FUJITSU) +# define COMPILER_ID "Fujitsu" +# if defined(__FCC_version__) +# define COMPILER_VERSION __FCC_version__ +# elif defined(__FCC_major__) +# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) +# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) +# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) +# endif +# if defined(__fcc_version) +# define COMPILER_VERSION_INTERNAL DEC(__fcc_version) +# elif defined(__FCC_VERSION) +# define COMPILER_VERSION_INTERNAL DEC(__FCC_VERSION) +# endif + + +#elif defined(__ghs__) +# define COMPILER_ID "GHS" +/* __GHS_VERSION_NUMBER = VVVVRP */ +# ifdef __GHS_VERSION_NUMBER +# define COMPILER_VERSION_MAJOR DEC(__GHS_VERSION_NUMBER / 100) +# define COMPILER_VERSION_MINOR DEC(__GHS_VERSION_NUMBER / 10 % 10) +# define COMPILER_VERSION_PATCH DEC(__GHS_VERSION_NUMBER % 10) +# endif + +#elif defined(__TASKING__) +# define COMPILER_ID "Tasking" + # define COMPILER_VERSION_MAJOR DEC(__VERSION__/1000) + # define COMPILER_VERSION_MINOR DEC(__VERSION__ % 100) +# define COMPILER_VERSION_INTERNAL DEC(__VERSION__) + +#elif defined(__ORANGEC__) +# define COMPILER_ID "OrangeC" +# define COMPILER_VERSION_MAJOR DEC(__ORANGEC_MAJOR__) +# define COMPILER_VERSION_MINOR DEC(__ORANGEC_MINOR__) +# define COMPILER_VERSION_PATCH DEC(__ORANGEC_PATCHLEVEL__) + +#elif defined(__RENESAS__) +# define COMPILER_ID "Renesas" +/* __RENESAS_VERSION__ = 0xVVRRPP00 */ +# define COMPILER_VERSION_MAJOR HEX(__RENESAS_VERSION__ >> 24 & 0xFF) +# define COMPILER_VERSION_MINOR HEX(__RENESAS_VERSION__ >> 16 & 0xFF) +# define COMPILER_VERSION_PATCH HEX(__RENESAS_VERSION__ >> 8 & 0xFF) + +#elif defined(__TINYC__) +# define COMPILER_ID "TinyCC" + +#elif defined(__BCC__) +# define COMPILER_ID "Bruce" + +#elif defined(__SCO_VERSION__) +# define COMPILER_ID "SCO" + +#elif defined(__ARMCC_VERSION) && !defined(__clang__) +# define COMPILER_ID "ARMCC" +#if __ARMCC_VERSION >= 1000000 + /* __ARMCC_VERSION = VRRPPPP */ + # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/1000000) + # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 100) + # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) +#else + /* __ARMCC_VERSION = VRPPPP */ + # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/100000) + # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 10) + # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) +#endif + + +#elif defined(__clang__) && defined(__apple_build_version__) +# define COMPILER_ID "AppleClang" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# define COMPILER_VERSION_MAJOR DEC(__clang_major__) +# define COMPILER_VERSION_MINOR DEC(__clang_minor__) +# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif +# define COMPILER_VERSION_TWEAK DEC(__apple_build_version__) + +#elif defined(__clang__) && defined(__ARMCOMPILER_VERSION) +# define COMPILER_ID "ARMClang" + # define COMPILER_VERSION_MAJOR DEC(__ARMCOMPILER_VERSION/1000000) + # define COMPILER_VERSION_MINOR DEC(__ARMCOMPILER_VERSION/10000 % 100) + # define COMPILER_VERSION_PATCH DEC(__ARMCOMPILER_VERSION/100 % 100) +# define COMPILER_VERSION_INTERNAL DEC(__ARMCOMPILER_VERSION) + +#elif defined(__clang__) && defined(__ti__) +# define COMPILER_ID "TIClang" + # define COMPILER_VERSION_MAJOR DEC(__ti_major__) + # define COMPILER_VERSION_MINOR DEC(__ti_minor__) + # define COMPILER_VERSION_PATCH DEC(__ti_patchlevel__) +# define COMPILER_VERSION_INTERNAL DEC(__ti_version__) + +#elif defined(__clang__) +# define COMPILER_ID "Clang" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# define COMPILER_VERSION_MAJOR DEC(__clang_major__) +# define COMPILER_VERSION_MINOR DEC(__clang_minor__) +# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif + +#elif defined(__LCC__) && (defined(__GNUC__) || defined(__GNUG__) || defined(__MCST__)) +# define COMPILER_ID "LCC" +# define COMPILER_VERSION_MAJOR DEC(__LCC__ / 100) +# define COMPILER_VERSION_MINOR DEC(__LCC__ % 100) +# if defined(__LCC_MINOR__) +# define COMPILER_VERSION_PATCH DEC(__LCC_MINOR__) +# endif +# if defined(__GNUC__) && defined(__GNUC_MINOR__) +# define SIMULATE_ID "GNU" +# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) +# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) +# if defined(__GNUC_PATCHLEVEL__) +# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +# endif +# endif + +#elif defined(__GNUC__) +# define COMPILER_ID "GNU" +# define COMPILER_VERSION_MAJOR DEC(__GNUC__) +# if defined(__GNUC_MINOR__) +# define COMPILER_VERSION_MINOR DEC(__GNUC_MINOR__) +# endif +# if defined(__GNUC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +# endif + +#elif defined(_MSC_VER) +# define COMPILER_ID "MSVC" + /* _MSC_VER = VVRR */ +# define COMPILER_VERSION_MAJOR DEC(_MSC_VER / 100) +# define COMPILER_VERSION_MINOR DEC(_MSC_VER % 100) +# if defined(_MSC_FULL_VER) +# if _MSC_VER >= 1400 + /* _MSC_FULL_VER = VVRRPPPPP */ +# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 100000) +# else + /* _MSC_FULL_VER = VVRRPPPP */ +# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 10000) +# endif +# endif +# if defined(_MSC_BUILD) +# define COMPILER_VERSION_TWEAK DEC(_MSC_BUILD) +# endif + +#elif defined(_ADI_COMPILER) +# define COMPILER_ID "ADSP" +#if defined(__VERSIONNUM__) + /* __VERSIONNUM__ = 0xVVRRPPTT */ +# define COMPILER_VERSION_MAJOR DEC(__VERSIONNUM__ >> 24 & 0xFF) +# define COMPILER_VERSION_MINOR DEC(__VERSIONNUM__ >> 16 & 0xFF) +# define COMPILER_VERSION_PATCH DEC(__VERSIONNUM__ >> 8 & 0xFF) +# define COMPILER_VERSION_TWEAK DEC(__VERSIONNUM__ & 0xFF) +#endif + +#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) +# define COMPILER_ID "IAR" +# if defined(__VER__) && defined(__ICCARM__) +# define COMPILER_VERSION_MAJOR DEC((__VER__) / 1000000) +# define COMPILER_VERSION_MINOR DEC(((__VER__) / 1000) % 1000) +# define COMPILER_VERSION_PATCH DEC((__VER__) % 1000) +# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) +# elif defined(__VER__) && (defined(__ICCAVR__) || defined(__ICCRX__) || defined(__ICCRH850__) || defined(__ICCRL78__) || defined(__ICC430__) || defined(__ICCRISCV__) || defined(__ICCV850__) || defined(__ICC8051__) || defined(__ICCSTM8__)) +# define COMPILER_VERSION_MAJOR DEC((__VER__) / 100) +# define COMPILER_VERSION_MINOR DEC((__VER__) - (((__VER__) / 100)*100)) +# define COMPILER_VERSION_PATCH DEC(__SUBVERSION__) +# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) +# endif + +#elif defined(__DCC__) && defined(_DIAB_TOOL) +# define COMPILER_ID "Diab" + # define COMPILER_VERSION_MAJOR DEC(__VERSION_MAJOR_NUMBER__) + # define COMPILER_VERSION_MINOR DEC(__VERSION_MINOR_NUMBER__) + # define COMPILER_VERSION_PATCH DEC(__VERSION_ARCH_FEATURE_NUMBER__) + # define COMPILER_VERSION_TWEAK DEC(__VERSION_BUG_FIX_NUMBER__) + + +#elif defined(__SDCC_VERSION_MAJOR) || defined(SDCC) +# define COMPILER_ID "SDCC" +# if defined(__SDCC_VERSION_MAJOR) +# define COMPILER_VERSION_MAJOR DEC(__SDCC_VERSION_MAJOR) +# define COMPILER_VERSION_MINOR DEC(__SDCC_VERSION_MINOR) +# define COMPILER_VERSION_PATCH DEC(__SDCC_VERSION_PATCH) +# else + /* SDCC = VRP */ +# define COMPILER_VERSION_MAJOR DEC(SDCC/100) +# define COMPILER_VERSION_MINOR DEC(SDCC/10 % 10) +# define COMPILER_VERSION_PATCH DEC(SDCC % 10) +# endif + + +/* These compilers are either not known or too old to define an + identification macro. Try to identify the platform and guess that + it is the native compiler. */ +#elif defined(__hpux) || defined(__hpua) +# define COMPILER_ID "HP" + +#else /* unknown compiler */ +# define COMPILER_ID "" +#endif + +/* Construct the string literal in pieces to prevent the source from + getting matched. Store it in a pointer rather than an array + because some compilers will just produce instructions to fill the + array rather than assigning a pointer to a static array. */ +char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]"; +#ifdef SIMULATE_ID +char const* info_simulate = "INFO" ":" "simulate[" SIMULATE_ID "]"; +#endif + +#ifdef __QNXNTO__ +char const* qnxnto = "INFO" ":" "qnxnto[]"; +#endif + +#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) +char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]"; +#endif + +#define STRINGIFY_HELPER(X) #X +#define STRINGIFY(X) STRINGIFY_HELPER(X) + +/* Identify known platforms by name. */ +#if defined(__linux) || defined(__linux__) || defined(linux) +# define PLATFORM_ID "Linux" + +#elif defined(__MSYS__) +# define PLATFORM_ID "MSYS" + +#elif defined(__CYGWIN__) +# define PLATFORM_ID "Cygwin" + +#elif defined(__MINGW32__) +# define PLATFORM_ID "MinGW" + +#elif defined(__APPLE__) +# define PLATFORM_ID "Darwin" + +#elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32) +# define PLATFORM_ID "Windows" + +#elif defined(__FreeBSD__) || defined(__FreeBSD) +# define PLATFORM_ID "FreeBSD" + +#elif defined(__NetBSD__) || defined(__NetBSD) +# define PLATFORM_ID "NetBSD" + +#elif defined(__OpenBSD__) || defined(__OPENBSD) +# define PLATFORM_ID "OpenBSD" + +#elif defined(__sun) || defined(sun) +# define PLATFORM_ID "SunOS" + +#elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__) +# define PLATFORM_ID "AIX" + +#elif defined(__hpux) || defined(__hpux__) +# define PLATFORM_ID "HP-UX" + +#elif defined(__HAIKU__) +# define PLATFORM_ID "Haiku" + +#elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS) +# define PLATFORM_ID "BeOS" + +#elif defined(__QNX__) || defined(__QNXNTO__) +# define PLATFORM_ID "QNX" + +#elif defined(__tru64) || defined(_tru64) || defined(__TRU64__) +# define PLATFORM_ID "Tru64" + +#elif defined(__riscos) || defined(__riscos__) +# define PLATFORM_ID "RISCos" + +#elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__) +# define PLATFORM_ID "SINIX" + +#elif defined(__UNIX_SV__) +# define PLATFORM_ID "UNIX_SV" + +#elif defined(__bsdos__) +# define PLATFORM_ID "BSDOS" + +#elif defined(_MPRAS) || defined(MPRAS) +# define PLATFORM_ID "MP-RAS" + +#elif defined(__osf) || defined(__osf__) +# define PLATFORM_ID "OSF1" + +#elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv) +# define PLATFORM_ID "SCO_SV" + +#elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX) +# define PLATFORM_ID "ULTRIX" + +#elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX) +# define PLATFORM_ID "Xenix" + +#elif defined(__WATCOMC__) +# if defined(__LINUX__) +# define PLATFORM_ID "Linux" + +# elif defined(__DOS__) +# define PLATFORM_ID "DOS" + +# elif defined(__OS2__) +# define PLATFORM_ID "OS2" + +# elif defined(__WINDOWS__) +# define PLATFORM_ID "Windows3x" + +# elif defined(__VXWORKS__) +# define PLATFORM_ID "VxWorks" + +# else /* unknown platform */ +# define PLATFORM_ID +# endif + +#elif defined(__INTEGRITY) +# if defined(INT_178B) +# define PLATFORM_ID "Integrity178" + +# else /* regular Integrity */ +# define PLATFORM_ID "Integrity" +# endif + +# elif defined(_ADI_COMPILER) +# define PLATFORM_ID "ADSP" + +#else /* unknown platform */ +# define PLATFORM_ID + +#endif + +/* For windows compilers MSVC and Intel we can determine + the architecture of the compiler being used. This is because + the compilers do not have flags that can change the architecture, + but rather depend on which compiler is being used +*/ +#if defined(_WIN32) && defined(_MSC_VER) +# if defined(_M_IA64) +# define ARCHITECTURE_ID "IA64" + +# elif defined(_M_ARM64EC) +# define ARCHITECTURE_ID "ARM64EC" + +# elif defined(_M_X64) || defined(_M_AMD64) +# define ARCHITECTURE_ID "x64" + +# elif defined(_M_IX86) +# define ARCHITECTURE_ID "X86" + +# elif defined(_M_ARM64) +# define ARCHITECTURE_ID "ARM64" + +# elif defined(_M_ARM) +# if _M_ARM == 4 +# define ARCHITECTURE_ID "ARMV4I" +# elif _M_ARM == 5 +# define ARCHITECTURE_ID "ARMV5I" +# else +# define ARCHITECTURE_ID "ARMV" STRINGIFY(_M_ARM) +# endif + +# elif defined(_M_MIPS) +# define ARCHITECTURE_ID "MIPS" + +# elif defined(_M_SH) +# define ARCHITECTURE_ID "SHx" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__WATCOMC__) +# if defined(_M_I86) +# define ARCHITECTURE_ID "I86" + +# elif defined(_M_IX86) +# define ARCHITECTURE_ID "X86" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) +# if defined(__ICCARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__ICCRX__) +# define ARCHITECTURE_ID "RX" + +# elif defined(__ICCRH850__) +# define ARCHITECTURE_ID "RH850" + +# elif defined(__ICCRL78__) +# define ARCHITECTURE_ID "RL78" + +# elif defined(__ICCRISCV__) +# define ARCHITECTURE_ID "RISCV" + +# elif defined(__ICCAVR__) +# define ARCHITECTURE_ID "AVR" + +# elif defined(__ICC430__) +# define ARCHITECTURE_ID "MSP430" + +# elif defined(__ICCV850__) +# define ARCHITECTURE_ID "V850" + +# elif defined(__ICC8051__) +# define ARCHITECTURE_ID "8051" + +# elif defined(__ICCSTM8__) +# define ARCHITECTURE_ID "STM8" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__ghs__) +# if defined(__PPC64__) +# define ARCHITECTURE_ID "PPC64" + +# elif defined(__ppc__) +# define ARCHITECTURE_ID "PPC" + +# elif defined(__ARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__x86_64__) +# define ARCHITECTURE_ID "x64" + +# elif defined(__i386__) +# define ARCHITECTURE_ID "X86" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__clang__) && defined(__ti__) +# if defined(__ARM_ARCH) +# define ARCHITECTURE_ID "ARM" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__TI_COMPILER_VERSION__) +# if defined(__TI_ARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__MSP430__) +# define ARCHITECTURE_ID "MSP430" + +# elif defined(__TMS320C28XX__) +# define ARCHITECTURE_ID "TMS320C28x" + +# elif defined(__TMS320C6X__) || defined(_TMS320C6X) +# define ARCHITECTURE_ID "TMS320C6x" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +# elif defined(__ADSPSHARC__) +# define ARCHITECTURE_ID "SHARC" + +# elif defined(__ADSPBLACKFIN__) +# define ARCHITECTURE_ID "Blackfin" + +#elif defined(__TASKING__) + +# if defined(__CTC__) || defined(__CPTC__) +# define ARCHITECTURE_ID "TriCore" + +# elif defined(__CMCS__) +# define ARCHITECTURE_ID "MCS" + +# elif defined(__CARM__) || defined(__CPARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__CARC__) +# define ARCHITECTURE_ID "ARC" + +# elif defined(__C51__) +# define ARCHITECTURE_ID "8051" + +# elif defined(__CPCP__) +# define ARCHITECTURE_ID "PCP" + +# else +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__RENESAS__) +# if defined(__CCRX__) +# define ARCHITECTURE_ID "RX" + +# elif defined(__CCRL__) +# define ARCHITECTURE_ID "RL78" + +# elif defined(__CCRH__) +# define ARCHITECTURE_ID "RH850" + +# else +# define ARCHITECTURE_ID "" +# endif + +#else +# define ARCHITECTURE_ID +#endif + +/* Convert integer to decimal digit literals. */ +#define DEC(n) \ + ('0' + (((n) / 10000000)%10)), \ + ('0' + (((n) / 1000000)%10)), \ + ('0' + (((n) / 100000)%10)), \ + ('0' + (((n) / 10000)%10)), \ + ('0' + (((n) / 1000)%10)), \ + ('0' + (((n) / 100)%10)), \ + ('0' + (((n) / 10)%10)), \ + ('0' + ((n) % 10)) + +/* Convert integer to hex digit literals. */ +#define HEX(n) \ + ('0' + ((n)>>28 & 0xF)), \ + ('0' + ((n)>>24 & 0xF)), \ + ('0' + ((n)>>20 & 0xF)), \ + ('0' + ((n)>>16 & 0xF)), \ + ('0' + ((n)>>12 & 0xF)), \ + ('0' + ((n)>>8 & 0xF)), \ + ('0' + ((n)>>4 & 0xF)), \ + ('0' + ((n) & 0xF)) + +/* Construct a string literal encoding the version number. */ +#ifdef COMPILER_VERSION +char const* info_version = "INFO" ":" "compiler_version[" COMPILER_VERSION "]"; + +/* Construct a string literal encoding the version number components. */ +#elif defined(COMPILER_VERSION_MAJOR) +char const info_version[] = { + 'I', 'N', 'F', 'O', ':', + 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','[', + COMPILER_VERSION_MAJOR, +# ifdef COMPILER_VERSION_MINOR + '.', COMPILER_VERSION_MINOR, +# ifdef COMPILER_VERSION_PATCH + '.', COMPILER_VERSION_PATCH, +# ifdef COMPILER_VERSION_TWEAK + '.', COMPILER_VERSION_TWEAK, +# endif +# endif +# endif + ']','\0'}; +#endif + +/* Construct a string literal encoding the internal version number. */ +#ifdef COMPILER_VERSION_INTERNAL +char const info_version_internal[] = { + 'I', 'N', 'F', 'O', ':', + 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','_', + 'i','n','t','e','r','n','a','l','[', + COMPILER_VERSION_INTERNAL,']','\0'}; +#elif defined(COMPILER_VERSION_INTERNAL_STR) +char const* info_version_internal = "INFO" ":" "compiler_version_internal[" COMPILER_VERSION_INTERNAL_STR "]"; +#endif + +/* Construct a string literal encoding the version number components. */ +#ifdef SIMULATE_VERSION_MAJOR +char const info_simulate_version[] = { + 'I', 'N', 'F', 'O', ':', + 's','i','m','u','l','a','t','e','_','v','e','r','s','i','o','n','[', + SIMULATE_VERSION_MAJOR, +# ifdef SIMULATE_VERSION_MINOR + '.', SIMULATE_VERSION_MINOR, +# ifdef SIMULATE_VERSION_PATCH + '.', SIMULATE_VERSION_PATCH, +# ifdef SIMULATE_VERSION_TWEAK + '.', SIMULATE_VERSION_TWEAK, +# endif +# endif +# endif + ']','\0'}; +#endif + +/* Construct the string literal in pieces to prevent the source from + getting matched. Store it in a pointer rather than an array + because some compilers will just produce instructions to fill the + array rather than assigning a pointer to a static array. */ +char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]"; +char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]"; + + + +#define C_STD_99 199901L +#define C_STD_11 201112L +#define C_STD_17 201710L +#define C_STD_23 202311L + +#ifdef __STDC_VERSION__ +# define C_STD __STDC_VERSION__ +#endif + +#if !defined(__STDC__) && !defined(__clang__) && !defined(__RENESAS__) +# if defined(_MSC_VER) || defined(__ibmxl__) || defined(__IBMC__) +# define C_VERSION "90" +# else +# define C_VERSION +# endif +#elif C_STD > C_STD_17 +# define C_VERSION "23" +#elif C_STD > C_STD_11 +# define C_VERSION "17" +#elif C_STD > C_STD_99 +# define C_VERSION "11" +#elif C_STD >= C_STD_99 +# define C_VERSION "99" +#else +# define C_VERSION "90" +#endif +const char* info_language_standard_default = + "INFO" ":" "standard_default[" C_VERSION "]"; + +const char* info_language_extensions_default = "INFO" ":" "extensions_default[" +#if (defined(__clang__) || defined(__GNUC__) || defined(__xlC__) || \ + defined(__TI_COMPILER_VERSION__) || defined(__RENESAS__)) && \ + !defined(__STRICT_ANSI__) + "ON" +#else + "OFF" +#endif +"]"; + +/*--------------------------------------------------------------------------*/ + +#ifdef ID_VOID_MAIN +void main() {} +#else +# if defined(__CLASSIC_C__) +int main(argc, argv) int argc; char *argv[]; +# else +int main(int argc, char* argv[]) +# endif +{ + int require = 0; + require += info_compiler[argc]; + require += info_platform[argc]; + require += info_arch[argc]; +#ifdef COMPILER_VERSION_MAJOR + require += info_version[argc]; +#endif +#if defined(COMPILER_VERSION_INTERNAL) || defined(COMPILER_VERSION_INTERNAL_STR) + require += info_version_internal[argc]; +#endif +#ifdef SIMULATE_ID + require += info_simulate[argc]; +#endif +#ifdef SIMULATE_VERSION_MAJOR + require += info_simulate_version[argc]; +#endif +#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) + require += info_cray[argc]; +#endif + require += info_language_standard_default[argc]; + require += info_language_extensions_default[argc]; + (void)argv; + return require; +} +#endif diff --git a/build/CMakeFiles/4.1.1/CompilerIdC/a.out b/build/CMakeFiles/4.1.1/CompilerIdC/a.out new file mode 100755 index 0000000000000000000000000000000000000000..5a39adc459e79751465ead22f4daf7d31ffca7be GIT binary patch literal 15536 zcmeHOeQX>@6`#9&Ic;KJ+&XoWLY7iRsf0KFh$B--d-nO9wPZUXaik)Xt~S24ed2s) z-K~RDRMk>S8)E_i3MxWEk)RT)ghZuMAt6-`sS1_&a6m|?NGL^A3J|DK0i_W6cyH(Z z&g+RC5PtxF>{#C4yx+X{X7A8j*a4$%#5A>WNrzjdOuGwWXW|2*59B_$F!KM0-^bFeXoYMoOrb7Q$KMKaY-f%Sa+;N> zq{HpXIFE|mk1X9_B90Rv#`zJllS4v0-X3sx9FzXmo4+NQ2cU@IezsB(re&t5@Q_mmZ&_Ne+2G5;c*Uf!_^2MUWY^NcoRn;jzAoNI0A75;t0eM zh$Hadj=(z&@BO=T_IjN&zvUx{q54x z;cVMN+w0ExLvN5mwds>&^_MZbVb4>cKJjm|pYxmEVEEvTpov^RCa$+uuQu$NWyQ;a zr2k^5-}wT=gUim`l5^=#k2sfZY;Y2$9c$RryJFAdn>{p1&1$;i zgmd=L9b9$h-U_xm^N045P;I(FzooB@R;$(5HuVybIC*(xyfluq8e5Us-|xmr_XPQv zd*Zq?H+}U7*_%9MXTIszH7;=k;t0eMh$9e3AdWyBfj9zj1mXz95r`uY zM__dX_&wL{O8-#bk%vZ0lT-PEUml@1k|$SduWENs`{hc$R2*pyOIxR{E3NIQw4GF; z#ZwrymF3S?2UQTgR}* z-5WmCOvB?n8h*Q4JwQ0PRILsW@;g;7iN}wr#7ru&d)t<}3-qFkd46ZyO!|9Sp?6F8 zhK@P5f0y{@neVPoJ)O*K-<-TimQ3jP->l5<%lKU_7k=jzeeV^L@g|Ny9Dz6jaRlNB z#1V)i5Jw=6KpcTM0{@2*K;9zq6p;&fzl?Po#w>Y^+eKcGe8+o5Mn2?jk&)-POJw9l zB3~Ene_gJYSY=U?3Xv-~D?h3@KatClwBMmcbx!b3LH-@crAb3=yG3e_I7Yu+vZIvb z85Y?8qpHV4WT?67i|60x33Zn;$N!$t zLA^pAIQ+GS`c3MZ%$2#!+SipZ#bHsp6Il?J2nNrIHxsk#jQY2q7`+Z4_N zt*z8&MBnuD72+)@Mev(c-;vy@Fdu084)co6HcK;j#_(#$?^I@f@Xv%d^L^hTKBewa z=`>X$DE|rK8<)ML z3}h+K+)QduBX|8@<*WNSFYpv+zvsyd3p#oImP~dxS1Gv@^pK3R-20D^RxV$3rz?I= z<%?q_7f;x@SKl2J5{Mj$C8szY4vV)sMmE3hvtL2+vM1< zPVBFRgwy$5+TTEXmS>1s;75W=*_AVsfp>~9C~KTRtyl_td%QSpPnAnkemOX!>>71y zI#1t7O8U!-dAwa(WaWTiQS*7^?#d89C ztb>492cds+|L4e-_lf<71=m|atoP7t&j07AA!=`l9q?;Lz~CPKzGT=h$bANg^(ges z{=X{r*nee-rr_%$0)&RBzD_kBBJ8pL0OI(Af!Y6yhW#~5YXXO1D2Vuj{vK7L=dbzw zodrcfvwz;ddis~cUSXY%@7&D(AOn9vwha+`tmB*c!axOjT3V68zex>z?4W+rqf zMVWsbU$Db*@O!dl71-murG@=OQrV}WwuL?LZEA_yW1V~WsM0qlUh9*Wwlv}m?! z>=F?GJIKpaVGiTRdZTF%@6 literal 0 HcmV?d00001 diff --git a/build/CMakeFiles/CMakeConfigureLog.yaml b/build/CMakeFiles/CMakeConfigureLog.yaml new file mode 100644 index 0000000..5ef769c --- /dev/null +++ b/build/CMakeFiles/CMakeConfigureLog.yaml @@ -0,0 +1,937 @@ + +--- +events: + - + kind: "find-v1" + backtrace: + - "/usr/share/cmake/Modules/CMakeDetermineSystem.cmake:12 (find_program)" + - "CMakeLists.txt:3 (project)" + mode: "program" + variable: "CMAKE_UNAME" + description: "Path to a program." + settings: + SearchFramework: "NEVER" + SearchAppBundle: "NEVER" + CMAKE_FIND_USE_CMAKE_PATH: true + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "uname" + candidate_directories: + - "/usr/local/sbin/" + - "/usr/local/bin/" + - "/usr/bin/" + - "/usr/bin/site_perl/" + - "/usr/bin/vendor_perl/" + - "/usr/bin/core_perl/" + - "/bin/" + searched_directories: + - "/usr/local/sbin/uname" + - "/usr/local/bin/uname" + found: "/usr/bin/uname" + search_context: + ENV{PATH}: + - "/usr/local/sbin" + - "/usr/local/bin" + - "/usr/bin" + - "/usr/bin/site_perl" + - "/usr/bin/vendor_perl" + - "/usr/bin/core_perl" + - + kind: "message-v1" + backtrace: + - "/usr/share/cmake/Modules/CMakeDetermineSystem.cmake:212 (message)" + - "CMakeLists.txt:3 (project)" + message: | + The system is: Linux - 6.16.7-arch1-1 - x86_64 + - + kind: "find-v1" + backtrace: + - "/usr/share/cmake/Modules/CMakeUnixFindMake.cmake:5 (find_program)" + - "CMakeLists.txt:3 (project)" + mode: "program" + variable: "CMAKE_MAKE_PROGRAM" + description: "Path to a program." + settings: + SearchFramework: "NEVER" + SearchAppBundle: "NEVER" + CMAKE_FIND_USE_CMAKE_PATH: true + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "gmake" + - "make" + - "smake" + candidate_directories: + - "/usr/local/sbin/" + - "/usr/local/bin/" + - "/usr/bin/" + - "/usr/bin/site_perl/" + - "/usr/bin/vendor_perl/" + - "/usr/bin/core_perl/" + searched_directories: + - "/usr/local/sbin/gmake" + - "/usr/local/bin/gmake" + - "/usr/bin/gmake" + - "/usr/bin/site_perl/gmake" + - "/usr/bin/vendor_perl/gmake" + - "/usr/bin/core_perl/gmake" + - "/usr/local/sbin/make" + - "/usr/local/bin/make" + found: "/usr/bin/make" + search_context: + ENV{PATH}: + - "/usr/local/sbin" + - "/usr/local/bin" + - "/usr/bin" + - "/usr/bin/site_perl" + - "/usr/bin/vendor_perl" + - "/usr/bin/core_perl" + - + kind: "find-v1" + backtrace: + - "/usr/share/cmake/Modules/CMakeDetermineCompiler.cmake:73 (find_program)" + - "/usr/share/cmake/Modules/CMakeDetermineCCompiler.cmake:64 (_cmake_find_compiler)" + - "CMakeLists.txt:3 (project)" + mode: "program" + variable: "CMAKE_C_COMPILER" + description: "C compiler" + settings: + SearchFramework: "NEVER" + SearchAppBundle: "NEVER" + CMAKE_FIND_USE_CMAKE_PATH: true + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "cc" + - "gcc" + - "cl" + - "bcc" + - "xlc" + - "icx" + - "clang" + candidate_directories: + - "/usr/local/sbin/" + - "/usr/local/bin/" + - "/usr/bin/" + - "/usr/bin/site_perl/" + - "/usr/bin/vendor_perl/" + - "/usr/bin/core_perl/" + searched_directories: + - "/usr/local/sbin/cc" + - "/usr/local/bin/cc" + found: "/usr/bin/cc" + search_context: + ENV{PATH}: + - "/usr/local/sbin" + - "/usr/local/bin" + - "/usr/bin" + - "/usr/bin/site_perl" + - "/usr/bin/vendor_perl" + - "/usr/bin/core_perl" + - + kind: "find-v1" + backtrace: + - "/usr/share/cmake/Modules/CMakeDetermineCompilerId.cmake:462 (find_file)" + - "/usr/share/cmake/Modules/CMakeDetermineCompilerId.cmake:500 (CMAKE_DETERMINE_COMPILER_ID_WRITE)" + - "/usr/share/cmake/Modules/CMakeDetermineCompilerId.cmake:8 (CMAKE_DETERMINE_COMPILER_ID_BUILD)" + - "/usr/share/cmake/Modules/CMakeDetermineCompilerId.cmake:64 (__determine_compiler_id_test)" + - "/usr/share/cmake/Modules/CMakeDetermineCCompiler.cmake:122 (CMAKE_DETERMINE_COMPILER_ID)" + - "CMakeLists.txt:3 (project)" + mode: "file" + variable: "src_in" + description: "Path to a file." + settings: + SearchFramework: "NEVER" + SearchAppBundle: "NEVER" + CMAKE_FIND_USE_CMAKE_PATH: true + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "CMakeCCompilerId.c.in" + candidate_directories: + - "/usr/share/cmake/Modules/" + found: "/usr/share/cmake/Modules/CMakeCCompilerId.c.in" + search_context: + ENV{PATH}: + - "/usr/local/sbin" + - "/usr/local/bin" + - "/usr/bin" + - "/usr/bin/site_perl" + - "/usr/bin/vendor_perl" + - "/usr/bin/core_perl" + - + kind: "message-v1" + backtrace: + - "/usr/share/cmake/Modules/CMakeDetermineCompilerId.cmake:17 (message)" + - "/usr/share/cmake/Modules/CMakeDetermineCompilerId.cmake:64 (__determine_compiler_id_test)" + - "/usr/share/cmake/Modules/CMakeDetermineCCompiler.cmake:122 (CMAKE_DETERMINE_COMPILER_ID)" + - "CMakeLists.txt:3 (project)" + message: | + Compiling the C compiler identification source file "CMakeCCompilerId.c" succeeded. + Compiler: /usr/bin/cc + Build flags: + Id flags: + + The output was: + 0 + + + Compilation of the C compiler identification source "CMakeCCompilerId.c" produced "a.out" + + The C compiler identification is GNU, found in: + /home/andrew/src2/build/CMakeFiles/4.1.1/CompilerIdC/a.out + + - + kind: "find-v1" + backtrace: + - "/usr/share/cmake/Modules/CMakeFindBinUtils.cmake:238 (find_program)" + - "/usr/share/cmake/Modules/CMakeDetermineCCompiler.cmake:200 (include)" + - "CMakeLists.txt:3 (project)" + mode: "program" + variable: "CMAKE_AR" + description: "Path to a program." + settings: + SearchFramework: "NEVER" + SearchAppBundle: "NEVER" + CMAKE_FIND_USE_CMAKE_PATH: false + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: false + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "ar" + candidate_directories: + - "/usr/bin/" + - "/usr/local/sbin/" + - "/usr/local/bin/" + - "/usr/bin/site_perl/" + - "/usr/bin/vendor_perl/" + - "/usr/bin/core_perl/" + found: "/usr/bin/ar" + search_context: + ENV{PATH}: + - "/usr/local/sbin" + - "/usr/local/bin" + - "/usr/bin" + - "/usr/bin/site_perl" + - "/usr/bin/vendor_perl" + - "/usr/bin/core_perl" + - + kind: "find-v1" + backtrace: + - "/usr/share/cmake/Modules/CMakeFindBinUtils.cmake:238 (find_program)" + - "/usr/share/cmake/Modules/CMakeDetermineCCompiler.cmake:200 (include)" + - "CMakeLists.txt:3 (project)" + mode: "program" + variable: "CMAKE_RANLIB" + description: "Path to a program." + settings: + SearchFramework: "NEVER" + SearchAppBundle: "NEVER" + CMAKE_FIND_USE_CMAKE_PATH: false + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: false + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "ranlib" + candidate_directories: + - "/usr/bin/" + - "/usr/local/sbin/" + - "/usr/local/bin/" + - "/usr/bin/site_perl/" + - "/usr/bin/vendor_perl/" + - "/usr/bin/core_perl/" + found: "/usr/bin/ranlib" + search_context: + ENV{PATH}: + - "/usr/local/sbin" + - "/usr/local/bin" + - "/usr/bin" + - "/usr/bin/site_perl" + - "/usr/bin/vendor_perl" + - "/usr/bin/core_perl" + - + kind: "find-v1" + backtrace: + - "/usr/share/cmake/Modules/CMakeFindBinUtils.cmake:238 (find_program)" + - "/usr/share/cmake/Modules/CMakeDetermineCCompiler.cmake:200 (include)" + - "CMakeLists.txt:3 (project)" + mode: "program" + variable: "CMAKE_STRIP" + description: "Path to a program." + settings: + SearchFramework: "NEVER" + SearchAppBundle: "NEVER" + CMAKE_FIND_USE_CMAKE_PATH: false + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: false + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "strip" + candidate_directories: + - "/usr/bin/" + - "/usr/local/sbin/" + - "/usr/local/bin/" + - "/usr/bin/site_perl/" + - "/usr/bin/vendor_perl/" + - "/usr/bin/core_perl/" + found: "/usr/bin/strip" + search_context: + ENV{PATH}: + - "/usr/local/sbin" + - "/usr/local/bin" + - "/usr/bin" + - "/usr/bin/site_perl" + - "/usr/bin/vendor_perl" + - "/usr/bin/core_perl" + - + kind: "find-v1" + backtrace: + - "/usr/share/cmake/Modules/CMakeFindBinUtils.cmake:238 (find_program)" + - "/usr/share/cmake/Modules/CMakeDetermineCCompiler.cmake:200 (include)" + - "CMakeLists.txt:3 (project)" + mode: "program" + variable: "CMAKE_LINKER" + description: "Path to a program." + settings: + SearchFramework: "NEVER" + SearchAppBundle: "NEVER" + CMAKE_FIND_USE_CMAKE_PATH: false + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: false + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "ld" + candidate_directories: + - "/usr/bin/" + - "/usr/local/sbin/" + - "/usr/local/bin/" + - "/usr/bin/site_perl/" + - "/usr/bin/vendor_perl/" + - "/usr/bin/core_perl/" + found: "/usr/bin/ld" + search_context: + ENV{PATH}: + - "/usr/local/sbin" + - "/usr/local/bin" + - "/usr/bin" + - "/usr/bin/site_perl" + - "/usr/bin/vendor_perl" + - "/usr/bin/core_perl" + - + kind: "find-v1" + backtrace: + - "/usr/share/cmake/Modules/CMakeFindBinUtils.cmake:238 (find_program)" + - "/usr/share/cmake/Modules/CMakeDetermineCCompiler.cmake:200 (include)" + - "CMakeLists.txt:3 (project)" + mode: "program" + variable: "CMAKE_NM" + description: "Path to a program." + settings: + SearchFramework: "NEVER" + SearchAppBundle: "NEVER" + CMAKE_FIND_USE_CMAKE_PATH: false + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: false + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "nm" + candidate_directories: + - "/usr/bin/" + - "/usr/local/sbin/" + - "/usr/local/bin/" + - "/usr/bin/site_perl/" + - "/usr/bin/vendor_perl/" + - "/usr/bin/core_perl/" + found: "/usr/bin/nm" + search_context: + ENV{PATH}: + - "/usr/local/sbin" + - "/usr/local/bin" + - "/usr/bin" + - "/usr/bin/site_perl" + - "/usr/bin/vendor_perl" + - "/usr/bin/core_perl" + - + kind: "find-v1" + backtrace: + - "/usr/share/cmake/Modules/CMakeFindBinUtils.cmake:238 (find_program)" + - "/usr/share/cmake/Modules/CMakeDetermineCCompiler.cmake:200 (include)" + - "CMakeLists.txt:3 (project)" + mode: "program" + variable: "CMAKE_OBJDUMP" + description: "Path to a program." + settings: + SearchFramework: "NEVER" + SearchAppBundle: "NEVER" + CMAKE_FIND_USE_CMAKE_PATH: false + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: false + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "objdump" + candidate_directories: + - "/usr/bin/" + - "/usr/local/sbin/" + - "/usr/local/bin/" + - "/usr/bin/site_perl/" + - "/usr/bin/vendor_perl/" + - "/usr/bin/core_perl/" + found: "/usr/bin/objdump" + search_context: + ENV{PATH}: + - "/usr/local/sbin" + - "/usr/local/bin" + - "/usr/bin" + - "/usr/bin/site_perl" + - "/usr/bin/vendor_perl" + - "/usr/bin/core_perl" + - + kind: "find-v1" + backtrace: + - "/usr/share/cmake/Modules/CMakeFindBinUtils.cmake:238 (find_program)" + - "/usr/share/cmake/Modules/CMakeDetermineCCompiler.cmake:200 (include)" + - "CMakeLists.txt:3 (project)" + mode: "program" + variable: "CMAKE_OBJCOPY" + description: "Path to a program." + settings: + SearchFramework: "NEVER" + SearchAppBundle: "NEVER" + CMAKE_FIND_USE_CMAKE_PATH: false + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: false + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "objcopy" + candidate_directories: + - "/usr/bin/" + - "/usr/local/sbin/" + - "/usr/local/bin/" + - "/usr/bin/site_perl/" + - "/usr/bin/vendor_perl/" + - "/usr/bin/core_perl/" + found: "/usr/bin/objcopy" + search_context: + ENV{PATH}: + - "/usr/local/sbin" + - "/usr/local/bin" + - "/usr/bin" + - "/usr/bin/site_perl" + - "/usr/bin/vendor_perl" + - "/usr/bin/core_perl" + - + kind: "find-v1" + backtrace: + - "/usr/share/cmake/Modules/CMakeFindBinUtils.cmake:238 (find_program)" + - "/usr/share/cmake/Modules/CMakeDetermineCCompiler.cmake:200 (include)" + - "CMakeLists.txt:3 (project)" + mode: "program" + variable: "CMAKE_READELF" + description: "Path to a program." + settings: + SearchFramework: "NEVER" + SearchAppBundle: "NEVER" + CMAKE_FIND_USE_CMAKE_PATH: false + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: false + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "readelf" + candidate_directories: + - "/usr/bin/" + - "/usr/local/sbin/" + - "/usr/local/bin/" + - "/usr/bin/site_perl/" + - "/usr/bin/vendor_perl/" + - "/usr/bin/core_perl/" + found: "/usr/bin/readelf" + search_context: + ENV{PATH}: + - "/usr/local/sbin" + - "/usr/local/bin" + - "/usr/bin" + - "/usr/bin/site_perl" + - "/usr/bin/vendor_perl" + - "/usr/bin/core_perl" + - + kind: "find-v1" + backtrace: + - "/usr/share/cmake/Modules/CMakeFindBinUtils.cmake:238 (find_program)" + - "/usr/share/cmake/Modules/CMakeDetermineCCompiler.cmake:200 (include)" + - "CMakeLists.txt:3 (project)" + mode: "program" + variable: "CMAKE_DLLTOOL" + description: "Path to a program." + settings: + SearchFramework: "NEVER" + SearchAppBundle: "NEVER" + CMAKE_FIND_USE_CMAKE_PATH: false + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: false + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "dlltool" + candidate_directories: + - "/usr/bin/" + - "/usr/local/sbin/" + - "/usr/local/bin/" + - "/usr/bin/site_perl/" + - "/usr/bin/vendor_perl/" + - "/usr/bin/core_perl/" + searched_directories: + - "/usr/bin/dlltool" + - "/usr/local/sbin/dlltool" + - "/usr/local/bin/dlltool" + - "/usr/bin/site_perl/dlltool" + - "/usr/bin/vendor_perl/dlltool" + - "/usr/bin/core_perl/dlltool" + found: false + search_context: + ENV{PATH}: + - "/usr/local/sbin" + - "/usr/local/bin" + - "/usr/bin" + - "/usr/bin/site_perl" + - "/usr/bin/vendor_perl" + - "/usr/bin/core_perl" + - + kind: "find-v1" + backtrace: + - "/usr/share/cmake/Modules/CMakeFindBinUtils.cmake:238 (find_program)" + - "/usr/share/cmake/Modules/CMakeDetermineCCompiler.cmake:200 (include)" + - "CMakeLists.txt:3 (project)" + mode: "program" + variable: "CMAKE_ADDR2LINE" + description: "Path to a program." + settings: + SearchFramework: "NEVER" + SearchAppBundle: "NEVER" + CMAKE_FIND_USE_CMAKE_PATH: false + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: false + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "addr2line" + candidate_directories: + - "/usr/bin/" + - "/usr/local/sbin/" + - "/usr/local/bin/" + - "/usr/bin/site_perl/" + - "/usr/bin/vendor_perl/" + - "/usr/bin/core_perl/" + found: "/usr/bin/addr2line" + search_context: + ENV{PATH}: + - "/usr/local/sbin" + - "/usr/local/bin" + - "/usr/bin" + - "/usr/bin/site_perl" + - "/usr/bin/vendor_perl" + - "/usr/bin/core_perl" + - + kind: "find-v1" + backtrace: + - "/usr/share/cmake/Modules/CMakeFindBinUtils.cmake:238 (find_program)" + - "/usr/share/cmake/Modules/CMakeDetermineCCompiler.cmake:200 (include)" + - "CMakeLists.txt:3 (project)" + mode: "program" + variable: "CMAKE_TAPI" + description: "Path to a program." + settings: + SearchFramework: "NEVER" + SearchAppBundle: "NEVER" + CMAKE_FIND_USE_CMAKE_PATH: false + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: false + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "tapi" + candidate_directories: + - "/usr/bin/" + - "/usr/local/sbin/" + - "/usr/local/bin/" + - "/usr/bin/site_perl/" + - "/usr/bin/vendor_perl/" + - "/usr/bin/core_perl/" + searched_directories: + - "/usr/bin/tapi" + - "/usr/local/sbin/tapi" + - "/usr/local/bin/tapi" + - "/usr/bin/site_perl/tapi" + - "/usr/bin/vendor_perl/tapi" + - "/usr/bin/core_perl/tapi" + found: false + search_context: + ENV{PATH}: + - "/usr/local/sbin" + - "/usr/local/bin" + - "/usr/bin" + - "/usr/bin/site_perl" + - "/usr/bin/vendor_perl" + - "/usr/bin/core_perl" + - + kind: "find-v1" + backtrace: + - "/usr/share/cmake/Modules/Compiler/GNU-FindBinUtils.cmake:18 (find_program)" + - "/usr/share/cmake/Modules/CMakeDetermineCCompiler.cmake:201 (include)" + - "CMakeLists.txt:3 (project)" + mode: "program" + variable: "CMAKE_C_COMPILER_AR" + description: "A wrapper around 'ar' adding the appropriate '--plugin' option for the GCC compiler" + settings: + SearchFramework: "NEVER" + SearchAppBundle: "NEVER" + CMAKE_FIND_USE_CMAKE_PATH: false + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: false + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "gcc-ar-15.2" + - "gcc-ar-15" + - "gcc-ar15" + - "gcc-ar" + candidate_directories: + - "/usr/bin/" + - "/usr/local/sbin/" + - "/usr/local/bin/" + - "/usr/bin/site_perl/" + - "/usr/bin/vendor_perl/" + - "/usr/bin/core_perl/" + searched_directories: + - "/usr/bin/gcc-ar-15.2" + - "/usr/local/sbin/gcc-ar-15.2" + - "/usr/local/bin/gcc-ar-15.2" + - "/usr/bin/site_perl/gcc-ar-15.2" + - "/usr/bin/vendor_perl/gcc-ar-15.2" + - "/usr/bin/core_perl/gcc-ar-15.2" + - "/usr/bin/gcc-ar-15" + - "/usr/local/sbin/gcc-ar-15" + - "/usr/local/bin/gcc-ar-15" + - "/usr/bin/site_perl/gcc-ar-15" + - "/usr/bin/vendor_perl/gcc-ar-15" + - "/usr/bin/core_perl/gcc-ar-15" + - "/usr/bin/gcc-ar15" + - "/usr/local/sbin/gcc-ar15" + - "/usr/local/bin/gcc-ar15" + - "/usr/bin/site_perl/gcc-ar15" + - "/usr/bin/vendor_perl/gcc-ar15" + - "/usr/bin/core_perl/gcc-ar15" + found: "/usr/bin/gcc-ar" + search_context: + ENV{PATH}: + - "/usr/local/sbin" + - "/usr/local/bin" + - "/usr/bin" + - "/usr/bin/site_perl" + - "/usr/bin/vendor_perl" + - "/usr/bin/core_perl" + - + kind: "find-v1" + backtrace: + - "/usr/share/cmake/Modules/Compiler/GNU-FindBinUtils.cmake:30 (find_program)" + - "/usr/share/cmake/Modules/CMakeDetermineCCompiler.cmake:201 (include)" + - "CMakeLists.txt:3 (project)" + mode: "program" + variable: "CMAKE_C_COMPILER_RANLIB" + description: "A wrapper around 'ranlib' adding the appropriate '--plugin' option for the GCC compiler" + settings: + SearchFramework: "NEVER" + SearchAppBundle: "NEVER" + CMAKE_FIND_USE_CMAKE_PATH: false + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: false + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "gcc-ranlib-15.2" + - "gcc-ranlib-15" + - "gcc-ranlib15" + - "gcc-ranlib" + candidate_directories: + - "/usr/bin/" + - "/usr/local/sbin/" + - "/usr/local/bin/" + - "/usr/bin/site_perl/" + - "/usr/bin/vendor_perl/" + - "/usr/bin/core_perl/" + searched_directories: + - "/usr/bin/gcc-ranlib-15.2" + - "/usr/local/sbin/gcc-ranlib-15.2" + - "/usr/local/bin/gcc-ranlib-15.2" + - "/usr/bin/site_perl/gcc-ranlib-15.2" + - "/usr/bin/vendor_perl/gcc-ranlib-15.2" + - "/usr/bin/core_perl/gcc-ranlib-15.2" + - "/usr/bin/gcc-ranlib-15" + - "/usr/local/sbin/gcc-ranlib-15" + - "/usr/local/bin/gcc-ranlib-15" + - "/usr/bin/site_perl/gcc-ranlib-15" + - "/usr/bin/vendor_perl/gcc-ranlib-15" + - "/usr/bin/core_perl/gcc-ranlib-15" + - "/usr/bin/gcc-ranlib15" + - "/usr/local/sbin/gcc-ranlib15" + - "/usr/local/bin/gcc-ranlib15" + - "/usr/bin/site_perl/gcc-ranlib15" + - "/usr/bin/vendor_perl/gcc-ranlib15" + - "/usr/bin/core_perl/gcc-ranlib15" + found: "/usr/bin/gcc-ranlib" + search_context: + ENV{PATH}: + - "/usr/local/sbin" + - "/usr/local/bin" + - "/usr/bin" + - "/usr/bin/site_perl" + - "/usr/bin/vendor_perl" + - "/usr/bin/core_perl" + - + kind: "try_compile-v1" + backtrace: + - "/usr/share/cmake/Modules/CMakeDetermineCompilerABI.cmake:83 (try_compile)" + - "/usr/share/cmake/Modules/CMakeTestCCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "CMakeLists.txt:3 (project)" + checks: + - "Detecting C compiler ABI info" + directories: + source: "/home/andrew/src2/build/CMakeFiles/CMakeScratch/TryCompile-Z312ka" + binary: "/home/andrew/src2/build/CMakeFiles/CMakeScratch/TryCompile-Z312ka" + cmakeVariables: + CMAKE_C_FLAGS: "" + CMAKE_C_FLAGS_DEBUG: "-g" + CMAKE_EXE_LINKER_FLAGS: "" + buildResult: + variable: "CMAKE_C_ABI_COMPILED" + cached: true + stdout: | + Change Dir: '/home/andrew/src2/build/CMakeFiles/CMakeScratch/TryCompile-Z312ka' + + Run Build Command(s): /usr/bin/cmake -E env VERBOSE=1 /usr/bin/make -f Makefile cmTC_01592/fast + /usr/bin/make -f CMakeFiles/cmTC_01592.dir/build.make CMakeFiles/cmTC_01592.dir/build + make[1]: Entering directory '/home/andrew/src2/build/CMakeFiles/CMakeScratch/TryCompile-Z312ka' + Building C object CMakeFiles/cmTC_01592.dir/CMakeCCompilerABI.c.o + /usr/bin/cc -v -o CMakeFiles/cmTC_01592.dir/CMakeCCompilerABI.c.o -c /usr/share/cmake/Modules/CMakeCCompilerABI.c + Using built-in specs. + COLLECT_GCC=/usr/bin/cc + Target: x86_64-pc-linux-gnu + Configured with: /build/gcc/src/gcc/configure --enable-languages=ada,c,c++,d,fortran,go,lto,m2,objc,obj-c++,rust,cobol --enable-bootstrap --prefix=/usr --libdir=/usr/lib --libexecdir=/usr/lib --mandir=/usr/share/man --infodir=/usr/share/info --with-bugurl=https://gitlab.archlinux.org/archlinux/packaging/packages/gcc/-/issues --with-build-config=bootstrap-lto --with-linker-hash-style=gnu --with-system-zlib --enable-__cxa_atexit --enable-cet=auto --enable-checking=release --enable-clocale=gnu --enable-default-pie --enable-default-ssp --enable-gnu-indirect-function --enable-gnu-unique-object --enable-libstdcxx-backtrace --enable-link-serialization=1 --enable-linker-build-id --enable-lto --enable-multilib --enable-plugin --enable-shared --enable-threads=posix --disable-libssp --disable-libstdcxx-pch --disable-werror + Thread model: posix + Supported LTO compression algorithms: zlib zstd + gcc version 15.2.1 20250813 (GCC) + COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_01592.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_01592.dir/' + /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/cc1 -quiet -v /usr/share/cmake/Modules/CMakeCCompilerABI.c -quiet -dumpdir CMakeFiles/cmTC_01592.dir/ -dumpbase CMakeCCompilerABI.c.c -dumpbase-ext .c -mtune=generic -march=x86-64 -version -o /tmp/cc0jq2Si.s + GNU C23 (GCC) version 15.2.1 20250813 (x86_64-pc-linux-gnu) + compiled by GNU C version 15.2.1 20250813, GMP version 6.3.0, MPFR version 4.2.2, MPC version 1.3.1, isl version isl-0.27-GMP + + GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 + ignoring nonexistent directory "/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../x86_64-pc-linux-gnu/include" + #include "..." search starts here: + #include <...> search starts here: + /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include + /usr/local/include + /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include-fixed + /usr/include + End of search list. + Compiler executable checksum: 09af9d42b9185573b6c370dd7aa39e64 + COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_01592.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_01592.dir/' + as -v --64 -o CMakeFiles/cmTC_01592.dir/CMakeCCompilerABI.c.o /tmp/cc0jq2Si.s + GNU assembler version 2.45.0 (x86_64-pc-linux-gnu) using BFD version (GNU Binutils) 2.45.0 + COMPILER_PATH=/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/:/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/:/usr/lib/gcc/x86_64-pc-linux-gnu/:/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/:/usr/lib/gcc/x86_64-pc-linux-gnu/ + LIBRARY_PATH=/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/:/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/:/lib/../lib/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../:/lib/:/usr/lib/ + COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_01592.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_01592.dir/CMakeCCompilerABI.c.' + Linking C executable cmTC_01592 + /usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_01592.dir/link.txt --verbose=1 + Using built-in specs. + COLLECT_GCC=/usr/bin/cc + COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/lto-wrapper + Target: x86_64-pc-linux-gnu + Configured with: /build/gcc/src/gcc/configure --enable-languages=ada,c,c++,d,fortran,go,lto,m2,objc,obj-c++,rust,cobol --enable-bootstrap --prefix=/usr --libdir=/usr/lib --libexecdir=/usr/lib --mandir=/usr/share/man --infodir=/usr/share/info --with-bugurl=https://gitlab.archlinux.org/archlinux/packaging/packages/gcc/-/issues --with-build-config=bootstrap-lto --with-linker-hash-style=gnu --with-system-zlib --enable-__cxa_atexit --enable-cet=auto --enable-checking=release --enable-clocale=gnu --enable-default-pie --enable-default-ssp --enable-gnu-indirect-function --enable-gnu-unique-object --enable-libstdcxx-backtrace --enable-link-serialization=1 --enable-linker-build-id --enable-lto --enable-multilib --enable-plugin --enable-shared --enable-threads=posix --disable-libssp --disable-libstdcxx-pch --disable-werror + Thread model: posix + Supported LTO compression algorithms: zlib zstd + gcc version 15.2.1 20250813 (GCC) + COMPILER_PATH=/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/:/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/:/usr/lib/gcc/x86_64-pc-linux-gnu/:/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/:/usr/lib/gcc/x86_64-pc-linux-gnu/ + LIBRARY_PATH=/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/:/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/:/lib/../lib/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../:/lib/:/usr/lib/ + COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_01592' '-mtune=generic' '-march=x86-64' '-dumpdir' 'cmTC_01592.' + /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/collect2 -plugin /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/lto-wrapper -plugin-opt=-fresolution=/tmp/ccDeQnVg.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s --build-id --eh-frame-hdr --hash-style=gnu -m elf_x86_64 -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -o cmTC_01592 /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/Scrt1.o /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/crti.o /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/crtbeginS.o -L/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1 -L/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib -L/lib/../lib -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../.. -L/lib -L/usr/lib -v CMakeFiles/cmTC_01592.dir/CMakeCCompilerABI.c.o -lgcc --push-state --as-needed -lgcc_s --pop-state -lc -lgcc --push-state --as-needed -lgcc_s --pop-state /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/crtendS.o /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/crtn.o + collect2 version 15.2.1 20250813 + /usr/bin/ld -plugin /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/lto-wrapper -plugin-opt=-fresolution=/tmp/ccDeQnVg.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s --build-id --eh-frame-hdr --hash-style=gnu -m elf_x86_64 -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -o cmTC_01592 /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/Scrt1.o /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/crti.o /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/crtbeginS.o -L/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1 -L/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib -L/lib/../lib -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../.. -L/lib -L/usr/lib -v CMakeFiles/cmTC_01592.dir/CMakeCCompilerABI.c.o -lgcc --push-state --as-needed -lgcc_s --pop-state -lc -lgcc --push-state --as-needed -lgcc_s --pop-state /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/crtendS.o /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/crtn.o + GNU ld (GNU Binutils) 2.45.0 + COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_01592' '-mtune=generic' '-march=x86-64' '-dumpdir' 'cmTC_01592.' + /usr/bin/cc -v -Wl,-v CMakeFiles/cmTC_01592.dir/CMakeCCompilerABI.c.o -o cmTC_01592 + make[1]: Leaving directory '/home/andrew/src2/build/CMakeFiles/CMakeScratch/TryCompile-Z312ka' + + exitCode: 0 + - + kind: "message-v1" + backtrace: + - "/usr/share/cmake/Modules/CMakeDetermineCompilerABI.cmake:217 (message)" + - "/usr/share/cmake/Modules/CMakeTestCCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "CMakeLists.txt:3 (project)" + message: | + Parsed C implicit include dir info: rv=done + found start of include info + found start of implicit include info + add: [/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include] + add: [/usr/local/include] + add: [/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include-fixed] + add: [/usr/include] + end of search list found + collapse include dir [/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include] ==> [/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include] + collapse include dir [/usr/local/include] ==> [/usr/local/include] + collapse include dir [/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include-fixed] ==> [/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include-fixed] + collapse include dir [/usr/include] ==> [/usr/include] + implicit include dirs: [/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include;/usr/local/include;/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include-fixed;/usr/include] + + + - + kind: "message-v1" + backtrace: + - "/usr/share/cmake/Modules/CMakeDetermineCompilerABI.cmake:253 (message)" + - "/usr/share/cmake/Modules/CMakeTestCCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "CMakeLists.txt:3 (project)" + message: | + Parsed C implicit link information: + link line regex: [^( *|.*[/\\])(ld[0-9]*(|\\.[a-rt-z][a-z]*|\\.s[a-np-z][a-z]*|\\.so[a-z]+)|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\\]+-)?ld|collect2)[^/\\]*( |$)] + linker tool regex: [^[ ]*(->|")?[ ]*(([^"]*[/\\])?(ld[0-9]*(|\\.[a-rt-z][a-z]*|\\.s[a-np-z][a-z]*|\\.so[a-z]+)))("|,| |$)] + ignore line: [Change Dir: '/home/andrew/src2/build/CMakeFiles/CMakeScratch/TryCompile-Z312ka'] + ignore line: [] + ignore line: [Run Build Command(s): /usr/bin/cmake -E env VERBOSE=1 /usr/bin/make -f Makefile cmTC_01592/fast] + ignore line: [/usr/bin/make -f CMakeFiles/cmTC_01592.dir/build.make CMakeFiles/cmTC_01592.dir/build] + ignore line: [make[1]: Entering directory '/home/andrew/src2/build/CMakeFiles/CMakeScratch/TryCompile-Z312ka'] + ignore line: [Building C object CMakeFiles/cmTC_01592.dir/CMakeCCompilerABI.c.o] + ignore line: [/usr/bin/cc -v -o CMakeFiles/cmTC_01592.dir/CMakeCCompilerABI.c.o -c /usr/share/cmake/Modules/CMakeCCompilerABI.c] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=/usr/bin/cc] + ignore line: [Target: x86_64-pc-linux-gnu] + ignore line: [Configured with: /build/gcc/src/gcc/configure --enable-languages=ada c c++ d fortran go lto m2 objc obj-c++ rust cobol --enable-bootstrap --prefix=/usr --libdir=/usr/lib --libexecdir=/usr/lib --mandir=/usr/share/man --infodir=/usr/share/info --with-bugurl=https://gitlab.archlinux.org/archlinux/packaging/packages/gcc/-/issues --with-build-config=bootstrap-lto --with-linker-hash-style=gnu --with-system-zlib --enable-__cxa_atexit --enable-cet=auto --enable-checking=release --enable-clocale=gnu --enable-default-pie --enable-default-ssp --enable-gnu-indirect-function --enable-gnu-unique-object --enable-libstdcxx-backtrace --enable-link-serialization=1 --enable-linker-build-id --enable-lto --enable-multilib --enable-plugin --enable-shared --enable-threads=posix --disable-libssp --disable-libstdcxx-pch --disable-werror] + ignore line: [Thread model: posix] + ignore line: [Supported LTO compression algorithms: zlib zstd] + ignore line: [gcc version 15.2.1 20250813 (GCC) ] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_01592.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_01592.dir/'] + ignore line: [ /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/cc1 -quiet -v /usr/share/cmake/Modules/CMakeCCompilerABI.c -quiet -dumpdir CMakeFiles/cmTC_01592.dir/ -dumpbase CMakeCCompilerABI.c.c -dumpbase-ext .c -mtune=generic -march=x86-64 -version -o /tmp/cc0jq2Si.s] + ignore line: [GNU C23 (GCC) version 15.2.1 20250813 (x86_64-pc-linux-gnu)] + ignore line: [ compiled by GNU C version 15.2.1 20250813 GMP version 6.3.0 MPFR version 4.2.2 MPC version 1.3.1 isl version isl-0.27-GMP] + ignore line: [] + ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072] + ignore line: [ignoring nonexistent directory "/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../x86_64-pc-linux-gnu/include"] + ignore line: [#include "..." search starts here:] + ignore line: [#include <...> search starts here:] + ignore line: [ /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include] + ignore line: [ /usr/local/include] + ignore line: [ /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include-fixed] + ignore line: [ /usr/include] + ignore line: [End of search list.] + ignore line: [Compiler executable checksum: 09af9d42b9185573b6c370dd7aa39e64] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_01592.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_01592.dir/'] + ignore line: [ as -v --64 -o CMakeFiles/cmTC_01592.dir/CMakeCCompilerABI.c.o /tmp/cc0jq2Si.s] + ignore line: [GNU assembler version 2.45.0 (x86_64-pc-linux-gnu) using BFD version (GNU Binutils) 2.45.0] + ignore line: [COMPILER_PATH=/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/:/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/:/usr/lib/gcc/x86_64-pc-linux-gnu/:/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/:/usr/lib/gcc/x86_64-pc-linux-gnu/] + ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/:/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/:/lib/../lib/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../:/lib/:/usr/lib/] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_01592.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_01592.dir/CMakeCCompilerABI.c.'] + ignore line: [Linking C executable cmTC_01592] + ignore line: [/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_01592.dir/link.txt --verbose=1] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=/usr/bin/cc] + ignore line: [COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/lto-wrapper] + ignore line: [Target: x86_64-pc-linux-gnu] + ignore line: [Configured with: /build/gcc/src/gcc/configure --enable-languages=ada c c++ d fortran go lto m2 objc obj-c++ rust cobol --enable-bootstrap --prefix=/usr --libdir=/usr/lib --libexecdir=/usr/lib --mandir=/usr/share/man --infodir=/usr/share/info --with-bugurl=https://gitlab.archlinux.org/archlinux/packaging/packages/gcc/-/issues --with-build-config=bootstrap-lto --with-linker-hash-style=gnu --with-system-zlib --enable-__cxa_atexit --enable-cet=auto --enable-checking=release --enable-clocale=gnu --enable-default-pie --enable-default-ssp --enable-gnu-indirect-function --enable-gnu-unique-object --enable-libstdcxx-backtrace --enable-link-serialization=1 --enable-linker-build-id --enable-lto --enable-multilib --enable-plugin --enable-shared --enable-threads=posix --disable-libssp --disable-libstdcxx-pch --disable-werror] + ignore line: [Thread model: posix] + ignore line: [Supported LTO compression algorithms: zlib zstd] + ignore line: [gcc version 15.2.1 20250813 (GCC) ] + ignore line: [COMPILER_PATH=/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/:/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/:/usr/lib/gcc/x86_64-pc-linux-gnu/:/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/:/usr/lib/gcc/x86_64-pc-linux-gnu/] + ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/:/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/:/lib/../lib/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../:/lib/:/usr/lib/] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_01592' '-mtune=generic' '-march=x86-64' '-dumpdir' 'cmTC_01592.'] + link line: [ /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/collect2 -plugin /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/lto-wrapper -plugin-opt=-fresolution=/tmp/ccDeQnVg.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s --build-id --eh-frame-hdr --hash-style=gnu -m elf_x86_64 -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -o cmTC_01592 /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/Scrt1.o /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/crti.o /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/crtbeginS.o -L/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1 -L/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib -L/lib/../lib -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../.. -L/lib -L/usr/lib -v CMakeFiles/cmTC_01592.dir/CMakeCCompilerABI.c.o -lgcc --push-state --as-needed -lgcc_s --pop-state -lc -lgcc --push-state --as-needed -lgcc_s --pop-state /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/crtendS.o /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/crtn.o] + arg [/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/collect2] ==> ignore + arg [-plugin] ==> ignore + arg [/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/liblto_plugin.so] ==> ignore + arg [-plugin-opt=/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/lto-wrapper] ==> ignore + arg [-plugin-opt=-fresolution=/tmp/ccDeQnVg.res] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore + arg [-plugin-opt=-pass-through=-lc] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore + arg [--build-id] ==> ignore + arg [--eh-frame-hdr] ==> ignore + arg [--hash-style=gnu] ==> ignore + arg [-m] ==> ignore + arg [elf_x86_64] ==> ignore + arg [-dynamic-linker] ==> ignore + arg [/lib64/ld-linux-x86-64.so.2] ==> ignore + arg [-pie] ==> ignore + arg [-o] ==> ignore + arg [cmTC_01592] ==> ignore + arg [/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/Scrt1.o] ==> obj [/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/Scrt1.o] + arg [/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/crti.o] ==> obj [/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/crti.o] + arg [/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/crtbeginS.o] ==> obj [/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/crtbeginS.o] + arg [-L/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1] ==> dir [/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1] + arg [-L/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib] ==> dir [/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib] + arg [-L/lib/../lib] ==> dir [/lib/../lib] + arg [-L/usr/lib/../lib] ==> dir [/usr/lib/../lib] + arg [-L/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../..] ==> dir [/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../..] + arg [-L/lib] ==> dir [/lib] + arg [-L/usr/lib] ==> dir [/usr/lib] + arg [-v] ==> ignore + arg [CMakeFiles/cmTC_01592.dir/CMakeCCompilerABI.c.o] ==> ignore + arg [-lgcc] ==> lib [gcc] + arg [--push-state] ==> ignore + arg [--as-needed] ==> ignore + arg [-lgcc_s] ==> lib [gcc_s] + arg [--pop-state] ==> ignore + arg [-lc] ==> lib [c] + arg [-lgcc] ==> lib [gcc] + arg [--push-state] ==> ignore + arg [--as-needed] ==> ignore + arg [-lgcc_s] ==> lib [gcc_s] + arg [--pop-state] ==> ignore + arg [/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/crtendS.o] ==> obj [/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/crtendS.o] + arg [/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/crtn.o] ==> obj [/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/crtn.o] + ignore line: [collect2 version 15.2.1 20250813] + ignore line: [/usr/bin/ld -plugin /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/lto-wrapper -plugin-opt=-fresolution=/tmp/ccDeQnVg.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s --build-id --eh-frame-hdr --hash-style=gnu -m elf_x86_64 -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -o cmTC_01592 /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/Scrt1.o /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/crti.o /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/crtbeginS.o -L/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1 -L/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib -L/lib/../lib -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../.. -L/lib -L/usr/lib -v CMakeFiles/cmTC_01592.dir/CMakeCCompilerABI.c.o -lgcc --push-state --as-needed -lgcc_s --pop-state -lc -lgcc --push-state --as-needed -lgcc_s --pop-state /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/crtendS.o /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/crtn.o] + linker tool for 'C': /usr/bin/ld + collapse obj [/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/Scrt1.o] ==> [/usr/lib/Scrt1.o] + collapse obj [/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/crti.o] ==> [/usr/lib/crti.o] + collapse obj [/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/crtn.o] ==> [/usr/lib/crtn.o] + collapse library dir [/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1] ==> [/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1] + collapse library dir [/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib] ==> [/usr/lib] + collapse library dir [/lib/../lib] ==> [/lib] + collapse library dir [/usr/lib/../lib] ==> [/usr/lib] + collapse library dir [/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../..] ==> [/usr/lib] + collapse library dir [/lib] ==> [/lib] + collapse library dir [/usr/lib] ==> [/usr/lib] + implicit libs: [gcc;gcc_s;c;gcc;gcc_s] + implicit objs: [/usr/lib/Scrt1.o;/usr/lib/crti.o;/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/crtbeginS.o;/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/crtendS.o;/usr/lib/crtn.o] + implicit dirs: [/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1;/usr/lib;/lib] + implicit fwks: [] + + + - + kind: "message-v1" + backtrace: + - "/usr/share/cmake/Modules/Internal/CMakeDetermineLinkerId.cmake:36 (message)" + - "/usr/share/cmake/Modules/CMakeDetermineCompilerABI.cmake:299 (cmake_determine_linker_id)" + - "/usr/share/cmake/Modules/CMakeTestCCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "CMakeLists.txt:3 (project)" + message: | + Running the C compiler's linker: "/usr/bin/ld" "-v" + GNU ld (GNU Binutils) 2.45.0 +... diff --git a/build/CMakeFiles/CMakeDirectoryInformation.cmake b/build/CMakeFiles/CMakeDirectoryInformation.cmake new file mode 100644 index 0000000..e5d7c5f --- /dev/null +++ b/build/CMakeFiles/CMakeDirectoryInformation.cmake @@ -0,0 +1,16 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 4.1 + +# Relative path conversion top directories. +set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/home/andrew/src2") +set(CMAKE_RELATIVE_PATH_TOP_BINARY "/home/andrew/src2/build") + +# Force unix paths in dependencies. +set(CMAKE_FORCE_UNIX_PATHS 1) + + +# The C and CXX include file regular expressions for this directory. +set(CMAKE_C_INCLUDE_REGEX_SCAN "^.*$") +set(CMAKE_C_INCLUDE_REGEX_COMPLAIN "^$") +set(CMAKE_CXX_INCLUDE_REGEX_SCAN ${CMAKE_C_INCLUDE_REGEX_SCAN}) +set(CMAKE_CXX_INCLUDE_REGEX_COMPLAIN ${CMAKE_C_INCLUDE_REGEX_COMPLAIN}) diff --git a/build/CMakeFiles/InstallScripts.json b/build/CMakeFiles/InstallScripts.json new file mode 100644 index 0000000..42ad1e3 --- /dev/null +++ b/build/CMakeFiles/InstallScripts.json @@ -0,0 +1,7 @@ +{ + "InstallScripts" : + [ + "/home/andrew/src2/build/cmake_install.cmake" + ], + "Parallel" : false +} diff --git a/build/CMakeFiles/Makefile.cmake b/build/CMakeFiles/Makefile.cmake new file mode 100644 index 0000000..f42f4b9 --- /dev/null +++ b/build/CMakeFiles/Makefile.cmake @@ -0,0 +1,52 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 4.1 + +# The generator used is: +set(CMAKE_DEPENDS_GENERATOR "Unix Makefiles") + +# The top level Makefile was generated from the following files: +set(CMAKE_MAKEFILE_DEPENDS + "CMakeCache.txt" + "/home/andrew/src2/CMakeLists.txt" + "CMakeFiles/4.1.1/CMakeCCompiler.cmake" + "CMakeFiles/4.1.1/CMakeSystem.cmake" + "/usr/share/cmake/Modules/CMakeCInformation.cmake" + "/usr/share/cmake/Modules/CMakeCommonLanguageInclude.cmake" + "/usr/share/cmake/Modules/CMakeGenericSystem.cmake" + "/usr/share/cmake/Modules/CMakeInitializeConfigs.cmake" + "/usr/share/cmake/Modules/CMakeLanguageInformation.cmake" + "/usr/share/cmake/Modules/CMakeSystemSpecificInformation.cmake" + "/usr/share/cmake/Modules/CMakeSystemSpecificInitialize.cmake" + "/usr/share/cmake/Modules/Compiler/CMakeCommonCompilerMacros.cmake" + "/usr/share/cmake/Modules/Compiler/GNU-C.cmake" + "/usr/share/cmake/Modules/Compiler/GNU.cmake" + "/usr/share/cmake/Modules/Internal/CMakeCLinkerInformation.cmake" + "/usr/share/cmake/Modules/Internal/CMakeCommonLinkerInformation.cmake" + "/usr/share/cmake/Modules/Linker/GNU-C.cmake" + "/usr/share/cmake/Modules/Linker/GNU.cmake" + "/usr/share/cmake/Modules/Platform/Linker/GNU.cmake" + "/usr/share/cmake/Modules/Platform/Linker/Linux-GNU-C.cmake" + "/usr/share/cmake/Modules/Platform/Linker/Linux-GNU.cmake" + "/usr/share/cmake/Modules/Platform/Linux-GNU-C.cmake" + "/usr/share/cmake/Modules/Platform/Linux-GNU.cmake" + "/usr/share/cmake/Modules/Platform/Linux-Initialize.cmake" + "/usr/share/cmake/Modules/Platform/Linux.cmake" + "/usr/share/cmake/Modules/Platform/UnixPaths.cmake" + ) + +# The corresponding makefile is: +set(CMAKE_MAKEFILE_OUTPUTS + "Makefile" + "CMakeFiles/cmake.check_cache" + ) + +# Byproducts of CMake generate step: +set(CMAKE_MAKEFILE_PRODUCTS + "CMakeFiles/CMakeDirectoryInformation.cmake" + ) + +# Dependency information for all targets: +set(CMAKE_DEPEND_INFO_FILES + "CMakeFiles/stack.dir/DependInfo.cmake" + "CMakeFiles/sortStation.dir/DependInfo.cmake" + ) diff --git a/build/CMakeFiles/Makefile2 b/build/CMakeFiles/Makefile2 new file mode 100644 index 0000000..97522c6 --- /dev/null +++ b/build/CMakeFiles/Makefile2 @@ -0,0 +1,157 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 4.1 + +# Default target executed when no arguments are given to make. +default_target: all +.PHONY : default_target + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/bin/cmake + +# The command to remove a file. +RM = /usr/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /home/andrew/src2 + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/andrew/src2/build + +#============================================================================= +# Directory level rules for the build root directory + +# The main recursive "all" target. +all: CMakeFiles/stack.dir/all +all: CMakeFiles/sortStation.dir/all +.PHONY : all + +# The main recursive "codegen" target. +codegen: CMakeFiles/stack.dir/codegen +codegen: CMakeFiles/sortStation.dir/codegen +.PHONY : codegen + +# The main recursive "preinstall" target. +preinstall: +.PHONY : preinstall + +# The main recursive "clean" target. +clean: CMakeFiles/stack.dir/clean +clean: CMakeFiles/sortStation.dir/clean +.PHONY : clean + +#============================================================================= +# Target rules for target CMakeFiles/stack.dir + +# All Build rule for target. +CMakeFiles/stack.dir/all: + $(MAKE) $(MAKESILENT) -f CMakeFiles/stack.dir/build.make CMakeFiles/stack.dir/depend + $(MAKE) $(MAKESILENT) -f CMakeFiles/stack.dir/build.make CMakeFiles/stack.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/home/andrew/src2/build/CMakeFiles --progress-num=3,4 "Built target stack" +.PHONY : CMakeFiles/stack.dir/all + +# Build rule for subdir invocation for target. +CMakeFiles/stack.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/andrew/src2/build/CMakeFiles 2 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 CMakeFiles/stack.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/andrew/src2/build/CMakeFiles 0 +.PHONY : CMakeFiles/stack.dir/rule + +# Convenience name for target. +stack: CMakeFiles/stack.dir/rule +.PHONY : stack + +# codegen rule for target. +CMakeFiles/stack.dir/codegen: + $(MAKE) $(MAKESILENT) -f CMakeFiles/stack.dir/build.make CMakeFiles/stack.dir/codegen + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/home/andrew/src2/build/CMakeFiles --progress-num=3,4 "Finished codegen for target stack" +.PHONY : CMakeFiles/stack.dir/codegen + +# clean rule for target. +CMakeFiles/stack.dir/clean: + $(MAKE) $(MAKESILENT) -f CMakeFiles/stack.dir/build.make CMakeFiles/stack.dir/clean +.PHONY : CMakeFiles/stack.dir/clean + +#============================================================================= +# Target rules for target CMakeFiles/sortStation.dir + +# All Build rule for target. +CMakeFiles/sortStation.dir/all: CMakeFiles/stack.dir/all + $(MAKE) $(MAKESILENT) -f CMakeFiles/sortStation.dir/build.make CMakeFiles/sortStation.dir/depend + $(MAKE) $(MAKESILENT) -f CMakeFiles/sortStation.dir/build.make CMakeFiles/sortStation.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/home/andrew/src2/build/CMakeFiles --progress-num=1,2 "Built target sortStation" +.PHONY : CMakeFiles/sortStation.dir/all + +# Build rule for subdir invocation for target. +CMakeFiles/sortStation.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/andrew/src2/build/CMakeFiles 4 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 CMakeFiles/sortStation.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/andrew/src2/build/CMakeFiles 0 +.PHONY : CMakeFiles/sortStation.dir/rule + +# Convenience name for target. +sortStation: CMakeFiles/sortStation.dir/rule +.PHONY : sortStation + +# codegen rule for target. +CMakeFiles/sortStation.dir/codegen: + $(MAKE) $(MAKESILENT) -f CMakeFiles/sortStation.dir/build.make CMakeFiles/sortStation.dir/codegen + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/home/andrew/src2/build/CMakeFiles --progress-num=1,2 "Finished codegen for target sortStation" +.PHONY : CMakeFiles/sortStation.dir/codegen + +# clean rule for target. +CMakeFiles/sortStation.dir/clean: + $(MAKE) $(MAKESILENT) -f CMakeFiles/sortStation.dir/build.make CMakeFiles/sortStation.dir/clean +.PHONY : CMakeFiles/sortStation.dir/clean + +#============================================================================= +# Special targets to cleanup operation of make. + +# Special rule to run CMake to check the build system integrity. +# No rule that depends on this can have commands that come from listfiles +# because they might be regenerated. +cmake_check_build_system: + $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 +.PHONY : cmake_check_build_system + diff --git a/build/CMakeFiles/TargetDirectories.txt b/build/CMakeFiles/TargetDirectories.txt new file mode 100644 index 0000000..9174acb --- /dev/null +++ b/build/CMakeFiles/TargetDirectories.txt @@ -0,0 +1,4 @@ +/home/andrew/src2/build/CMakeFiles/stack.dir +/home/andrew/src2/build/CMakeFiles/sortStation.dir +/home/andrew/src2/build/CMakeFiles/edit_cache.dir +/home/andrew/src2/build/CMakeFiles/rebuild_cache.dir diff --git a/build/CMakeFiles/advancBalancStap.dir/DependInfo.cmake b/build/CMakeFiles/advancBalancStap.dir/DependInfo.cmake new file mode 100644 index 0000000..425e565 --- /dev/null +++ b/build/CMakeFiles/advancBalancStap.dir/DependInfo.cmake @@ -0,0 +1,24 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + "/home/andrew/src2/advancBalancStap.c" "CMakeFiles/advancBalancStap.dir/advancBalancStap.c.o" "gcc" "CMakeFiles/advancBalancStap.dir/advancBalancStap.c.o.d" + "" "advancBalancStap" "gcc" "CMakeFiles/advancBalancStap.dir/link.d" + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_FORWARD_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/CMakeFiles/advancBalancStap.dir/advancBalancStap.c.o b/build/CMakeFiles/advancBalancStap.dir/advancBalancStap.c.o new file mode 100644 index 0000000000000000000000000000000000000000..7b565fde85e915d2c4ad78876584958e811b8dba GIT binary patch literal 2872 zcmbuB&ube;6vyAnj-9r)r5YCsNy|c;Ak%cQToTg66xC+yCA2vtxP*ox*3!y$ZT&zR zrAdv6ZKb6`PEp%S{(;^@h=bc;BNAwuLt%9ZJ@lA@f&y(EA9N_F?~Qh(@k-l6`(Srw zKHvA=yqy`1eO3SP1D~RRFa_R&_DE2Gt^RgD%)4P2fap{sTOjNt0Wl( zz5cVlt31&6X!v9oUqyY-h}uR`uNsQ&zXKCN7VKclY@~x-%pG+z{|+Up7akdf2YkXO z8(n7b@09cP6?P0?S7Z75DC^JHKV>It7bsRleyu-WU3ng46Id_QPIOAk>`gAc-YH#V z16=AW)p|=crR2Y(@8PN~7^vooV==(sknh1Bt} z@#AABL+?=K^wFT=L(7Lw-~**hOq^ZCH6B5YO!?v*D3=4up@IH`C3HTFj2^OO3Vwem z@Re_Bu&?Kmf-YQ};3~lP)C%4A4auHHse0jAqnkrdtIGXq5C59|jOrei{CSPYsOG?a zS3Xib_z@32>cK-E{DcQTjhyNf_3^br7WVL;_TV3R@be!06Aun%?2?&`PMS;jKF`dw z7KK?pupnuD4(VKW9@42aEM)aWnq5J_vJlT$79`AtB&0J7Nfw7Ji{T(XXQ7y7nI$U; zkw})A(Zxt~elZd^7nZO9sRlZObSCj<#chp5G~#{u2!59!8gaT>1%E^k&CQ=RaR(34 zK|>>dI*uaGq{Ds4@YmhqXC(g@B>u6)UzB*nm1h_=vN_3L&Xbk6oaYBuo?tT#+>-nU zkcs+#l>7%J{;T9aB=O%R?w9zV5~np1`47^D!!$w+ow_&ChpZ7$9^XxS?X zX3k>EGR<~g^fK0xsWIy^11)AU6SUcE7PL&NIf$kb2`h@<2XV{^f?)a($E(k}b zb;r{w?6&^_=l?`8KkYx=4 CMakeFiles/advancBalancStap.dir/advancBalancStap.c.i + +CMakeFiles/advancBalancStap.dir/advancBalancStap.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/advancBalancStap.dir/advancBalancStap.c.s" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/andrew/src2/advancBalancStap.c -o CMakeFiles/advancBalancStap.dir/advancBalancStap.c.s + +# Object files for target advancBalancStap +advancBalancStap_OBJECTS = \ +"CMakeFiles/advancBalancStap.dir/advancBalancStap.c.o" + +# External object files for target advancBalancStap +advancBalancStap_EXTERNAL_OBJECTS = + +advancBalancStap: CMakeFiles/advancBalancStap.dir/advancBalancStap.c.o +advancBalancStap: CMakeFiles/advancBalancStap.dir/build.make +advancBalancStap: CMakeFiles/advancBalancStap.dir/compiler_depend.ts +advancBalancStap: libstack.a +advancBalancStap: CMakeFiles/advancBalancStap.dir/link.txt + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --bold --progress-dir=/home/andrew/src2/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Linking C executable advancBalancStap" + $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/advancBalancStap.dir/link.txt --verbose=$(VERBOSE) + +# Rule to build all files generated by this target. +CMakeFiles/advancBalancStap.dir/build: advancBalancStap +.PHONY : CMakeFiles/advancBalancStap.dir/build + +CMakeFiles/advancBalancStap.dir/clean: + $(CMAKE_COMMAND) -P CMakeFiles/advancBalancStap.dir/cmake_clean.cmake +.PHONY : CMakeFiles/advancBalancStap.dir/clean + +CMakeFiles/advancBalancStap.dir/depend: + cd /home/andrew/src2/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/andrew/src2 /home/andrew/src2 /home/andrew/src2/build /home/andrew/src2/build /home/andrew/src2/build/CMakeFiles/advancBalancStap.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : CMakeFiles/advancBalancStap.dir/depend + diff --git a/build/CMakeFiles/advancBalancStap.dir/cmake_clean.cmake b/build/CMakeFiles/advancBalancStap.dir/cmake_clean.cmake new file mode 100644 index 0000000..745bf6d --- /dev/null +++ b/build/CMakeFiles/advancBalancStap.dir/cmake_clean.cmake @@ -0,0 +1,12 @@ +file(REMOVE_RECURSE + "CMakeFiles/advancBalancStap.dir/link.d" + "CMakeFiles/advancBalancStap.dir/advancBalancStap.c.o" + "CMakeFiles/advancBalancStap.dir/advancBalancStap.c.o.d" + "advancBalancStap" + "advancBalancStap.pdb" +) + +# Per-language clean rules from dependency scanning. +foreach(lang C) + include(CMakeFiles/advancBalancStap.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/CMakeFiles/advancBalancStap.dir/compiler_depend.make b/build/CMakeFiles/advancBalancStap.dir/compiler_depend.make new file mode 100644 index 0000000..c867044 --- /dev/null +++ b/build/CMakeFiles/advancBalancStap.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty compiler generated dependencies file for advancBalancStap. +# This may be replaced when dependencies are built. diff --git a/build/CMakeFiles/advancBalancStap.dir/compiler_depend.ts b/build/CMakeFiles/advancBalancStap.dir/compiler_depend.ts new file mode 100644 index 0000000..f097ef0 --- /dev/null +++ b/build/CMakeFiles/advancBalancStap.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for compiler generated dependencies management for advancBalancStap. diff --git a/build/CMakeFiles/advancBalancStap.dir/depend.make b/build/CMakeFiles/advancBalancStap.dir/depend.make new file mode 100644 index 0000000..85820c6 --- /dev/null +++ b/build/CMakeFiles/advancBalancStap.dir/depend.make @@ -0,0 +1,2 @@ +# Empty dependencies file for advancBalancStap. +# This may be replaced when dependencies are built. diff --git a/build/CMakeFiles/advancBalancStap.dir/flags.make b/build/CMakeFiles/advancBalancStap.dir/flags.make new file mode 100644 index 0000000..4bea55c --- /dev/null +++ b/build/CMakeFiles/advancBalancStap.dir/flags.make @@ -0,0 +1,10 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 4.1 + +# compile C with /usr/bin/cc +C_DEFINES = + +C_INCLUDES = + +C_FLAGS = + diff --git a/build/CMakeFiles/advancBalancStap.dir/link.d b/build/CMakeFiles/advancBalancStap.dir/link.d new file mode 100644 index 0000000..b2036c9 --- /dev/null +++ b/build/CMakeFiles/advancBalancStap.dir/link.d @@ -0,0 +1,79 @@ +advancBalancStap: \ + /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/Scrt1.o \ + /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/crti.o \ + /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/crtbeginS.o \ + CMakeFiles/advancBalancStap.dir/advancBalancStap.c.o \ + libstack.a \ + /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/libgcc.a \ + /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/libgcc_s.so \ + /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/libgcc_s.so \ + /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/libgcc_s.so \ + /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/libgcc_s.so.1 \ + /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/libgcc.a \ + /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/libc.so \ + /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/libc.so \ + /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/libc.so \ + /usr/lib/libc.so.6 \ + /usr/lib/libc_nonshared.a \ + /usr/lib/ld-linux-x86-64.so.2 \ + /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/libgcc.a \ + /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/libgcc_s.so \ + /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/libgcc_s.so \ + /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/libgcc_s.so \ + /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/libgcc_s.so.1 \ + /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/libgcc.a \ + /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/crtendS.o \ + /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/crtn.o \ + /usr/lib/ld-linux-x86-64.so.2 + +/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/Scrt1.o: + +/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/crti.o: + +/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/crtbeginS.o: + +CMakeFiles/advancBalancStap.dir/advancBalancStap.c.o: + +libstack.a: + +/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/libgcc.a: + +/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/libgcc_s.so: + +/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/libgcc_s.so: + +/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/libgcc_s.so: + +/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/libgcc_s.so.1: + +/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/libgcc.a: + +/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/libc.so: + +/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/libc.so: + +/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/libc.so: + +/usr/lib/libc.so.6: + +/usr/lib/libc_nonshared.a: + +/usr/lib/ld-linux-x86-64.so.2: + +/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/libgcc.a: + +/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/libgcc_s.so: + +/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/libgcc_s.so: + +/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/libgcc_s.so: + +/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/libgcc_s.so.1: + +/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/libgcc.a: + +/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/crtendS.o: + +/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/crtn.o: + +/usr/lib/ld-linux-x86-64.so.2: diff --git a/build/CMakeFiles/advancBalancStap.dir/link.txt b/build/CMakeFiles/advancBalancStap.dir/link.txt new file mode 100644 index 0000000..00b5bc4 --- /dev/null +++ b/build/CMakeFiles/advancBalancStap.dir/link.txt @@ -0,0 +1 @@ +/usr/bin/cc -Wl,--dependency-file=CMakeFiles/advancBalancStap.dir/link.d CMakeFiles/advancBalancStap.dir/advancBalancStap.c.o -o advancBalancStap libstack.a diff --git a/build/CMakeFiles/advancBalancStap.dir/progress.make b/build/CMakeFiles/advancBalancStap.dir/progress.make new file mode 100644 index 0000000..abadeb0 --- /dev/null +++ b/build/CMakeFiles/advancBalancStap.dir/progress.make @@ -0,0 +1,3 @@ +CMAKE_PROGRESS_1 = 1 +CMAKE_PROGRESS_2 = 2 + diff --git a/build/CMakeFiles/cmake.check_cache b/build/CMakeFiles/cmake.check_cache new file mode 100644 index 0000000..3dccd73 --- /dev/null +++ b/build/CMakeFiles/cmake.check_cache @@ -0,0 +1 @@ +# This file is generated by cmake for dependency checking of the CMakeCache.txt file diff --git a/build/CMakeFiles/progress.marks b/build/CMakeFiles/progress.marks new file mode 100644 index 0000000..b8626c4 --- /dev/null +++ b/build/CMakeFiles/progress.marks @@ -0,0 +1 @@ +4 diff --git a/build/CMakeFiles/sortStation.dir/DependInfo.cmake b/build/CMakeFiles/sortStation.dir/DependInfo.cmake new file mode 100644 index 0000000..13fd84b --- /dev/null +++ b/build/CMakeFiles/sortStation.dir/DependInfo.cmake @@ -0,0 +1,24 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + "/home/andrew/src2/sortStation.c" "CMakeFiles/sortStation.dir/sortStation.c.o" "gcc" "CMakeFiles/sortStation.dir/sortStation.c.o.d" + "" "sortStation" "gcc" "CMakeFiles/sortStation.dir/link.d" + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_FORWARD_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/CMakeFiles/sortStation.dir/build.make b/build/CMakeFiles/sortStation.dir/build.make new file mode 100644 index 0000000..7431dc2 --- /dev/null +++ b/build/CMakeFiles/sortStation.dir/build.make @@ -0,0 +1,115 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 4.1 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/bin/cmake + +# The command to remove a file. +RM = /usr/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /home/andrew/src2 + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/andrew/src2/build + +# Include any dependencies generated for this target. +include CMakeFiles/sortStation.dir/depend.make +# Include any dependencies generated by the compiler for this target. +include CMakeFiles/sortStation.dir/compiler_depend.make + +# Include the progress variables for this target. +include CMakeFiles/sortStation.dir/progress.make + +# Include the compile flags for this target's objects. +include CMakeFiles/sortStation.dir/flags.make + +CMakeFiles/sortStation.dir/codegen: +.PHONY : CMakeFiles/sortStation.dir/codegen + +CMakeFiles/sortStation.dir/sortStation.c.o: CMakeFiles/sortStation.dir/flags.make +CMakeFiles/sortStation.dir/sortStation.c.o: /home/andrew/src2/sortStation.c +CMakeFiles/sortStation.dir/sortStation.c.o: CMakeFiles/sortStation.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/andrew/src2/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building C object CMakeFiles/sortStation.dir/sortStation.c.o" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/sortStation.dir/sortStation.c.o -MF CMakeFiles/sortStation.dir/sortStation.c.o.d -o CMakeFiles/sortStation.dir/sortStation.c.o -c /home/andrew/src2/sortStation.c + +CMakeFiles/sortStation.dir/sortStation.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/sortStation.dir/sortStation.c.i" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/andrew/src2/sortStation.c > CMakeFiles/sortStation.dir/sortStation.c.i + +CMakeFiles/sortStation.dir/sortStation.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/sortStation.dir/sortStation.c.s" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/andrew/src2/sortStation.c -o CMakeFiles/sortStation.dir/sortStation.c.s + +# Object files for target sortStation +sortStation_OBJECTS = \ +"CMakeFiles/sortStation.dir/sortStation.c.o" + +# External object files for target sortStation +sortStation_EXTERNAL_OBJECTS = + +sortStation: CMakeFiles/sortStation.dir/sortStation.c.o +sortStation: CMakeFiles/sortStation.dir/build.make +sortStation: CMakeFiles/sortStation.dir/compiler_depend.ts +sortStation: libstack.a +sortStation: CMakeFiles/sortStation.dir/link.txt + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --bold --progress-dir=/home/andrew/src2/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Linking C executable sortStation" + $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/sortStation.dir/link.txt --verbose=$(VERBOSE) + +# Rule to build all files generated by this target. +CMakeFiles/sortStation.dir/build: sortStation +.PHONY : CMakeFiles/sortStation.dir/build + +CMakeFiles/sortStation.dir/clean: + $(CMAKE_COMMAND) -P CMakeFiles/sortStation.dir/cmake_clean.cmake +.PHONY : CMakeFiles/sortStation.dir/clean + +CMakeFiles/sortStation.dir/depend: + cd /home/andrew/src2/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/andrew/src2 /home/andrew/src2 /home/andrew/src2/build /home/andrew/src2/build /home/andrew/src2/build/CMakeFiles/sortStation.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : CMakeFiles/sortStation.dir/depend + diff --git a/build/CMakeFiles/sortStation.dir/cmake_clean.cmake b/build/CMakeFiles/sortStation.dir/cmake_clean.cmake new file mode 100644 index 0000000..f498602 --- /dev/null +++ b/build/CMakeFiles/sortStation.dir/cmake_clean.cmake @@ -0,0 +1,12 @@ +file(REMOVE_RECURSE + "CMakeFiles/sortStation.dir/link.d" + "CMakeFiles/sortStation.dir/sortStation.c.o" + "CMakeFiles/sortStation.dir/sortStation.c.o.d" + "sortStation" + "sortStation.pdb" +) + +# Per-language clean rules from dependency scanning. +foreach(lang C) + include(CMakeFiles/sortStation.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/CMakeFiles/sortStation.dir/compiler_depend.make b/build/CMakeFiles/sortStation.dir/compiler_depend.make new file mode 100644 index 0000000..1fba69f --- /dev/null +++ b/build/CMakeFiles/sortStation.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty compiler generated dependencies file for sortStation. +# This may be replaced when dependencies are built. diff --git a/build/CMakeFiles/sortStation.dir/compiler_depend.ts b/build/CMakeFiles/sortStation.dir/compiler_depend.ts new file mode 100644 index 0000000..b617aac --- /dev/null +++ b/build/CMakeFiles/sortStation.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for compiler generated dependencies management for sortStation. diff --git a/build/CMakeFiles/sortStation.dir/depend.make b/build/CMakeFiles/sortStation.dir/depend.make new file mode 100644 index 0000000..ed39330 --- /dev/null +++ b/build/CMakeFiles/sortStation.dir/depend.make @@ -0,0 +1,2 @@ +# Empty dependencies file for sortStation. +# This may be replaced when dependencies are built. diff --git a/build/CMakeFiles/sortStation.dir/flags.make b/build/CMakeFiles/sortStation.dir/flags.make new file mode 100644 index 0000000..4bea55c --- /dev/null +++ b/build/CMakeFiles/sortStation.dir/flags.make @@ -0,0 +1,10 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 4.1 + +# compile C with /usr/bin/cc +C_DEFINES = + +C_INCLUDES = + +C_FLAGS = + diff --git a/build/CMakeFiles/sortStation.dir/link.d b/build/CMakeFiles/sortStation.dir/link.d new file mode 100644 index 0000000..7677f93 --- /dev/null +++ b/build/CMakeFiles/sortStation.dir/link.d @@ -0,0 +1,79 @@ +sortStation: \ + /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/Scrt1.o \ + /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/crti.o \ + /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/crtbeginS.o \ + CMakeFiles/sortStation.dir/sortStation.c.o \ + libstack.a \ + /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/libgcc.a \ + /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/libgcc_s.so \ + /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/libgcc_s.so \ + /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/libgcc_s.so \ + /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/libgcc_s.so.1 \ + /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/libgcc.a \ + /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/libc.so \ + /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/libc.so \ + /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/libc.so \ + /usr/lib/libc.so.6 \ + /usr/lib/libc_nonshared.a \ + /usr/lib/ld-linux-x86-64.so.2 \ + /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/libgcc.a \ + /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/libgcc_s.so \ + /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/libgcc_s.so \ + /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/libgcc_s.so \ + /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/libgcc_s.so.1 \ + /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/libgcc.a \ + /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/crtendS.o \ + /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/crtn.o \ + /usr/lib/ld-linux-x86-64.so.2 + +/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/Scrt1.o: + +/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/crti.o: + +/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/crtbeginS.o: + +CMakeFiles/sortStation.dir/sortStation.c.o: + +libstack.a: + +/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/libgcc.a: + +/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/libgcc_s.so: + +/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/libgcc_s.so: + +/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/libgcc_s.so: + +/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/libgcc_s.so.1: + +/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/libgcc.a: + +/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/libc.so: + +/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/libc.so: + +/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/libc.so: + +/usr/lib/libc.so.6: + +/usr/lib/libc_nonshared.a: + +/usr/lib/ld-linux-x86-64.so.2: + +/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/libgcc.a: + +/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/libgcc_s.so: + +/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/libgcc_s.so: + +/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/libgcc_s.so: + +/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/libgcc_s.so.1: + +/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/libgcc.a: + +/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/crtendS.o: + +/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/crtn.o: + +/usr/lib/ld-linux-x86-64.so.2: diff --git a/build/CMakeFiles/sortStation.dir/link.txt b/build/CMakeFiles/sortStation.dir/link.txt new file mode 100644 index 0000000..aaaf25c --- /dev/null +++ b/build/CMakeFiles/sortStation.dir/link.txt @@ -0,0 +1 @@ +/usr/bin/cc -Wl,--dependency-file=CMakeFiles/sortStation.dir/link.d CMakeFiles/sortStation.dir/sortStation.c.o -o sortStation libstack.a diff --git a/build/CMakeFiles/sortStation.dir/progress.make b/build/CMakeFiles/sortStation.dir/progress.make new file mode 100644 index 0000000..abadeb0 --- /dev/null +++ b/build/CMakeFiles/sortStation.dir/progress.make @@ -0,0 +1,3 @@ +CMAKE_PROGRESS_1 = 1 +CMAKE_PROGRESS_2 = 2 + diff --git a/build/CMakeFiles/sortStation.dir/sortStation.c.o b/build/CMakeFiles/sortStation.dir/sortStation.c.o new file mode 100644 index 0000000000000000000000000000000000000000..796ed159473e709939dda51db02c7e07df2c5d23 GIT binary patch literal 4016 zcmbuBT})g>6vyZ8Qi`>7v0`j&V^^CJK9>*M1}QOX@yhj!hgRx?8oKP>1%&;`?yR&b zDP_TMvu@JZnEFr?UwpHPX`~^>B3e?~KGfyG!UGQ^#sspBslG@82G5y$XPKSd`%+JG z@67z>f99M!U%ThkH(zxq3gM=Zm&kUDQ$m_{Z`Zx7>Lq(fIqBAnKeXh7Ce0XG)r`c7 z(Y>5fmko7OOQ`_nS5Z5uZe**H>ZXzc?$1Eiil+SHx~^_aIwalb$VN3Sg*Qpu1NEJo z7~m8{XoU#3jl^6^olDLt+LwH6%}`h7)g=tWVnKU#UR}oaTG~MfWMhWBttlDTb<*BI z-!5P^)LX#nXng^zrTYq4qif;{%vb@hNj#hCUeZ!;t(c#9k7sPCOKX1?^QfiA3Px#6 ze4KSB)g_p^B|dfO1NpP&6z4GcP#K@4ZV|QD(i?g0MtW5az< z^7XqY>}*^fVVmK)`|oP0ZrJ8`Vb4uEvdYDzx{Rvh>YVGdzJIs2vi0J}Osb2cBa7Aa zX=$z5FD04 zAUHJZ&9hp12Ob;P0n=ET$0_v`W9f;C&8@AORVV8=yG+J6j4@FHiqseQ*37Q$-J}^4 zWx(er2)uE??6DN9vpvoF%;V{rfizf1evI&SHJ?<4?P`^E3ysZXD(Z z3$Py0>MGeM(j6@6J2x|*XRc+YGT&#W7sfJE?u82rV+*61namFh$u>7R>~|B=+0oJF zuI}vWu5mXX^|W}J-7QTmN1IxkUm!4r1QY~k3IxPKlv!kO0GKIKyOQ&dP7>v8g|dJ5 z&a#UjJ^&maG#|cR-c#|Zqocgk@g6A5812ZxUV%x^^{Yvzv(1^)oIwFtIVQlzaF!`d zzfn%QE;M{|;`GxXbc#7rOYs33(c-V#~Z1{)`AG6^k9*NOY)JF#* zVUM4LA|L7}=rDjNiAL~=(_mM`>?a}L&``ur!ul{7h^wI}Jx8LtK1ia8cs~i~Lps&L z(?1BpfiQ{22EsH*;xqt_V4qIoP>&7i(37D4eqW3PW4caydgAEQ5a#UCl)aq{zxdKhoLVVp}Gft!y4E*wc35*geMw{ zMD-Y40vqZN6_j{$#H>W|5#+;_O}$5b2)xJbl{ke>fa2$IHtJv&?G$m^Vkqfj{hR`A!`ye zSgpj%1&sfvFk7Y;>wKIOLY-@{Y_j}ChIQ`8`AMkYJuK(X{pGy){B!>gpn_w{{%5TC zqg-f}vOn&^qU( CMakeFiles/stack.dir/stack.c.i + +CMakeFiles/stack.dir/stack.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/stack.dir/stack.c.s" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/andrew/src2/stack.c -o CMakeFiles/stack.dir/stack.c.s + +# Object files for target stack +stack_OBJECTS = \ +"CMakeFiles/stack.dir/stack.c.o" + +# External object files for target stack +stack_EXTERNAL_OBJECTS = + +libstack.a: CMakeFiles/stack.dir/stack.c.o +libstack.a: CMakeFiles/stack.dir/build.make +libstack.a: CMakeFiles/stack.dir/link.txt + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --bold --progress-dir=/home/andrew/src2/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Linking C static library libstack.a" + $(CMAKE_COMMAND) -P CMakeFiles/stack.dir/cmake_clean_target.cmake + $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/stack.dir/link.txt --verbose=$(VERBOSE) + +# Rule to build all files generated by this target. +CMakeFiles/stack.dir/build: libstack.a +.PHONY : CMakeFiles/stack.dir/build + +CMakeFiles/stack.dir/clean: + $(CMAKE_COMMAND) -P CMakeFiles/stack.dir/cmake_clean.cmake +.PHONY : CMakeFiles/stack.dir/clean + +CMakeFiles/stack.dir/depend: + cd /home/andrew/src2/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/andrew/src2 /home/andrew/src2 /home/andrew/src2/build /home/andrew/src2/build /home/andrew/src2/build/CMakeFiles/stack.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : CMakeFiles/stack.dir/depend + diff --git a/build/CMakeFiles/stack.dir/cmake_clean.cmake b/build/CMakeFiles/stack.dir/cmake_clean.cmake new file mode 100644 index 0000000..11fe375 --- /dev/null +++ b/build/CMakeFiles/stack.dir/cmake_clean.cmake @@ -0,0 +1,11 @@ +file(REMOVE_RECURSE + "CMakeFiles/stack.dir/stack.c.o" + "CMakeFiles/stack.dir/stack.c.o.d" + "libstack.a" + "libstack.pdb" +) + +# Per-language clean rules from dependency scanning. +foreach(lang C) + include(CMakeFiles/stack.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/CMakeFiles/stack.dir/cmake_clean_target.cmake b/build/CMakeFiles/stack.dir/cmake_clean_target.cmake new file mode 100644 index 0000000..99b9ceb --- /dev/null +++ b/build/CMakeFiles/stack.dir/cmake_clean_target.cmake @@ -0,0 +1,3 @@ +file(REMOVE_RECURSE + "libstack.a" +) diff --git a/build/CMakeFiles/stack.dir/compiler_depend.internal b/build/CMakeFiles/stack.dir/compiler_depend.internal new file mode 100644 index 0000000..f4e5f9d --- /dev/null +++ b/build/CMakeFiles/stack.dir/compiler_depend.internal @@ -0,0 +1,62 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 4.1 + +CMakeFiles/stack.dir/stack.c.o + /home/andrew/src2/stack.c + /home/andrew/src2/stack.h + /usr/include/alloca.h + /usr/include/bits/atomic_wide_counter.h + /usr/include/bits/byteswap.h + /usr/include/bits/endian.h + /usr/include/bits/endianness.h + /usr/include/bits/floatn-common.h + /usr/include/bits/floatn.h + /usr/include/bits/libc-header-start.h + /usr/include/bits/long-double.h + /usr/include/bits/pthreadtypes-arch.h + /usr/include/bits/pthreadtypes.h + /usr/include/bits/select.h + /usr/include/bits/stdint-intn.h + /usr/include/bits/stdio_lim.h + /usr/include/bits/stdlib-float.h + /usr/include/bits/struct_mutex.h + /usr/include/bits/struct_rwlock.h + /usr/include/bits/thread-shared-types.h + /usr/include/bits/time64.h + /usr/include/bits/timesize.h + /usr/include/bits/types.h + /usr/include/bits/types/FILE.h + /usr/include/bits/types/__FILE.h + /usr/include/bits/types/__fpos64_t.h + /usr/include/bits/types/__fpos_t.h + /usr/include/bits/types/__mbstate_t.h + /usr/include/bits/types/__sigset_t.h + /usr/include/bits/types/clock_t.h + /usr/include/bits/types/clockid_t.h + /usr/include/bits/types/cookie_io_functions_t.h + /usr/include/bits/types/sigset_t.h + /usr/include/bits/types/struct_FILE.h + /usr/include/bits/types/struct_timespec.h + /usr/include/bits/types/struct_timeval.h + /usr/include/bits/types/time_t.h + /usr/include/bits/types/timer_t.h + /usr/include/bits/typesizes.h + /usr/include/bits/uintn-identity.h + /usr/include/bits/waitflags.h + /usr/include/bits/waitstatus.h + /usr/include/bits/wordsize.h + /usr/include/endian.h + /usr/include/features-time64.h + /usr/include/features.h + /usr/include/gnu/stubs-64.h + /usr/include/gnu/stubs.h + /usr/include/stdc-predef.h + /usr/include/stdio.h + /usr/include/stdlib.h + /usr/include/sys/cdefs.h + /usr/include/sys/select.h + /usr/include/sys/types.h + /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/stdarg.h + /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/stdbool.h + /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/stddef.h + diff --git a/build/CMakeFiles/stack.dir/compiler_depend.make b/build/CMakeFiles/stack.dir/compiler_depend.make new file mode 100644 index 0000000..e71842f --- /dev/null +++ b/build/CMakeFiles/stack.dir/compiler_depend.make @@ -0,0 +1,175 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 4.1 + +CMakeFiles/stack.dir/stack.c.o: /home/andrew/src2/stack.c \ + /home/andrew/src2/stack.h \ + /usr/include/alloca.h \ + /usr/include/bits/atomic_wide_counter.h \ + /usr/include/bits/byteswap.h \ + /usr/include/bits/endian.h \ + /usr/include/bits/endianness.h \ + /usr/include/bits/floatn-common.h \ + /usr/include/bits/floatn.h \ + /usr/include/bits/libc-header-start.h \ + /usr/include/bits/long-double.h \ + /usr/include/bits/pthreadtypes-arch.h \ + /usr/include/bits/pthreadtypes.h \ + /usr/include/bits/select.h \ + /usr/include/bits/stdint-intn.h \ + /usr/include/bits/stdio_lim.h \ + /usr/include/bits/stdlib-float.h \ + /usr/include/bits/struct_mutex.h \ + /usr/include/bits/struct_rwlock.h \ + /usr/include/bits/thread-shared-types.h \ + /usr/include/bits/time64.h \ + /usr/include/bits/timesize.h \ + /usr/include/bits/types.h \ + /usr/include/bits/types/FILE.h \ + /usr/include/bits/types/__FILE.h \ + /usr/include/bits/types/__fpos64_t.h \ + /usr/include/bits/types/__fpos_t.h \ + /usr/include/bits/types/__mbstate_t.h \ + /usr/include/bits/types/__sigset_t.h \ + /usr/include/bits/types/clock_t.h \ + /usr/include/bits/types/clockid_t.h \ + /usr/include/bits/types/cookie_io_functions_t.h \ + /usr/include/bits/types/sigset_t.h \ + /usr/include/bits/types/struct_FILE.h \ + /usr/include/bits/types/struct_timespec.h \ + /usr/include/bits/types/struct_timeval.h \ + /usr/include/bits/types/time_t.h \ + /usr/include/bits/types/timer_t.h \ + /usr/include/bits/typesizes.h \ + /usr/include/bits/uintn-identity.h \ + /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h \ + /usr/include/bits/wordsize.h \ + /usr/include/endian.h \ + /usr/include/features-time64.h \ + /usr/include/features.h \ + /usr/include/gnu/stubs-64.h \ + /usr/include/gnu/stubs.h \ + /usr/include/stdc-predef.h \ + /usr/include/stdio.h \ + /usr/include/stdlib.h \ + /usr/include/sys/cdefs.h \ + /usr/include/sys/select.h \ + /usr/include/sys/types.h \ + /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/stdarg.h \ + /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/stdbool.h \ + /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/stddef.h + + +/usr/include/sys/types.h: + +/usr/include/stdio.h: + +/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/stdarg.h: + +/usr/include/gnu/stubs.h: + +/usr/include/features.h: + +/usr/include/bits/waitstatus.h: + +/usr/include/endian.h: + +/usr/include/bits/types/timer_t.h: + +/usr/include/stdlib.h: + +/usr/include/bits/types/time_t.h: + +/usr/include/bits/types/struct_timeval.h: + +/usr/include/bits/types/struct_timespec.h: + +/usr/include/sys/select.h: + +/usr/include/bits/types/struct_FILE.h: + +/usr/include/bits/typesizes.h: + +/usr/include/bits/types/cookie_io_functions_t.h: + +/usr/include/bits/types/clockid_t.h: + +/usr/include/bits/types/clock_t.h: + +/usr/include/bits/pthreadtypes.h: + +/usr/include/bits/floatn.h: + +/usr/include/bits/types/__mbstate_t.h: + +/usr/include/bits/pthreadtypes-arch.h: + +/usr/include/bits/wordsize.h: + +/usr/include/bits/uintn-identity.h: + +/usr/include/bits/types/__fpos_t.h: + +/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/stdbool.h: + +/usr/include/bits/long-double.h: + +/usr/include/bits/floatn-common.h: + +/home/andrew/src2/stack.h: + +/usr/include/bits/types/sigset_t.h: + +/usr/include/bits/stdlib-float.h: + +/usr/include/bits/endianness.h: + +/usr/include/bits/libc-header-start.h: + +/usr/include/alloca.h: + +/usr/include/bits/atomic_wide_counter.h: + +/usr/include/bits/waitflags.h: + +/usr/include/bits/endian.h: + +/usr/include/bits/types/__sigset_t.h: + +/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/stddef.h: + +/home/andrew/src2/stack.c: + +/usr/include/gnu/stubs-64.h: + +/usr/include/bits/struct_mutex.h: + +/usr/include/bits/stdint-intn.h: + +/usr/include/bits/types/__FILE.h: + +/usr/include/bits/types/FILE.h: + +/usr/include/features-time64.h: + +/usr/include/bits/select.h: + +/usr/include/bits/types/__fpos64_t.h: + +/usr/include/bits/stdio_lim.h: + +/usr/include/bits/thread-shared-types.h: + +/usr/include/bits/struct_rwlock.h: + +/usr/include/bits/byteswap.h: + +/usr/include/bits/time64.h: + +/usr/include/sys/cdefs.h: + +/usr/include/stdc-predef.h: + +/usr/include/bits/timesize.h: + +/usr/include/bits/types.h: diff --git a/build/CMakeFiles/stack.dir/compiler_depend.ts b/build/CMakeFiles/stack.dir/compiler_depend.ts new file mode 100644 index 0000000..b379ebe --- /dev/null +++ b/build/CMakeFiles/stack.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for compiler generated dependencies management for stack. diff --git a/build/CMakeFiles/stack.dir/depend.make b/build/CMakeFiles/stack.dir/depend.make new file mode 100644 index 0000000..63dba03 --- /dev/null +++ b/build/CMakeFiles/stack.dir/depend.make @@ -0,0 +1,2 @@ +# Empty dependencies file for stack. +# This may be replaced when dependencies are built. diff --git a/build/CMakeFiles/stack.dir/flags.make b/build/CMakeFiles/stack.dir/flags.make new file mode 100644 index 0000000..4bea55c --- /dev/null +++ b/build/CMakeFiles/stack.dir/flags.make @@ -0,0 +1,10 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 4.1 + +# compile C with /usr/bin/cc +C_DEFINES = + +C_INCLUDES = + +C_FLAGS = + diff --git a/build/CMakeFiles/stack.dir/link.txt b/build/CMakeFiles/stack.dir/link.txt new file mode 100644 index 0000000..398b104 --- /dev/null +++ b/build/CMakeFiles/stack.dir/link.txt @@ -0,0 +1,2 @@ +/usr/bin/ar qc libstack.a CMakeFiles/stack.dir/stack.c.o +/usr/bin/ranlib libstack.a diff --git a/build/CMakeFiles/stack.dir/progress.make b/build/CMakeFiles/stack.dir/progress.make new file mode 100644 index 0000000..8c8fb6f --- /dev/null +++ b/build/CMakeFiles/stack.dir/progress.make @@ -0,0 +1,3 @@ +CMAKE_PROGRESS_1 = 3 +CMAKE_PROGRESS_2 = 4 + diff --git a/build/CMakeFiles/stack.dir/stack.c.o b/build/CMakeFiles/stack.dir/stack.c.o new file mode 100644 index 0000000000000000000000000000000000000000..9d8265d1cf7c23b86ad91cf3d34f6c7ec39d56dd GIT binary patch literal 2280 zcmbtW&r4KM6h3b>ol2XjgbH1}Hf2x`$1+4D#$@yn5n)XbC^e2x4d)j#Pt?c?v~Ze@ zM2i+JTKX4=i^zc%(V}&20|UVp*2Y-`cE0=Wow+?`RUh1Y&iT%dd*__{#3!-qLjl7e z1%s|o%~CAU+JTxL6>5}PsfFTp@w>hBBm6$d55pwN1JYbDI#+ja?}Vi#`)Ju}XFcvV&@E{d9ViR@?P(5v#;U&Td2@uN6?x$HJ? z;2t}dygJnj*(F)JC{7Bk(@Jd5JJU-It;hDN=kbMbDH37(?AouM8Rj2U*=f;Jb$w~q zST4_g(<%NLG(0%iXLb(Xh@UefJyy3BF}u6Ed%Aif7jaugBQKK|+Rb4UAfpUU&BXB8 zZR`V#ha+UnhmH1@=HMy^cQA(qoW?eAB>X%u*xEG80c^t851uiEP5A=@A^`qT@Qf4K zlz*g_{|G$eE;i*4+^*)o0ncd1ru=tm`R~9p`mrhhoaYBs59mW9{oJqTYp8aq<~_*j zF^w0!V6K%H9-<%UC*oC{=nZqHc-4zHW&9LNK=g`bCoj}_43Z&w#PU3^dUYbqBmN6Z zK=h2|WnSQafn7{-?gHhqIhxEn4&@wY zh9;bp<2tvHiW-dLo)GU2@9g)!hhB|u()gDe->mVUH6A@zb%Gce1GVw)6yK)tdY!Wx zuh%g-7YN8D4BnzrQM{VleIKvp^VG+y`MmY~PfjZ>@1zoz z>&&}kO(fg|S>uHQS;=fV?PQqCWL?MNZ~KB6p|qzmvsNyj%{h4AyeMtFmsrZKOf(+e|AjK ch9s}T&>+iInWL=L%kP!{m!ztZp5o8{1Nn6>WB>pF literal 0 HcmV?d00001 diff --git a/build/CMakeFiles/stack.dir/stack.c.o.d b/build/CMakeFiles/stack.dir/stack.c.o.d new file mode 100644 index 0000000..2ab10ef --- /dev/null +++ b/build/CMakeFiles/stack.dir/stack.c.o.d @@ -0,0 +1,34 @@ +CMakeFiles/stack.dir/stack.c.o: /home/andrew/src2/stack.c \ + /usr/include/stdc-predef.h /home/andrew/src2/stack.h \ + /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/stdbool.h \ + /usr/include/stdio.h /usr/include/bits/libc-header-start.h \ + /usr/include/features.h /usr/include/features-time64.h \ + /usr/include/bits/wordsize.h /usr/include/bits/timesize.h \ + /usr/include/sys/cdefs.h /usr/include/bits/long-double.h \ + /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \ + /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/stddef.h \ + /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/stdarg.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/bits/time64.h /usr/include/bits/types/__fpos_t.h \ + /usr/include/bits/types/__mbstate_t.h \ + /usr/include/bits/types/__fpos64_t.h /usr/include/bits/types/__FILE.h \ + /usr/include/bits/types/FILE.h /usr/include/bits/types/struct_FILE.h \ + /usr/include/bits/types/cookie_io_functions_t.h \ + /usr/include/bits/stdio_lim.h /usr/include/bits/floatn.h \ + /usr/include/bits/floatn-common.h /usr/include/stdlib.h \ + /usr/include/bits/waitflags.h /usr/include/bits/waitstatus.h \ + /usr/include/sys/types.h /usr/include/bits/types/clock_t.h \ + /usr/include/bits/types/clockid_t.h /usr/include/bits/types/time_t.h \ + /usr/include/bits/types/timer_t.h /usr/include/bits/stdint-intn.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/endianness.h /usr/include/bits/byteswap.h \ + /usr/include/bits/uintn-identity.h /usr/include/sys/select.h \ + /usr/include/bits/select.h /usr/include/bits/types/sigset_t.h \ + /usr/include/bits/types/__sigset_t.h \ + /usr/include/bits/types/struct_timeval.h \ + /usr/include/bits/types/struct_timespec.h \ + /usr/include/bits/pthreadtypes.h /usr/include/bits/thread-shared-types.h \ + /usr/include/bits/pthreadtypes-arch.h \ + /usr/include/bits/atomic_wide_counter.h /usr/include/bits/struct_mutex.h \ + /usr/include/bits/struct_rwlock.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h diff --git a/build/Makefile b/build/Makefile new file mode 100644 index 0000000..b3da43c --- /dev/null +++ b/build/Makefile @@ -0,0 +1,222 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 4.1 + +# Default target executed when no arguments are given to make. +default_target: all +.PHONY : default_target + +# Allow only one "make -f Makefile2" at a time, but pass parallelism. +.NOTPARALLEL: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/bin/cmake + +# The command to remove a file. +RM = /usr/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /home/andrew/src2 + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/andrew/src2/build + +#============================================================================= +# Targets provided globally by CMake. + +# Special rule for the target edit_cache +edit_cache: + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running CMake cache editor..." + /usr/bin/ccmake -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) +.PHONY : edit_cache + +# Special rule for the target edit_cache +edit_cache/fast: edit_cache +.PHONY : edit_cache/fast + +# Special rule for the target rebuild_cache +rebuild_cache: + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running CMake to regenerate build system..." + /usr/bin/cmake --regenerate-during-build -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) +.PHONY : rebuild_cache + +# Special rule for the target rebuild_cache +rebuild_cache/fast: rebuild_cache +.PHONY : rebuild_cache/fast + +# The main all target +all: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/andrew/src2/build/CMakeFiles /home/andrew/src2/build//CMakeFiles/progress.marks + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 all + $(CMAKE_COMMAND) -E cmake_progress_start /home/andrew/src2/build/CMakeFiles 0 +.PHONY : all + +# The main clean target +clean: + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 clean +.PHONY : clean + +# The main clean target +clean/fast: clean +.PHONY : clean/fast + +# Prepare targets for installation. +preinstall: all + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 preinstall +.PHONY : preinstall + +# Prepare targets for installation. +preinstall/fast: + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 preinstall +.PHONY : preinstall/fast + +# clear depends +depend: + $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1 +.PHONY : depend + +#============================================================================= +# Target rules for targets named stack + +# Build rule for target. +stack: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 stack +.PHONY : stack + +# fast build rule for target. +stack/fast: + $(MAKE) $(MAKESILENT) -f CMakeFiles/stack.dir/build.make CMakeFiles/stack.dir/build +.PHONY : stack/fast + +#============================================================================= +# Target rules for targets named sortStation + +# Build rule for target. +sortStation: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 sortStation +.PHONY : sortStation + +# fast build rule for target. +sortStation/fast: + $(MAKE) $(MAKESILENT) -f CMakeFiles/sortStation.dir/build.make CMakeFiles/sortStation.dir/build +.PHONY : sortStation/fast + +sortStation.o: sortStation.c.o +.PHONY : sortStation.o + +# target to build an object file +sortStation.c.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/sortStation.dir/build.make CMakeFiles/sortStation.dir/sortStation.c.o +.PHONY : sortStation.c.o + +sortStation.i: sortStation.c.i +.PHONY : sortStation.i + +# target to preprocess a source file +sortStation.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/sortStation.dir/build.make CMakeFiles/sortStation.dir/sortStation.c.i +.PHONY : sortStation.c.i + +sortStation.s: sortStation.c.s +.PHONY : sortStation.s + +# target to generate assembly for a file +sortStation.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/sortStation.dir/build.make CMakeFiles/sortStation.dir/sortStation.c.s +.PHONY : sortStation.c.s + +stack.o: stack.c.o +.PHONY : stack.o + +# target to build an object file +stack.c.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/stack.dir/build.make CMakeFiles/stack.dir/stack.c.o +.PHONY : stack.c.o + +stack.i: stack.c.i +.PHONY : stack.i + +# target to preprocess a source file +stack.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/stack.dir/build.make CMakeFiles/stack.dir/stack.c.i +.PHONY : stack.c.i + +stack.s: stack.c.s +.PHONY : stack.s + +# target to generate assembly for a file +stack.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/stack.dir/build.make CMakeFiles/stack.dir/stack.c.s +.PHONY : stack.c.s + +# Help Target +help: + @echo "The following are some of the valid targets for this Makefile:" + @echo "... all (the default if no target is provided)" + @echo "... clean" + @echo "... depend" + @echo "... edit_cache" + @echo "... rebuild_cache" + @echo "... sortStation" + @echo "... stack" + @echo "... sortStation.o" + @echo "... sortStation.i" + @echo "... sortStation.s" + @echo "... stack.o" + @echo "... stack.i" + @echo "... stack.s" +.PHONY : help + + + +#============================================================================= +# Special targets to cleanup operation of make. + +# Special rule to run CMake to check the build system integrity. +# No rule that depends on this can have commands that come from listfiles +# because they might be regenerated. +cmake_check_build_system: + $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 +.PHONY : cmake_check_build_system + diff --git a/build/advancBalancStap b/build/advancBalancStap new file mode 100755 index 0000000000000000000000000000000000000000..8c61f8e9e1ed6e97c659a58a5a37f5d96771fead GIT binary patch literal 16080 zcmeHOeQ;FO6~DWDMI|2~w5SNH0uwD+0wifvs4u{Vmku8hh=mb-F4>o4hh(#}c|p)J z2BVgpC=+eRs#B+qGxo#Q4nxIKEf~d*+Of`NY90RQw6wxZ(rAl-HGZ-EoqO+jdHdKn z{i8GOw0maWJ@@?1IrpA>-hFTH+jrkxku~+fKtM1}5ML7{?JrY^p%sl^)fF&9)QS?6 zbHwFhGUSO8Q+h)&Xcd)B$mK;ECz$-6)p|dlt?ig|gv7~jJgU?kFc*3pPDHf-t8|$&Y+MiUA{1=WaeH!%1x$1=`+i7d5`w%*PQ)GB){X@@3{7JIR!*|%{iYG zJ{^rZpMGvYM`XxS2)|#y_Ve?3+MYS}K}4L6saKM8J`YLMO_O`hHlB21UB*b*dqog z7S;zuAV&`RWU`%sgH8wezq9qi_dn`*_1*QxmK#@nnmH7G>R5JBdwg3>)uQ%TMSDEa zy|ZFxZB0c@Rk*7&yhKn~B{--*HSUn;L7j;3)}|;AQDXk$Dge{{Amo~H@P6PS9DXVW zkguKcad5KDXMgKBIE^o#{Wr$Je+oQ=!%vF<mlKO8M6w%I%j$BX&D*W!w(V9+G~O;+Qnn3)RJ)xJ9ntpo&Su!)6gQJ$ z%CS14aJ8)Fol&bLo`|-`@32L)vP-7o38zJnF`fPzv3gCzij~%qaFttII#yj0t`=6q zrnOegPT8&TF2_!7TD!8nGhuIvZfm#EM{7rCLicJZ)4YZlVh}SlfHH^~PbKEDKGcN~ zfZm23PqrEHIHtrz(W$X#AAA_obAs5VH!1BDC}GEm4sAp?aB{4ZqSOzE6Y%-;8k%)Uu4VJ&RlJKzMf8MF75qN8$n+3Mc_ z&dz@mW$9c4HImy%H+(z`n*TD%w3HdnNcnk^X{j|lAmsxj(-LcVzm%UQnU*-iPe}Pm zl4)r(+%M(FNTwytaF3K9BAJ#U!%4^#@8b6x(u22}>A#r0Cr&kPiYy*j{D%3!@+Nee zojDQ~;%rN}bgo)S0*|8s^MOg*h+RAC%*0UNf)Ne%g6#3qxjkrG9Mv55*Gl{9CB&{i zXQoe?Fa7NX^QF-VX5ck*@SHOP4Lq(JD9RphDV@7&%%9@xS^hcHqI+qR*}MD>s+#GO zPO;gy{2d6{nQbVCnlYHyCcTYn;FhCf@gfdGw2aBr-f$~yo6rVMRLD&49!htg82SV$ zH`9^P*CM9_uSd?(7=}-y=!={+n=@u#WXKF;N}m(U%ANA_usfX@=V3Q@FYsffN2sCE z^gCwy^`WQH;qd)=dMG_I&^x-@S%~7USnuf7&XnHKTb$aF&E!j-zlG=C$eEtqXUd&r zh*yl%u%+BOVRV#UWr~Xqs$l=3f^Ad*I$OI2;+m zbwD9ZCY8cSd>y*<%NkJGEIrqP)Bl^L=lXVTD5V5>vweXr~Yt>s_DNX5|0 zP*5N=G}j;`r^~6mkrOY{li1KR9;4FdnojI3gZYrzM-1nx5%&QSn@}&~k*9adHqAb| zWJ$C0r`asd=|?(h zOmOWj%}AAX`z*tNMn|TyYYM$`eLd=GTKt)zb!ZvGz{uVEoO@>jSfD}%3K=M5ppbz= z1_~J{WT23NLI(cNGC*%_G7o0a2gWq;4o81Y%WGuiAY_+Ic?c!qfkycYZ<_-630orNFx7Vt;FiRj%ZQQ(dZBCxY8aM{!;Mg7nb zPJ0E8qt69ouxg5Y^)wIFDjc;s7Ew}GUoz|Kr5D{^)FW=V^!jU-&byM#$(Q1O6tUh( zebtqe-4|S0JbA*70J@O+ZvsAxF?<``)d%;HTI#a}xy+2m|rvdCu#&!Ji zzW`t~|H}|hqk)Qt{)GDUV2R-S1FKFF&Vq-Jj)Px}@#eE%An{^Rt>cmZZJ>>7#<8dW zF!Hst9yrDC&*xU)Ay0f<-41+OaF*bC%Q*etG)MKw{sXcjmzK88^A-_ z#>?IXex(=C^>e_d2eI?lcb$u9Y)3TFydv6;a-$PXhMTc>9sAkAtyNpr)vaw!N7>o-O=S)1xstch51>$|~w)@gfs(zdsszx&-a z!DjX^+Q3fx>s?!FE@9uUw%+HU+hp*zh}rG7V`C7_=+llxov5H4_Hn%#KgY+vYu{B? z3AG8|1>`U~lWOCC4yrco=RlT4-Ks73=k33@VqKk9TQm`)z4;C6VTF$ftnMy5roR)& zX)4|o=}0=eFp@+JO>OJy(#^{62a?@gZ9uW#--@hTWqr}^{@hOua{9249Y=_8*RBpH zx((b(Dc;7lM5kkiTNB;kWU4c1rw~urg|>Ca@y$v+Cc^k?!A>QGG;E6^vT$ry0*xx} zq?Bfdo$88rCUOJ|x|H1>B?nzgwmZ}!0t-9#PL%Q-hEtvLjE3ztt0fifu&uTjd|A?A z)vai#aH6fs--@PEQ3Oo>Tt_$2j(9U-=tRpX!m>NnG;%D$&7B<`b^=-Xw-EiF&>AJE zTjTGdm>U{r#_JcBv7ao*zh5srn9pNF&H4Vua2+bR^xgi)`!0{|$<|8^5dMKR567R; z{WItOd0ps_e|;jb3^<4X|260J4y*n1XCD+^|B&`$-p`Jj`hQSshC{NHDW*idtS|GxuXf(V}`+-2QX-WS}Vm8Ev|3rgF+poZt9{@ z+y89e{}O-I!Q?U`S75dM%$i-xti63L9ZcJwUGcxpXFe^*!%jU*qo3yE?7m{xAl7XE zTt~1RWj($iv-q*Ozn%EdX{KD z^CQ?Z2<=(Q{AljS2g0F9xHZ_+Xzm&3AGEgGrHAVJ{jbJ@`qW3A;-5jMhK7!t2Tq+G zJ!mG6St%=NrV^=RiN54foR+bUhsguwW;cqFQ3t1bVuaS)*#;Q5M#z|s8@s#OI~Le^ z4|5p6UQ8!8$LC^0-5V~m1219g2hSMBr0lU1!U6Wn;2AqGDf>t({x*2VB}~d5yU>h( z2A;7Sld@lI#lHm4=*Oh&Hv>DUD4-7O=vyPo*4C_2%es-(tr{_gHlnv>f3mTSN*vc;#Gg1hj`V8dWctjAgel4 z@SF*jUL}w@rB&R#V|nhhN7hxxbI6*gR>{hi3I(^wT(RW27Ju7^MGNJ6vN&axE2Xkq z;aA=g8Qk2JYZa&9$`kybFgYBhMK5&>%7rECu56*DxR2hPMvAkH61pb^M7QF^` z27>mn1m7mtN)*EzNkf>%cY~b&8jtS_ITJi|sQvfoBv9QuPb0L=&vQH5^};@gJ0=A-(z2$Hc72txl5tKwDvqV`6}Q+Xg$ qo?{bp=utQx-*UKjOwkKTp2R|fOxI+#uoe~HC;uNsKrrB1myL1?!9NT`;s{Q z!r(?%ucWzJ~*=SGZj+!KFytB8YpbOd)(e z;u~T(_+p7ExnB`TRVgdVrzILEnC$jxxszV6^_X&mM9FTbGFvymROo(?-7qrJypujX zLV0A$@@#uvB^M4l&#iE#xptJBbcK?qm*&$}ZP%eG+Yw84-P*2O+hr*QL~>0zpOh0i z*6VyasUI>bet8zcY1g6coOFuTXG(2QAxg*C8;Bc7y%H7Kbg|vWkE}4&o$)d6*LF-f z&h^@^+^ZCvG_38Ia(mx~9p&>sEj&Cn==O%XezWy;W2!HQ%*kvtMq_Q|+FIdm6`d3d z%U!~i$GaUo>5j!gmxJs*tv|1eq+fXP+VlIW=Vq4g8QXN~(yWH)rUmn6HH0e~qD?K^ zE4D9OP_ba1FA?)q3JR+f2eqgA?G>%4Qz3kFZIHVtG3RL_fH6)G{Eb84HxGe73EYdr zS!Mzl%>U>i@ZbI5m%2v{Iiu3oilxmoF(m#xk1uU7iz z3v*S?8Z#V;M>aZxD4yq_H(%cxOE}V;H9U~c( z4jO|l$m&6Pu#JsIafypXTx0uw@Dzq;k=UX6mI=|3-3Q${f5q2d6R2g~tKS19abIi(l1f zywDitQsP%N!u8Z5fwCN2{(dPnF+K-Z_qh^yb8zy-rQEM-gmI1tneC^u5QO6bWXnRo zsuF%h7A;f?87O3+kby!53K=M5;Qt{5pL!-BDepkL&db@mZbEGwD&7phLTsM&ZENHEa`+oBOPB=<0DOQCCOW-JVIUq<2VD=-({$ z=T{P$e%VN#GY))wt8t*O$Z#DoPF%Le!ojoJL5ba6=b2R9Z%^^HF8vZ>(K5HzXj}Rq zRgL6F)@UQO^nEb)xO$v3A#~=*us@^fy7y3jyokdu>iT)|*RvVAweW!pHQPu&lrfSm z-O1Y1sle%E;F6IF063bt0y%6CTNZ>lJ+B5Xw!2yHZ%7mLS|7St zZVks-v>b=_+lQ!ujc8#ZS~!+$Ih+a{ZtHXzyUF*~%eHMK1KmdhU6icMWcUD|IT|=k ze9taiZ$zV-JZ8Ako>#?^3ae%SHr?_Mz-C%E4Zvnt;|E}~JUf4kaW(*--ZC*&+hwHI zbgM2Nr-GI?ZGrI1fcZ^gmhWR@fbM5Y4S4UgmG-)jk9QHiE`AggG zy@@-ML2K=SldTV(EVr(4Tx)roob10%o`bH;UCRNdX8H(5zrO26qU)%48>xHy)IDT8 za<&Y&NAk@}7wM*XwJLQS|{s zFZ9_qx`Cc&e~Yufz5olQkby!53K=M5ppbz=1_~MYnlnJ}Ytm1oUrxW0-j{yu#COxL zcuzcX;=3nW)BDq}pJ-d;6;nfAwCTF8XmJ>n-Uami)3$emwx6@@R?tU2vF%RK4?(*@ zr+seQ#aQpn{g-W*gVul=pwEEPKLx)5Z3i87-nM@MIu-O7C>475NyYWx2I1OX=DP06 z5hWdv5ia)vpv`HdP(4DvTAG6DJREl*rVheO%T|<*|CZ;9Z6&SZ)(MMe%$;%r!DM?6 zj^DvPNI+F-*<)ljD7Hw1%f5-`Ij?_pZsOCn0#x+T-$JLtqD^D!l(rK0^Sa|M00y zP(<)PJbE6X!t&2A+cDzP^bCcN+vr>6Y;NH2`3=x&K-4KTi22f}f4`@9E^+sDfr*&n!)s(7s^`8%{d{?C^@=NXTW zl3%Fhcx@ngj#~!xUpVppac9#D^f*|d>Ft`=)cR|5obp*8*l`?X@Xz~G!OHR;&STuAg69DZi@y-gOb-2c z2z(^sA58yxiH{bev{3%X0v|IpeoFUC{-*)lH-sPm5co#m)Gue=?g#FLKWB*nzsfyc z@VI694#EXSomV0JpGOM#VEy`u#7B#RI)0vSo(Eor+4O!tdsg&LtHidPuhz*Wp8~%j7tr-m zH~hQtFQDW87l~Nh+Gqu>XspQ>!d`ala|bo6?_688X4P_REXSN+1`Kn>hN?9I)2QAc z%$2LxEvs5>u3NEUW1z;Ysam!=V9G7=e%`}Q+tr&RkuAJOK2I=UhkRCw4ewvI$-ODE zO>M}}8c;joNJGSmpbMcb!i5WRpQr2G$e$I?6KX$x7LYxNC9Jx&F_j$A z9BWn|1?1_d-TZlwX;KhsFaCgy`DQo~GwXv*VcN96Y8|xjfq~hQh=lbA1bMEai9lns z^#JeJ)6D%IA+J3Xd9!d6 zCmv|Df}23CxT5u3Yl>MB-{z(kUvoUx9El?~Ul!Wb62-SI(XjC0(}qaASxCkDAR_aH zA83M8MXk7!Y>mVd7dm@%urXrR zhhfW{4y$U}stPN(S=pPxcsz)J$)4+ICfFDaA%++{WyF_ft&$8fU`m9Okj_EYH3}FHo3HVMR@O9%Q%*6-*J?_J{g@kM&76x6tn^ zUIWB9{_ueM{_k*kcl z7H8?x4txGRWqK+bm~zDS?DnS)dtUc2<>w;ScaHz(v_0ovc(tac(=^M(X}=c&>Ob4_ zx|C^{4K;Pz|K4HW;Z=%EA0_8Gg|8n&e?TR7{&0TB>19Pto$db#cqtBj+h)Jl;_oG$ z?J>{vudt=HJ=^p1WLE`16xLH*KhJnC1ayhnp4a=??`C!Xc^I%AkAu%(ODb&7--&h3 z0*F$sNcPP3Ouv96*PfprGTQ!*tfi{39aA@qbM5_prRSfmD95R|{{Clq7?UrKpVxKk zhp>10qje;;uhrSDV0-8NOS)8YDUV$xQRimuuuBI<{}0eO<9_q}I}#Yjt}NBrn5XDi YhjVV1b!pi Date: Sat, 20 Dec 2025 21:03:06 +0300 Subject: [PATCH 14/16] =?UTF-8?q?=D0=A3=D0=B4=D0=B0=D0=BB=D0=B8=D0=BB=20?= =?UTF-8?q?=D0=BF=D0=B0=D0=BF=D0=BA=D1=83=20build?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- build/CMakeCache.txt | 366 ------- build/CMakeFiles/4.1.1/CMakeCCompiler.cmake | 84 -- .../4.1.1/CMakeDetermineCompilerABI_C.bin | Bin 15472 -> 0 bytes build/CMakeFiles/4.1.1/CMakeSystem.cmake | 15 - .../4.1.1/CompilerIdC/CMakeCCompilerId.c | 934 ----------------- build/CMakeFiles/4.1.1/CompilerIdC/a.out | Bin 15536 -> 0 bytes build/CMakeFiles/CMakeConfigureLog.yaml | 937 ------------------ .../CMakeDirectoryInformation.cmake | 16 - build/CMakeFiles/InstallScripts.json | 7 - build/CMakeFiles/Makefile.cmake | 52 - build/CMakeFiles/Makefile2 | 157 --- build/CMakeFiles/TargetDirectories.txt | 4 - .../advancBalancStap.dir/DependInfo.cmake | 24 - .../advancBalancStap.dir/advancBalancStap.c.o | Bin 2872 -> 0 bytes .../advancBalancStap.c.o.d | 37 - .../advancBalancStap.dir/build.make | 115 --- .../advancBalancStap.dir/cmake_clean.cmake | 12 - .../advancBalancStap.dir/compiler_depend.make | 2 - .../advancBalancStap.dir/compiler_depend.ts | 2 - .../advancBalancStap.dir/depend.make | 2 - .../advancBalancStap.dir/flags.make | 10 - build/CMakeFiles/advancBalancStap.dir/link.d | 79 -- .../CMakeFiles/advancBalancStap.dir/link.txt | 1 - .../advancBalancStap.dir/progress.make | 3 - build/CMakeFiles/cmake.check_cache | 1 - build/CMakeFiles/progress.marks | 1 - .../sortStation.dir/DependInfo.cmake | 24 - build/CMakeFiles/sortStation.dir/build.make | 115 --- .../sortStation.dir/cmake_clean.cmake | 12 - .../sortStation.dir/compiler_depend.make | 2 - .../sortStation.dir/compiler_depend.ts | 2 - build/CMakeFiles/sortStation.dir/depend.make | 2 - build/CMakeFiles/sortStation.dir/flags.make | 10 - build/CMakeFiles/sortStation.dir/link.d | 79 -- build/CMakeFiles/sortStation.dir/link.txt | 1 - .../CMakeFiles/sortStation.dir/progress.make | 3 - .../sortStation.dir/sortStation.c.o | Bin 4016 -> 0 bytes .../sortStation.dir/sortStation.c.o.d | 37 - build/CMakeFiles/stack.dir/DependInfo.cmake | 23 - build/CMakeFiles/stack.dir/build.make | 114 --- build/CMakeFiles/stack.dir/cmake_clean.cmake | 11 - .../stack.dir/cmake_clean_target.cmake | 3 - .../stack.dir/compiler_depend.internal | 62 -- .../CMakeFiles/stack.dir/compiler_depend.make | 175 ---- build/CMakeFiles/stack.dir/compiler_depend.ts | 2 - build/CMakeFiles/stack.dir/depend.make | 2 - build/CMakeFiles/stack.dir/flags.make | 10 - build/CMakeFiles/stack.dir/link.txt | 2 - build/CMakeFiles/stack.dir/progress.make | 3 - build/CMakeFiles/stack.dir/stack.c.o | Bin 2280 -> 0 bytes build/CMakeFiles/stack.dir/stack.c.o.d | 34 - build/Makefile | 222 ----- build/advancBalancStap | Bin 16080 -> 0 bytes build/cmake_install.cmake | 66 -- build/libstack.a | Bin 2474 -> 0 bytes build/sortStation | Bin 16120 -> 0 bytes 56 files changed, 3877 deletions(-) delete mode 100644 build/CMakeCache.txt delete mode 100644 build/CMakeFiles/4.1.1/CMakeCCompiler.cmake delete mode 100755 build/CMakeFiles/4.1.1/CMakeDetermineCompilerABI_C.bin delete mode 100644 build/CMakeFiles/4.1.1/CMakeSystem.cmake delete mode 100644 build/CMakeFiles/4.1.1/CompilerIdC/CMakeCCompilerId.c delete mode 100755 build/CMakeFiles/4.1.1/CompilerIdC/a.out delete mode 100644 build/CMakeFiles/CMakeConfigureLog.yaml delete mode 100644 build/CMakeFiles/CMakeDirectoryInformation.cmake delete mode 100644 build/CMakeFiles/InstallScripts.json delete mode 100644 build/CMakeFiles/Makefile.cmake delete mode 100644 build/CMakeFiles/Makefile2 delete mode 100644 build/CMakeFiles/TargetDirectories.txt delete mode 100644 build/CMakeFiles/advancBalancStap.dir/DependInfo.cmake delete mode 100644 build/CMakeFiles/advancBalancStap.dir/advancBalancStap.c.o delete mode 100644 build/CMakeFiles/advancBalancStap.dir/advancBalancStap.c.o.d delete mode 100644 build/CMakeFiles/advancBalancStap.dir/build.make delete mode 100644 build/CMakeFiles/advancBalancStap.dir/cmake_clean.cmake delete mode 100644 build/CMakeFiles/advancBalancStap.dir/compiler_depend.make delete mode 100644 build/CMakeFiles/advancBalancStap.dir/compiler_depend.ts delete mode 100644 build/CMakeFiles/advancBalancStap.dir/depend.make delete mode 100644 build/CMakeFiles/advancBalancStap.dir/flags.make delete mode 100644 build/CMakeFiles/advancBalancStap.dir/link.d delete mode 100644 build/CMakeFiles/advancBalancStap.dir/link.txt delete mode 100644 build/CMakeFiles/advancBalancStap.dir/progress.make delete mode 100644 build/CMakeFiles/cmake.check_cache delete mode 100644 build/CMakeFiles/progress.marks delete mode 100644 build/CMakeFiles/sortStation.dir/DependInfo.cmake delete mode 100644 build/CMakeFiles/sortStation.dir/build.make delete mode 100644 build/CMakeFiles/sortStation.dir/cmake_clean.cmake delete mode 100644 build/CMakeFiles/sortStation.dir/compiler_depend.make delete mode 100644 build/CMakeFiles/sortStation.dir/compiler_depend.ts delete mode 100644 build/CMakeFiles/sortStation.dir/depend.make delete mode 100644 build/CMakeFiles/sortStation.dir/flags.make delete mode 100644 build/CMakeFiles/sortStation.dir/link.d delete mode 100644 build/CMakeFiles/sortStation.dir/link.txt delete mode 100644 build/CMakeFiles/sortStation.dir/progress.make delete mode 100644 build/CMakeFiles/sortStation.dir/sortStation.c.o delete mode 100644 build/CMakeFiles/sortStation.dir/sortStation.c.o.d delete mode 100644 build/CMakeFiles/stack.dir/DependInfo.cmake delete mode 100644 build/CMakeFiles/stack.dir/build.make delete mode 100644 build/CMakeFiles/stack.dir/cmake_clean.cmake delete mode 100644 build/CMakeFiles/stack.dir/cmake_clean_target.cmake delete mode 100644 build/CMakeFiles/stack.dir/compiler_depend.internal delete mode 100644 build/CMakeFiles/stack.dir/compiler_depend.make delete mode 100644 build/CMakeFiles/stack.dir/compiler_depend.ts delete mode 100644 build/CMakeFiles/stack.dir/depend.make delete mode 100644 build/CMakeFiles/stack.dir/flags.make delete mode 100644 build/CMakeFiles/stack.dir/link.txt delete mode 100644 build/CMakeFiles/stack.dir/progress.make delete mode 100644 build/CMakeFiles/stack.dir/stack.c.o delete mode 100644 build/CMakeFiles/stack.dir/stack.c.o.d delete mode 100644 build/Makefile delete mode 100755 build/advancBalancStap delete mode 100644 build/cmake_install.cmake delete mode 100644 build/libstack.a delete mode 100755 build/sortStation diff --git a/build/CMakeCache.txt b/build/CMakeCache.txt deleted file mode 100644 index c09ee65..0000000 --- a/build/CMakeCache.txt +++ /dev/null @@ -1,366 +0,0 @@ -# This is the CMakeCache file. -# For build in directory: /home/andrew/src2/build -# It was generated by CMake: /usr/bin/cmake -# You can edit this file to change values found and used by cmake. -# If you do not want to change any of the values, simply exit the editor. -# If you do want to change a value, simply edit, save, and exit the editor. -# The syntax for the file is as follows: -# KEY:TYPE=VALUE -# KEY is the name of a variable in the cache. -# TYPE is a hint to GUIs for the type of VALUE, DO NOT EDIT TYPE!. -# VALUE is the current value for the KEY. - -######################## -# EXTERNAL cache entries -######################## - -//Path to a program. -CMAKE_ADDR2LINE:FILEPATH=/usr/bin/addr2line - -//Path to a program. -CMAKE_AR:FILEPATH=/usr/bin/ar - -//Choose the type of build, options are: None Debug Release RelWithDebInfo -// MinSizeRel ... -CMAKE_BUILD_TYPE:STRING= - -//Enable/Disable color output during build. -CMAKE_COLOR_MAKEFILE:BOOL=ON - -//C compiler -CMAKE_C_COMPILER:FILEPATH=/usr/bin/cc - -//A wrapper around 'ar' adding the appropriate '--plugin' option -// for the GCC compiler -CMAKE_C_COMPILER_AR:FILEPATH=/usr/bin/gcc-ar - -//A wrapper around 'ranlib' adding the appropriate '--plugin' option -// for the GCC compiler -CMAKE_C_COMPILER_RANLIB:FILEPATH=/usr/bin/gcc-ranlib - -//Flags used by the C compiler during all build types. -CMAKE_C_FLAGS:STRING= - -//Flags used by the C compiler during DEBUG builds. -CMAKE_C_FLAGS_DEBUG:STRING=-g - -//Flags used by the C compiler during MINSIZEREL builds. -CMAKE_C_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG - -//Flags used by the C compiler during RELEASE builds. -CMAKE_C_FLAGS_RELEASE:STRING=-O3 -DNDEBUG - -//Flags used by the C compiler during RELWITHDEBINFO builds. -CMAKE_C_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG - -//Path to a program. -CMAKE_DLLTOOL:FILEPATH=CMAKE_DLLTOOL-NOTFOUND - -//Flags used by the linker during all build types. -CMAKE_EXE_LINKER_FLAGS:STRING= - -//Flags used by the linker during DEBUG builds. -CMAKE_EXE_LINKER_FLAGS_DEBUG:STRING= - -//Flags used by the linker during MINSIZEREL builds. -CMAKE_EXE_LINKER_FLAGS_MINSIZEREL:STRING= - -//Flags used by the linker during RELEASE builds. -CMAKE_EXE_LINKER_FLAGS_RELEASE:STRING= - -//Flags used by the linker during RELWITHDEBINFO builds. -CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO:STRING= - -//Enable/Disable output of compile commands during generation. -CMAKE_EXPORT_COMPILE_COMMANDS:BOOL= - -//Value Computed by CMake. -CMAKE_FIND_PACKAGE_REDIRECTS_DIR:STATIC=/home/andrew/src2/build/CMakeFiles/pkgRedirects - -//Install path prefix, prepended onto install directories. -CMAKE_INSTALL_PREFIX:PATH=/usr/local - -//Path to a program. -CMAKE_LINKER:FILEPATH=/usr/bin/ld - -//Path to a program. -CMAKE_MAKE_PROGRAM:FILEPATH=/usr/bin/make - -//Flags used by the linker during the creation of modules during -// all build types. -CMAKE_MODULE_LINKER_FLAGS:STRING= - -//Flags used by the linker during the creation of modules during -// DEBUG builds. -CMAKE_MODULE_LINKER_FLAGS_DEBUG:STRING= - -//Flags used by the linker during the creation of modules during -// MINSIZEREL builds. -CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL:STRING= - -//Flags used by the linker during the creation of modules during -// RELEASE builds. -CMAKE_MODULE_LINKER_FLAGS_RELEASE:STRING= - -//Flags used by the linker during the creation of modules during -// RELWITHDEBINFO builds. -CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO:STRING= - -//Path to a program. -CMAKE_NM:FILEPATH=/usr/bin/nm - -//Path to a program. -CMAKE_OBJCOPY:FILEPATH=/usr/bin/objcopy - -//Path to a program. -CMAKE_OBJDUMP:FILEPATH=/usr/bin/objdump - -//Value Computed by CMake -CMAKE_PROJECT_COMPAT_VERSION:STATIC= - -//Value Computed by CMake -CMAKE_PROJECT_DESCRIPTION:STATIC= - -//Value Computed by CMake -CMAKE_PROJECT_HOMEPAGE_URL:STATIC= - -//Value Computed by CMake -CMAKE_PROJECT_NAME:STATIC=sortStation - -//Value Computed by CMake -CMAKE_PROJECT_VERSION:STATIC= - -//Value Computed by CMake -CMAKE_PROJECT_VERSION_MAJOR:STATIC= - -//Value Computed by CMake -CMAKE_PROJECT_VERSION_MINOR:STATIC= - -//Value Computed by CMake -CMAKE_PROJECT_VERSION_PATCH:STATIC= - -//Value Computed by CMake -CMAKE_PROJECT_VERSION_TWEAK:STATIC= - -//Path to a program. -CMAKE_RANLIB:FILEPATH=/usr/bin/ranlib - -//Path to a program. -CMAKE_READELF:FILEPATH=/usr/bin/readelf - -//Flags used by the linker during the creation of shared libraries -// during all build types. -CMAKE_SHARED_LINKER_FLAGS:STRING= - -//Flags used by the linker during the creation of shared libraries -// during DEBUG builds. -CMAKE_SHARED_LINKER_FLAGS_DEBUG:STRING= - -//Flags used by the linker during the creation of shared libraries -// during MINSIZEREL builds. -CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL:STRING= - -//Flags used by the linker during the creation of shared libraries -// during RELEASE builds. -CMAKE_SHARED_LINKER_FLAGS_RELEASE:STRING= - -//Flags used by the linker during the creation of shared libraries -// during RELWITHDEBINFO builds. -CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO:STRING= - -//If set, runtime paths are not added when installing shared libraries, -// but are added when building. -CMAKE_SKIP_INSTALL_RPATH:BOOL=NO - -//If set, runtime paths are not added when using shared libraries. -CMAKE_SKIP_RPATH:BOOL=NO - -//Flags used by the archiver during the creation of static libraries -// during all build types. -CMAKE_STATIC_LINKER_FLAGS:STRING= - -//Flags used by the archiver during the creation of static libraries -// during DEBUG builds. -CMAKE_STATIC_LINKER_FLAGS_DEBUG:STRING= - -//Flags used by the archiver during the creation of static libraries -// during MINSIZEREL builds. -CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL:STRING= - -//Flags used by the archiver during the creation of static libraries -// during RELEASE builds. -CMAKE_STATIC_LINKER_FLAGS_RELEASE:STRING= - -//Flags used by the archiver during the creation of static libraries -// during RELWITHDEBINFO builds. -CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO:STRING= - -//Path to a program. -CMAKE_STRIP:FILEPATH=/usr/bin/strip - -//Path to a program. -CMAKE_TAPI:FILEPATH=CMAKE_TAPI-NOTFOUND - -//If this value is on, makefiles will be generated without the -// .SILENT directive, and all commands will be echoed to the console -// during the make. This is useful for debugging only. With Visual -// Studio IDE projects all commands are done without /nologo. -CMAKE_VERBOSE_MAKEFILE:BOOL=FALSE - -//Value Computed by CMake -advancBalancStap_BINARY_DIR:STATIC=/home/andrew/src2/build - -//Value Computed by CMake -advancBalancStap_IS_TOP_LEVEL:STATIC=ON - -//Value Computed by CMake -advancBalancStap_SOURCE_DIR:STATIC=/home/andrew/src2 - -//Value Computed by CMake -sortStation_BINARY_DIR:STATIC=/home/andrew/src2/build - -//Value Computed by CMake -sortStation_IS_TOP_LEVEL:STATIC=ON - -//Value Computed by CMake -sortStation_SOURCE_DIR:STATIC=/home/andrew/src2 - - -######################## -# INTERNAL cache entries -######################## - -//ADVANCED property for variable: CMAKE_ADDR2LINE -CMAKE_ADDR2LINE-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_AR -CMAKE_AR-ADVANCED:INTERNAL=1 -//This is the directory where this CMakeCache.txt was created -CMAKE_CACHEFILE_DIR:INTERNAL=/home/andrew/src2/build -//Major version of cmake used to create the current loaded cache -CMAKE_CACHE_MAJOR_VERSION:INTERNAL=4 -//Minor version of cmake used to create the current loaded cache -CMAKE_CACHE_MINOR_VERSION:INTERNAL=1 -//Patch version of cmake used to create the current loaded cache -CMAKE_CACHE_PATCH_VERSION:INTERNAL=1 -//ADVANCED property for variable: CMAKE_COLOR_MAKEFILE -CMAKE_COLOR_MAKEFILE-ADVANCED:INTERNAL=1 -//Path to CMake executable. -CMAKE_COMMAND:INTERNAL=/usr/bin/cmake -//Path to cpack program executable. -CMAKE_CPACK_COMMAND:INTERNAL=/usr/bin/cpack -//Path to ctest program executable. -CMAKE_CTEST_COMMAND:INTERNAL=/usr/bin/ctest -//ADVANCED property for variable: CMAKE_C_COMPILER -CMAKE_C_COMPILER-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_C_COMPILER_AR -CMAKE_C_COMPILER_AR-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_C_COMPILER_RANLIB -CMAKE_C_COMPILER_RANLIB-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_C_FLAGS -CMAKE_C_FLAGS-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_C_FLAGS_DEBUG -CMAKE_C_FLAGS_DEBUG-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_C_FLAGS_MINSIZEREL -CMAKE_C_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_C_FLAGS_RELEASE -CMAKE_C_FLAGS_RELEASE-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_C_FLAGS_RELWITHDEBINFO -CMAKE_C_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_DLLTOOL -CMAKE_DLLTOOL-ADVANCED:INTERNAL=1 -//Path to cache edit program executable. -CMAKE_EDIT_COMMAND:INTERNAL=/usr/bin/ccmake -//Executable file format -CMAKE_EXECUTABLE_FORMAT:INTERNAL=ELF -//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS -CMAKE_EXE_LINKER_FLAGS-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_DEBUG -CMAKE_EXE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_MINSIZEREL -CMAKE_EXE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELEASE -CMAKE_EXE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO -CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_EXPORT_COMPILE_COMMANDS -CMAKE_EXPORT_COMPILE_COMMANDS-ADVANCED:INTERNAL=1 -//Name of external makefile project generator. -CMAKE_EXTRA_GENERATOR:INTERNAL= -//Name of generator. -CMAKE_GENERATOR:INTERNAL=Unix Makefiles -//Generator instance identifier. -CMAKE_GENERATOR_INSTANCE:INTERNAL= -//Name of generator platform. -CMAKE_GENERATOR_PLATFORM:INTERNAL= -//Name of generator toolset. -CMAKE_GENERATOR_TOOLSET:INTERNAL= -//Source directory with the top level CMakeLists.txt file for this -// project -CMAKE_HOME_DIRECTORY:INTERNAL=/home/andrew/src2 -//Install .so files without execute permission. -CMAKE_INSTALL_SO_NO_EXE:INTERNAL=0 -//ADVANCED property for variable: CMAKE_LINKER -CMAKE_LINKER-ADVANCED:INTERNAL=1 -//Name of CMakeLists files to read -CMAKE_LIST_FILE_NAME:INTERNAL=CMakeLists.txt -//ADVANCED property for variable: CMAKE_MAKE_PROGRAM -CMAKE_MAKE_PROGRAM-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS -CMAKE_MODULE_LINKER_FLAGS-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_DEBUG -CMAKE_MODULE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL -CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELEASE -CMAKE_MODULE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO -CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_NM -CMAKE_NM-ADVANCED:INTERNAL=1 -//number of local generators -CMAKE_NUMBER_OF_MAKEFILES:INTERNAL=1 -//ADVANCED property for variable: CMAKE_OBJCOPY -CMAKE_OBJCOPY-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_OBJDUMP -CMAKE_OBJDUMP-ADVANCED:INTERNAL=1 -//Platform information initialized -CMAKE_PLATFORM_INFO_INITIALIZED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_RANLIB -CMAKE_RANLIB-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_READELF -CMAKE_READELF-ADVANCED:INTERNAL=1 -//Path to CMake installation. -CMAKE_ROOT:INTERNAL=/usr/share/cmake -//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS -CMAKE_SHARED_LINKER_FLAGS-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_DEBUG -CMAKE_SHARED_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL -CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELEASE -CMAKE_SHARED_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO -CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_SKIP_INSTALL_RPATH -CMAKE_SKIP_INSTALL_RPATH-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_SKIP_RPATH -CMAKE_SKIP_RPATH-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS -CMAKE_STATIC_LINKER_FLAGS-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_DEBUG -CMAKE_STATIC_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL -CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELEASE -CMAKE_STATIC_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO -CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_STRIP -CMAKE_STRIP-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_TAPI -CMAKE_TAPI-ADVANCED:INTERNAL=1 -//uname command -CMAKE_UNAME:INTERNAL=/usr/bin/uname -//ADVANCED property for variable: CMAKE_VERBOSE_MAKEFILE -CMAKE_VERBOSE_MAKEFILE-ADVANCED:INTERNAL=1 - diff --git a/build/CMakeFiles/4.1.1/CMakeCCompiler.cmake b/build/CMakeFiles/4.1.1/CMakeCCompiler.cmake deleted file mode 100644 index 6d26591..0000000 --- a/build/CMakeFiles/4.1.1/CMakeCCompiler.cmake +++ /dev/null @@ -1,84 +0,0 @@ -set(CMAKE_C_COMPILER "/usr/bin/cc") -set(CMAKE_C_COMPILER_ARG1 "") -set(CMAKE_C_COMPILER_ID "GNU") -set(CMAKE_C_COMPILER_VERSION "15.2.1") -set(CMAKE_C_COMPILER_VERSION_INTERNAL "") -set(CMAKE_C_COMPILER_WRAPPER "") -set(CMAKE_C_STANDARD_COMPUTED_DEFAULT "23") -set(CMAKE_C_EXTENSIONS_COMPUTED_DEFAULT "ON") -set(CMAKE_C_STANDARD_LATEST "23") -set(CMAKE_C_COMPILE_FEATURES "c_std_90;c_function_prototypes;c_std_99;c_restrict;c_variadic_macros;c_std_11;c_static_assert;c_std_17;c_std_23") -set(CMAKE_C90_COMPILE_FEATURES "c_std_90;c_function_prototypes") -set(CMAKE_C99_COMPILE_FEATURES "c_std_99;c_restrict;c_variadic_macros") -set(CMAKE_C11_COMPILE_FEATURES "c_std_11;c_static_assert") -set(CMAKE_C17_COMPILE_FEATURES "c_std_17") -set(CMAKE_C23_COMPILE_FEATURES "c_std_23") - -set(CMAKE_C_PLATFORM_ID "Linux") -set(CMAKE_C_SIMULATE_ID "") -set(CMAKE_C_COMPILER_FRONTEND_VARIANT "GNU") -set(CMAKE_C_COMPILER_APPLE_SYSROOT "") -set(CMAKE_C_SIMULATE_VERSION "") -set(CMAKE_C_COMPILER_ARCHITECTURE_ID "x86_64") - - - -set(CMAKE_AR "/usr/bin/ar") -set(CMAKE_C_COMPILER_AR "/usr/bin/gcc-ar") -set(CMAKE_RANLIB "/usr/bin/ranlib") -set(CMAKE_C_COMPILER_RANLIB "/usr/bin/gcc-ranlib") -set(CMAKE_LINKER "/usr/bin/ld") -set(CMAKE_LINKER_LINK "") -set(CMAKE_LINKER_LLD "") -set(CMAKE_C_COMPILER_LINKER "/usr/bin/ld") -set(CMAKE_C_COMPILER_LINKER_ID "GNU") -set(CMAKE_C_COMPILER_LINKER_VERSION 2.45.0) -set(CMAKE_C_COMPILER_LINKER_FRONTEND_VARIANT GNU) -set(CMAKE_MT "") -set(CMAKE_TAPI "CMAKE_TAPI-NOTFOUND") -set(CMAKE_COMPILER_IS_GNUCC 1) -set(CMAKE_C_COMPILER_LOADED 1) -set(CMAKE_C_COMPILER_WORKS TRUE) -set(CMAKE_C_ABI_COMPILED TRUE) - -set(CMAKE_C_COMPILER_ENV_VAR "CC") - -set(CMAKE_C_COMPILER_ID_RUN 1) -set(CMAKE_C_SOURCE_FILE_EXTENSIONS c;m) -set(CMAKE_C_IGNORE_EXTENSIONS h;H;o;O;obj;OBJ;def;DEF;rc;RC) -set(CMAKE_C_LINKER_PREFERENCE 10) -set(CMAKE_C_LINKER_DEPFILE_SUPPORTED TRUE) -set(CMAKE_LINKER_PUSHPOP_STATE_SUPPORTED TRUE) -set(CMAKE_C_LINKER_PUSHPOP_STATE_SUPPORTED TRUE) - -# Save compiler ABI information. -set(CMAKE_C_SIZEOF_DATA_PTR "8") -set(CMAKE_C_COMPILER_ABI "ELF") -set(CMAKE_C_BYTE_ORDER "LITTLE_ENDIAN") -set(CMAKE_C_LIBRARY_ARCHITECTURE "") - -if(CMAKE_C_SIZEOF_DATA_PTR) - set(CMAKE_SIZEOF_VOID_P "${CMAKE_C_SIZEOF_DATA_PTR}") -endif() - -if(CMAKE_C_COMPILER_ABI) - set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_C_COMPILER_ABI}") -endif() - -if(CMAKE_C_LIBRARY_ARCHITECTURE) - set(CMAKE_LIBRARY_ARCHITECTURE "") -endif() - -set(CMAKE_C_CL_SHOWINCLUDES_PREFIX "") -if(CMAKE_C_CL_SHOWINCLUDES_PREFIX) - set(CMAKE_CL_SHOWINCLUDES_PREFIX "${CMAKE_C_CL_SHOWINCLUDES_PREFIX}") -endif() - - - - - -set(CMAKE_C_IMPLICIT_INCLUDE_DIRECTORIES "/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include;/usr/local/include;/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include-fixed;/usr/include") -set(CMAKE_C_IMPLICIT_LINK_LIBRARIES "gcc;gcc_s;c;gcc;gcc_s") -set(CMAKE_C_IMPLICIT_LINK_DIRECTORIES "/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1;/usr/lib;/lib") -set(CMAKE_C_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "") diff --git a/build/CMakeFiles/4.1.1/CMakeDetermineCompilerABI_C.bin b/build/CMakeFiles/4.1.1/CMakeDetermineCompilerABI_C.bin deleted file mode 100755 index 4223d3d5614626ec702fed2cc9a50676b4a3a2f0..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 15472 zcmeHOYit}>6~4Q9xoHw_lQ_6d)J&tQq*A@H9osTNY1dw_JuCSU5(iXS&M@|l?Sb{K zH9JOeQ58!msK%tENuTCrp#v?e8nsaEL_q*S}wN6RDX zu-ZxT_CTlYDGg-REwODQ)`*_f%zH!ZVLT#!Kt#yMyscV02Sg31WIdR-gAF2w@kcTN z5cbM^29v27!Loua!UI?8r~kZ)&#Fa^1@@SVZII(3 zImjvb^X6dwyBB`<=_A*^JA13^SNR_#Uhn(iv)<~7ygSm?aw4B=$h(EIuNwRB-^4RbI%5;PwS~U0h5i8Pk8LuJvMgGgQLE(Jo^MUsZh>1b_NKh>^_kVt<%^#C?Fb%2T3y8<7vA-rB z()xNiexYBK0c%p)4n5>VNIz?6zxt5=CDAWFqwTzpS8wxQRO$Jgg0@tpmqR`<{iaHf zV}}jPRr=ukiGd=FG7x1T%0QHXC<9Rjq6|bC_(*2pueFc<%e;KM#+=`A?SxY1mlpka zdC9!|vzqI{`mnv}PuaP5E|_zFFfYHia%M2owAggRymI=t!>w@I}oxs2K6^19*%()fw+Mk~>udQw~V{e=9 ztoa9NfCd?$ro22>d$env&+*NkK2K&fee%3{`Sfn?nse{_d(HXNPmoZqTczL9H%H6m z^4mL}B1LTY`g*(+M@o&Y%RJt#aq>M+W6V8&+nk$T{(0suhdiITZGPLlQg>^gQnhbx zPt^WoF_yV2+Jn5xci8gQ_IT}EVao>_EarUOHz+1ejV;x_sq|Q+e_=EIeCF;jZH~&e zs%#w&D{4^&q6|bCh%yjmAj&|LfhYq}2BHi^8Hh3vW#Gdz!0);4*RuWH1E) a>pRpXT=;VgHY^T-JpUHOhcc{QG;E&Asj#c#N9oIVq<7L)&>`Qz(p5D7N{#9bK zLciB$XMUf??_jy{JF)8bVu3PRL>Y)O5M?0BK$L+f15pN|3`7}-G7x3pBb))$Euu~l zHHBOY$!(8@N@3()kzbd3$A?8mJ>+4LQRn!G$f%3t-(%ch|6r|LWO+%76H#+GD?h%t z&XL=S*mrADy(svgV7*|SAYhktOc@ySu85wBJc9=QzsouvQUEFXG9;aizW4@^V)&`0Ts@} z=a@iWGb|WEr?PmSdNEa}Zc6kKg_R`FkbZxBcjdfPaY^^tpLf#f;^dT@cf5|yY;sh&g|VWw{!q#qamOvEkaO+A zJ*K?t`*~-Bm7Z2zs8huY& zzTkKzw^-O9SY-2@yv+n2hr&tv&P7@V`AT}lAbUw?!W#4JNynPV5d)G0Lpw}^Z;xxf zWqY1YVKN_m8r+_AM``9FjZBN=RGvC|XiBO|jus~;odV_Jf6@4Q%Ga>C42JJ!fGN=f zaD9VJoE~I1fPGK^;2OD)Vpk-4^`Wx4LCX_&Z$_5&x3R55)Zdu9xBX z&k>)m@!+orA9z(J!}k#2<9a?scBX)j`wHNT!Uu%oA0-1{^TEe;9*FxR#1B8<6!G~U z0y6F+fQ>S7IDW))i8{PZz{hk1@U(;^TS-#Qh}v!~5T>!pHh6Lp%i+LAHU)6=L|RshUdRQ`hD~-yS>7FHoj8}&j%U!YvR^c@o^ts z&nE_I@YB+|4E^uP!21s7$Ndz(S6ql`CiXAzupjXK3cG-h@0S)&Xx?!Rl_mJVJ7lTm z;&z$$$%D>24 & 0x00FF) -# define COMPILER_VERSION_MINOR HEX(__CODEGEARC_VERSION__>>16 & 0x00FF) -# define COMPILER_VERSION_PATCH DEC(__CODEGEARC_VERSION__ & 0xFFFF) - -#elif defined(__BORLANDC__) -# define COMPILER_ID "Borland" - /* __BORLANDC__ = 0xVRR */ -# define COMPILER_VERSION_MAJOR HEX(__BORLANDC__>>8) -# define COMPILER_VERSION_MINOR HEX(__BORLANDC__ & 0xFF) - -#elif defined(__WATCOMC__) && __WATCOMC__ < 1200 -# define COMPILER_ID "Watcom" - /* __WATCOMC__ = VVRR */ -# define COMPILER_VERSION_MAJOR DEC(__WATCOMC__ / 100) -# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) -# if (__WATCOMC__ % 10) > 0 -# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) -# endif - -#elif defined(__WATCOMC__) -# define COMPILER_ID "OpenWatcom" - /* __WATCOMC__ = VVRP + 1100 */ -# define COMPILER_VERSION_MAJOR DEC((__WATCOMC__ - 1100) / 100) -# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) -# if (__WATCOMC__ % 10) > 0 -# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) -# endif - -#elif defined(__SUNPRO_C) -# define COMPILER_ID "SunPro" -# if __SUNPRO_C >= 0x5100 - /* __SUNPRO_C = 0xVRRP */ -# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_C>>12) -# define COMPILER_VERSION_MINOR HEX(__SUNPRO_C>>4 & 0xFF) -# define COMPILER_VERSION_PATCH HEX(__SUNPRO_C & 0xF) -# else - /* __SUNPRO_CC = 0xVRP */ -# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_C>>8) -# define COMPILER_VERSION_MINOR HEX(__SUNPRO_C>>4 & 0xF) -# define COMPILER_VERSION_PATCH HEX(__SUNPRO_C & 0xF) -# endif - -#elif defined(__HP_cc) -# define COMPILER_ID "HP" - /* __HP_cc = VVRRPP */ -# define COMPILER_VERSION_MAJOR DEC(__HP_cc/10000) -# define COMPILER_VERSION_MINOR DEC(__HP_cc/100 % 100) -# define COMPILER_VERSION_PATCH DEC(__HP_cc % 100) - -#elif defined(__DECC) -# define COMPILER_ID "Compaq" - /* __DECC_VER = VVRRTPPPP */ -# define COMPILER_VERSION_MAJOR DEC(__DECC_VER/10000000) -# define COMPILER_VERSION_MINOR DEC(__DECC_VER/100000 % 100) -# define COMPILER_VERSION_PATCH DEC(__DECC_VER % 10000) - -#elif defined(__IBMC__) && defined(__COMPILER_VER__) -# define COMPILER_ID "zOS" - /* __IBMC__ = VRP */ -# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100) -# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10) -# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10) - -#elif defined(__open_xl__) && defined(__clang__) -# define COMPILER_ID "IBMClang" -# define COMPILER_VERSION_MAJOR DEC(__open_xl_version__) -# define COMPILER_VERSION_MINOR DEC(__open_xl_release__) -# define COMPILER_VERSION_PATCH DEC(__open_xl_modification__) -# define COMPILER_VERSION_TWEAK DEC(__open_xl_ptf_fix_level__) -# define COMPILER_VERSION_INTERNAL_STR __clang_version__ - - -#elif defined(__ibmxl__) && defined(__clang__) -# define COMPILER_ID "XLClang" -# define COMPILER_VERSION_MAJOR DEC(__ibmxl_version__) -# define COMPILER_VERSION_MINOR DEC(__ibmxl_release__) -# define COMPILER_VERSION_PATCH DEC(__ibmxl_modification__) -# define COMPILER_VERSION_TWEAK DEC(__ibmxl_ptf_fix_level__) - - -#elif defined(__IBMC__) && !defined(__COMPILER_VER__) && __IBMC__ >= 800 -# define COMPILER_ID "XL" - /* __IBMC__ = VRP */ -# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100) -# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10) -# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10) - -#elif defined(__IBMC__) && !defined(__COMPILER_VER__) && __IBMC__ < 800 -# define COMPILER_ID "VisualAge" - /* __IBMC__ = VRP */ -# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100) -# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10) -# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10) - -#elif defined(__NVCOMPILER) -# define COMPILER_ID "NVHPC" -# define COMPILER_VERSION_MAJOR DEC(__NVCOMPILER_MAJOR__) -# define COMPILER_VERSION_MINOR DEC(__NVCOMPILER_MINOR__) -# if defined(__NVCOMPILER_PATCHLEVEL__) -# define COMPILER_VERSION_PATCH DEC(__NVCOMPILER_PATCHLEVEL__) -# endif - -#elif defined(__PGI) -# define COMPILER_ID "PGI" -# define COMPILER_VERSION_MAJOR DEC(__PGIC__) -# define COMPILER_VERSION_MINOR DEC(__PGIC_MINOR__) -# if defined(__PGIC_PATCHLEVEL__) -# define COMPILER_VERSION_PATCH DEC(__PGIC_PATCHLEVEL__) -# endif - -#elif defined(__clang__) && defined(__cray__) -# define COMPILER_ID "CrayClang" -# define COMPILER_VERSION_MAJOR DEC(__cray_major__) -# define COMPILER_VERSION_MINOR DEC(__cray_minor__) -# define COMPILER_VERSION_PATCH DEC(__cray_patchlevel__) -# define COMPILER_VERSION_INTERNAL_STR __clang_version__ - - -#elif defined(_CRAYC) -# define COMPILER_ID "Cray" -# define COMPILER_VERSION_MAJOR DEC(_RELEASE_MAJOR) -# define COMPILER_VERSION_MINOR DEC(_RELEASE_MINOR) - -#elif defined(__TI_COMPILER_VERSION__) -# define COMPILER_ID "TI" - /* __TI_COMPILER_VERSION__ = VVVRRRPPP */ -# define COMPILER_VERSION_MAJOR DEC(__TI_COMPILER_VERSION__/1000000) -# define COMPILER_VERSION_MINOR DEC(__TI_COMPILER_VERSION__/1000 % 1000) -# define COMPILER_VERSION_PATCH DEC(__TI_COMPILER_VERSION__ % 1000) - -#elif defined(__CLANG_FUJITSU) -# define COMPILER_ID "FujitsuClang" -# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) -# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) -# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) -# define COMPILER_VERSION_INTERNAL_STR __clang_version__ - - -#elif defined(__FUJITSU) -# define COMPILER_ID "Fujitsu" -# if defined(__FCC_version__) -# define COMPILER_VERSION __FCC_version__ -# elif defined(__FCC_major__) -# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) -# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) -# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) -# endif -# if defined(__fcc_version) -# define COMPILER_VERSION_INTERNAL DEC(__fcc_version) -# elif defined(__FCC_VERSION) -# define COMPILER_VERSION_INTERNAL DEC(__FCC_VERSION) -# endif - - -#elif defined(__ghs__) -# define COMPILER_ID "GHS" -/* __GHS_VERSION_NUMBER = VVVVRP */ -# ifdef __GHS_VERSION_NUMBER -# define COMPILER_VERSION_MAJOR DEC(__GHS_VERSION_NUMBER / 100) -# define COMPILER_VERSION_MINOR DEC(__GHS_VERSION_NUMBER / 10 % 10) -# define COMPILER_VERSION_PATCH DEC(__GHS_VERSION_NUMBER % 10) -# endif - -#elif defined(__TASKING__) -# define COMPILER_ID "Tasking" - # define COMPILER_VERSION_MAJOR DEC(__VERSION__/1000) - # define COMPILER_VERSION_MINOR DEC(__VERSION__ % 100) -# define COMPILER_VERSION_INTERNAL DEC(__VERSION__) - -#elif defined(__ORANGEC__) -# define COMPILER_ID "OrangeC" -# define COMPILER_VERSION_MAJOR DEC(__ORANGEC_MAJOR__) -# define COMPILER_VERSION_MINOR DEC(__ORANGEC_MINOR__) -# define COMPILER_VERSION_PATCH DEC(__ORANGEC_PATCHLEVEL__) - -#elif defined(__RENESAS__) -# define COMPILER_ID "Renesas" -/* __RENESAS_VERSION__ = 0xVVRRPP00 */ -# define COMPILER_VERSION_MAJOR HEX(__RENESAS_VERSION__ >> 24 & 0xFF) -# define COMPILER_VERSION_MINOR HEX(__RENESAS_VERSION__ >> 16 & 0xFF) -# define COMPILER_VERSION_PATCH HEX(__RENESAS_VERSION__ >> 8 & 0xFF) - -#elif defined(__TINYC__) -# define COMPILER_ID "TinyCC" - -#elif defined(__BCC__) -# define COMPILER_ID "Bruce" - -#elif defined(__SCO_VERSION__) -# define COMPILER_ID "SCO" - -#elif defined(__ARMCC_VERSION) && !defined(__clang__) -# define COMPILER_ID "ARMCC" -#if __ARMCC_VERSION >= 1000000 - /* __ARMCC_VERSION = VRRPPPP */ - # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/1000000) - # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 100) - # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) -#else - /* __ARMCC_VERSION = VRPPPP */ - # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/100000) - # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 10) - # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) -#endif - - -#elif defined(__clang__) && defined(__apple_build_version__) -# define COMPILER_ID "AppleClang" -# if defined(_MSC_VER) -# define SIMULATE_ID "MSVC" -# endif -# define COMPILER_VERSION_MAJOR DEC(__clang_major__) -# define COMPILER_VERSION_MINOR DEC(__clang_minor__) -# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) -# if defined(_MSC_VER) - /* _MSC_VER = VVRR */ -# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) -# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) -# endif -# define COMPILER_VERSION_TWEAK DEC(__apple_build_version__) - -#elif defined(__clang__) && defined(__ARMCOMPILER_VERSION) -# define COMPILER_ID "ARMClang" - # define COMPILER_VERSION_MAJOR DEC(__ARMCOMPILER_VERSION/1000000) - # define COMPILER_VERSION_MINOR DEC(__ARMCOMPILER_VERSION/10000 % 100) - # define COMPILER_VERSION_PATCH DEC(__ARMCOMPILER_VERSION/100 % 100) -# define COMPILER_VERSION_INTERNAL DEC(__ARMCOMPILER_VERSION) - -#elif defined(__clang__) && defined(__ti__) -# define COMPILER_ID "TIClang" - # define COMPILER_VERSION_MAJOR DEC(__ti_major__) - # define COMPILER_VERSION_MINOR DEC(__ti_minor__) - # define COMPILER_VERSION_PATCH DEC(__ti_patchlevel__) -# define COMPILER_VERSION_INTERNAL DEC(__ti_version__) - -#elif defined(__clang__) -# define COMPILER_ID "Clang" -# if defined(_MSC_VER) -# define SIMULATE_ID "MSVC" -# endif -# define COMPILER_VERSION_MAJOR DEC(__clang_major__) -# define COMPILER_VERSION_MINOR DEC(__clang_minor__) -# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) -# if defined(_MSC_VER) - /* _MSC_VER = VVRR */ -# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) -# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) -# endif - -#elif defined(__LCC__) && (defined(__GNUC__) || defined(__GNUG__) || defined(__MCST__)) -# define COMPILER_ID "LCC" -# define COMPILER_VERSION_MAJOR DEC(__LCC__ / 100) -# define COMPILER_VERSION_MINOR DEC(__LCC__ % 100) -# if defined(__LCC_MINOR__) -# define COMPILER_VERSION_PATCH DEC(__LCC_MINOR__) -# endif -# if defined(__GNUC__) && defined(__GNUC_MINOR__) -# define SIMULATE_ID "GNU" -# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) -# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) -# if defined(__GNUC_PATCHLEVEL__) -# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) -# endif -# endif - -#elif defined(__GNUC__) -# define COMPILER_ID "GNU" -# define COMPILER_VERSION_MAJOR DEC(__GNUC__) -# if defined(__GNUC_MINOR__) -# define COMPILER_VERSION_MINOR DEC(__GNUC_MINOR__) -# endif -# if defined(__GNUC_PATCHLEVEL__) -# define COMPILER_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) -# endif - -#elif defined(_MSC_VER) -# define COMPILER_ID "MSVC" - /* _MSC_VER = VVRR */ -# define COMPILER_VERSION_MAJOR DEC(_MSC_VER / 100) -# define COMPILER_VERSION_MINOR DEC(_MSC_VER % 100) -# if defined(_MSC_FULL_VER) -# if _MSC_VER >= 1400 - /* _MSC_FULL_VER = VVRRPPPPP */ -# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 100000) -# else - /* _MSC_FULL_VER = VVRRPPPP */ -# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 10000) -# endif -# endif -# if defined(_MSC_BUILD) -# define COMPILER_VERSION_TWEAK DEC(_MSC_BUILD) -# endif - -#elif defined(_ADI_COMPILER) -# define COMPILER_ID "ADSP" -#if defined(__VERSIONNUM__) - /* __VERSIONNUM__ = 0xVVRRPPTT */ -# define COMPILER_VERSION_MAJOR DEC(__VERSIONNUM__ >> 24 & 0xFF) -# define COMPILER_VERSION_MINOR DEC(__VERSIONNUM__ >> 16 & 0xFF) -# define COMPILER_VERSION_PATCH DEC(__VERSIONNUM__ >> 8 & 0xFF) -# define COMPILER_VERSION_TWEAK DEC(__VERSIONNUM__ & 0xFF) -#endif - -#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) -# define COMPILER_ID "IAR" -# if defined(__VER__) && defined(__ICCARM__) -# define COMPILER_VERSION_MAJOR DEC((__VER__) / 1000000) -# define COMPILER_VERSION_MINOR DEC(((__VER__) / 1000) % 1000) -# define COMPILER_VERSION_PATCH DEC((__VER__) % 1000) -# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) -# elif defined(__VER__) && (defined(__ICCAVR__) || defined(__ICCRX__) || defined(__ICCRH850__) || defined(__ICCRL78__) || defined(__ICC430__) || defined(__ICCRISCV__) || defined(__ICCV850__) || defined(__ICC8051__) || defined(__ICCSTM8__)) -# define COMPILER_VERSION_MAJOR DEC((__VER__) / 100) -# define COMPILER_VERSION_MINOR DEC((__VER__) - (((__VER__) / 100)*100)) -# define COMPILER_VERSION_PATCH DEC(__SUBVERSION__) -# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) -# endif - -#elif defined(__DCC__) && defined(_DIAB_TOOL) -# define COMPILER_ID "Diab" - # define COMPILER_VERSION_MAJOR DEC(__VERSION_MAJOR_NUMBER__) - # define COMPILER_VERSION_MINOR DEC(__VERSION_MINOR_NUMBER__) - # define COMPILER_VERSION_PATCH DEC(__VERSION_ARCH_FEATURE_NUMBER__) - # define COMPILER_VERSION_TWEAK DEC(__VERSION_BUG_FIX_NUMBER__) - - -#elif defined(__SDCC_VERSION_MAJOR) || defined(SDCC) -# define COMPILER_ID "SDCC" -# if defined(__SDCC_VERSION_MAJOR) -# define COMPILER_VERSION_MAJOR DEC(__SDCC_VERSION_MAJOR) -# define COMPILER_VERSION_MINOR DEC(__SDCC_VERSION_MINOR) -# define COMPILER_VERSION_PATCH DEC(__SDCC_VERSION_PATCH) -# else - /* SDCC = VRP */ -# define COMPILER_VERSION_MAJOR DEC(SDCC/100) -# define COMPILER_VERSION_MINOR DEC(SDCC/10 % 10) -# define COMPILER_VERSION_PATCH DEC(SDCC % 10) -# endif - - -/* These compilers are either not known or too old to define an - identification macro. Try to identify the platform and guess that - it is the native compiler. */ -#elif defined(__hpux) || defined(__hpua) -# define COMPILER_ID "HP" - -#else /* unknown compiler */ -# define COMPILER_ID "" -#endif - -/* Construct the string literal in pieces to prevent the source from - getting matched. Store it in a pointer rather than an array - because some compilers will just produce instructions to fill the - array rather than assigning a pointer to a static array. */ -char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]"; -#ifdef SIMULATE_ID -char const* info_simulate = "INFO" ":" "simulate[" SIMULATE_ID "]"; -#endif - -#ifdef __QNXNTO__ -char const* qnxnto = "INFO" ":" "qnxnto[]"; -#endif - -#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) -char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]"; -#endif - -#define STRINGIFY_HELPER(X) #X -#define STRINGIFY(X) STRINGIFY_HELPER(X) - -/* Identify known platforms by name. */ -#if defined(__linux) || defined(__linux__) || defined(linux) -# define PLATFORM_ID "Linux" - -#elif defined(__MSYS__) -# define PLATFORM_ID "MSYS" - -#elif defined(__CYGWIN__) -# define PLATFORM_ID "Cygwin" - -#elif defined(__MINGW32__) -# define PLATFORM_ID "MinGW" - -#elif defined(__APPLE__) -# define PLATFORM_ID "Darwin" - -#elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32) -# define PLATFORM_ID "Windows" - -#elif defined(__FreeBSD__) || defined(__FreeBSD) -# define PLATFORM_ID "FreeBSD" - -#elif defined(__NetBSD__) || defined(__NetBSD) -# define PLATFORM_ID "NetBSD" - -#elif defined(__OpenBSD__) || defined(__OPENBSD) -# define PLATFORM_ID "OpenBSD" - -#elif defined(__sun) || defined(sun) -# define PLATFORM_ID "SunOS" - -#elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__) -# define PLATFORM_ID "AIX" - -#elif defined(__hpux) || defined(__hpux__) -# define PLATFORM_ID "HP-UX" - -#elif defined(__HAIKU__) -# define PLATFORM_ID "Haiku" - -#elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS) -# define PLATFORM_ID "BeOS" - -#elif defined(__QNX__) || defined(__QNXNTO__) -# define PLATFORM_ID "QNX" - -#elif defined(__tru64) || defined(_tru64) || defined(__TRU64__) -# define PLATFORM_ID "Tru64" - -#elif defined(__riscos) || defined(__riscos__) -# define PLATFORM_ID "RISCos" - -#elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__) -# define PLATFORM_ID "SINIX" - -#elif defined(__UNIX_SV__) -# define PLATFORM_ID "UNIX_SV" - -#elif defined(__bsdos__) -# define PLATFORM_ID "BSDOS" - -#elif defined(_MPRAS) || defined(MPRAS) -# define PLATFORM_ID "MP-RAS" - -#elif defined(__osf) || defined(__osf__) -# define PLATFORM_ID "OSF1" - -#elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv) -# define PLATFORM_ID "SCO_SV" - -#elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX) -# define PLATFORM_ID "ULTRIX" - -#elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX) -# define PLATFORM_ID "Xenix" - -#elif defined(__WATCOMC__) -# if defined(__LINUX__) -# define PLATFORM_ID "Linux" - -# elif defined(__DOS__) -# define PLATFORM_ID "DOS" - -# elif defined(__OS2__) -# define PLATFORM_ID "OS2" - -# elif defined(__WINDOWS__) -# define PLATFORM_ID "Windows3x" - -# elif defined(__VXWORKS__) -# define PLATFORM_ID "VxWorks" - -# else /* unknown platform */ -# define PLATFORM_ID -# endif - -#elif defined(__INTEGRITY) -# if defined(INT_178B) -# define PLATFORM_ID "Integrity178" - -# else /* regular Integrity */ -# define PLATFORM_ID "Integrity" -# endif - -# elif defined(_ADI_COMPILER) -# define PLATFORM_ID "ADSP" - -#else /* unknown platform */ -# define PLATFORM_ID - -#endif - -/* For windows compilers MSVC and Intel we can determine - the architecture of the compiler being used. This is because - the compilers do not have flags that can change the architecture, - but rather depend on which compiler is being used -*/ -#if defined(_WIN32) && defined(_MSC_VER) -# if defined(_M_IA64) -# define ARCHITECTURE_ID "IA64" - -# elif defined(_M_ARM64EC) -# define ARCHITECTURE_ID "ARM64EC" - -# elif defined(_M_X64) || defined(_M_AMD64) -# define ARCHITECTURE_ID "x64" - -# elif defined(_M_IX86) -# define ARCHITECTURE_ID "X86" - -# elif defined(_M_ARM64) -# define ARCHITECTURE_ID "ARM64" - -# elif defined(_M_ARM) -# if _M_ARM == 4 -# define ARCHITECTURE_ID "ARMV4I" -# elif _M_ARM == 5 -# define ARCHITECTURE_ID "ARMV5I" -# else -# define ARCHITECTURE_ID "ARMV" STRINGIFY(_M_ARM) -# endif - -# elif defined(_M_MIPS) -# define ARCHITECTURE_ID "MIPS" - -# elif defined(_M_SH) -# define ARCHITECTURE_ID "SHx" - -# else /* unknown architecture */ -# define ARCHITECTURE_ID "" -# endif - -#elif defined(__WATCOMC__) -# if defined(_M_I86) -# define ARCHITECTURE_ID "I86" - -# elif defined(_M_IX86) -# define ARCHITECTURE_ID "X86" - -# else /* unknown architecture */ -# define ARCHITECTURE_ID "" -# endif - -#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) -# if defined(__ICCARM__) -# define ARCHITECTURE_ID "ARM" - -# elif defined(__ICCRX__) -# define ARCHITECTURE_ID "RX" - -# elif defined(__ICCRH850__) -# define ARCHITECTURE_ID "RH850" - -# elif defined(__ICCRL78__) -# define ARCHITECTURE_ID "RL78" - -# elif defined(__ICCRISCV__) -# define ARCHITECTURE_ID "RISCV" - -# elif defined(__ICCAVR__) -# define ARCHITECTURE_ID "AVR" - -# elif defined(__ICC430__) -# define ARCHITECTURE_ID "MSP430" - -# elif defined(__ICCV850__) -# define ARCHITECTURE_ID "V850" - -# elif defined(__ICC8051__) -# define ARCHITECTURE_ID "8051" - -# elif defined(__ICCSTM8__) -# define ARCHITECTURE_ID "STM8" - -# else /* unknown architecture */ -# define ARCHITECTURE_ID "" -# endif - -#elif defined(__ghs__) -# if defined(__PPC64__) -# define ARCHITECTURE_ID "PPC64" - -# elif defined(__ppc__) -# define ARCHITECTURE_ID "PPC" - -# elif defined(__ARM__) -# define ARCHITECTURE_ID "ARM" - -# elif defined(__x86_64__) -# define ARCHITECTURE_ID "x64" - -# elif defined(__i386__) -# define ARCHITECTURE_ID "X86" - -# else /* unknown architecture */ -# define ARCHITECTURE_ID "" -# endif - -#elif defined(__clang__) && defined(__ti__) -# if defined(__ARM_ARCH) -# define ARCHITECTURE_ID "ARM" - -# else /* unknown architecture */ -# define ARCHITECTURE_ID "" -# endif - -#elif defined(__TI_COMPILER_VERSION__) -# if defined(__TI_ARM__) -# define ARCHITECTURE_ID "ARM" - -# elif defined(__MSP430__) -# define ARCHITECTURE_ID "MSP430" - -# elif defined(__TMS320C28XX__) -# define ARCHITECTURE_ID "TMS320C28x" - -# elif defined(__TMS320C6X__) || defined(_TMS320C6X) -# define ARCHITECTURE_ID "TMS320C6x" - -# else /* unknown architecture */ -# define ARCHITECTURE_ID "" -# endif - -# elif defined(__ADSPSHARC__) -# define ARCHITECTURE_ID "SHARC" - -# elif defined(__ADSPBLACKFIN__) -# define ARCHITECTURE_ID "Blackfin" - -#elif defined(__TASKING__) - -# if defined(__CTC__) || defined(__CPTC__) -# define ARCHITECTURE_ID "TriCore" - -# elif defined(__CMCS__) -# define ARCHITECTURE_ID "MCS" - -# elif defined(__CARM__) || defined(__CPARM__) -# define ARCHITECTURE_ID "ARM" - -# elif defined(__CARC__) -# define ARCHITECTURE_ID "ARC" - -# elif defined(__C51__) -# define ARCHITECTURE_ID "8051" - -# elif defined(__CPCP__) -# define ARCHITECTURE_ID "PCP" - -# else -# define ARCHITECTURE_ID "" -# endif - -#elif defined(__RENESAS__) -# if defined(__CCRX__) -# define ARCHITECTURE_ID "RX" - -# elif defined(__CCRL__) -# define ARCHITECTURE_ID "RL78" - -# elif defined(__CCRH__) -# define ARCHITECTURE_ID "RH850" - -# else -# define ARCHITECTURE_ID "" -# endif - -#else -# define ARCHITECTURE_ID -#endif - -/* Convert integer to decimal digit literals. */ -#define DEC(n) \ - ('0' + (((n) / 10000000)%10)), \ - ('0' + (((n) / 1000000)%10)), \ - ('0' + (((n) / 100000)%10)), \ - ('0' + (((n) / 10000)%10)), \ - ('0' + (((n) / 1000)%10)), \ - ('0' + (((n) / 100)%10)), \ - ('0' + (((n) / 10)%10)), \ - ('0' + ((n) % 10)) - -/* Convert integer to hex digit literals. */ -#define HEX(n) \ - ('0' + ((n)>>28 & 0xF)), \ - ('0' + ((n)>>24 & 0xF)), \ - ('0' + ((n)>>20 & 0xF)), \ - ('0' + ((n)>>16 & 0xF)), \ - ('0' + ((n)>>12 & 0xF)), \ - ('0' + ((n)>>8 & 0xF)), \ - ('0' + ((n)>>4 & 0xF)), \ - ('0' + ((n) & 0xF)) - -/* Construct a string literal encoding the version number. */ -#ifdef COMPILER_VERSION -char const* info_version = "INFO" ":" "compiler_version[" COMPILER_VERSION "]"; - -/* Construct a string literal encoding the version number components. */ -#elif defined(COMPILER_VERSION_MAJOR) -char const info_version[] = { - 'I', 'N', 'F', 'O', ':', - 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','[', - COMPILER_VERSION_MAJOR, -# ifdef COMPILER_VERSION_MINOR - '.', COMPILER_VERSION_MINOR, -# ifdef COMPILER_VERSION_PATCH - '.', COMPILER_VERSION_PATCH, -# ifdef COMPILER_VERSION_TWEAK - '.', COMPILER_VERSION_TWEAK, -# endif -# endif -# endif - ']','\0'}; -#endif - -/* Construct a string literal encoding the internal version number. */ -#ifdef COMPILER_VERSION_INTERNAL -char const info_version_internal[] = { - 'I', 'N', 'F', 'O', ':', - 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','_', - 'i','n','t','e','r','n','a','l','[', - COMPILER_VERSION_INTERNAL,']','\0'}; -#elif defined(COMPILER_VERSION_INTERNAL_STR) -char const* info_version_internal = "INFO" ":" "compiler_version_internal[" COMPILER_VERSION_INTERNAL_STR "]"; -#endif - -/* Construct a string literal encoding the version number components. */ -#ifdef SIMULATE_VERSION_MAJOR -char const info_simulate_version[] = { - 'I', 'N', 'F', 'O', ':', - 's','i','m','u','l','a','t','e','_','v','e','r','s','i','o','n','[', - SIMULATE_VERSION_MAJOR, -# ifdef SIMULATE_VERSION_MINOR - '.', SIMULATE_VERSION_MINOR, -# ifdef SIMULATE_VERSION_PATCH - '.', SIMULATE_VERSION_PATCH, -# ifdef SIMULATE_VERSION_TWEAK - '.', SIMULATE_VERSION_TWEAK, -# endif -# endif -# endif - ']','\0'}; -#endif - -/* Construct the string literal in pieces to prevent the source from - getting matched. Store it in a pointer rather than an array - because some compilers will just produce instructions to fill the - array rather than assigning a pointer to a static array. */ -char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]"; -char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]"; - - - -#define C_STD_99 199901L -#define C_STD_11 201112L -#define C_STD_17 201710L -#define C_STD_23 202311L - -#ifdef __STDC_VERSION__ -# define C_STD __STDC_VERSION__ -#endif - -#if !defined(__STDC__) && !defined(__clang__) && !defined(__RENESAS__) -# if defined(_MSC_VER) || defined(__ibmxl__) || defined(__IBMC__) -# define C_VERSION "90" -# else -# define C_VERSION -# endif -#elif C_STD > C_STD_17 -# define C_VERSION "23" -#elif C_STD > C_STD_11 -# define C_VERSION "17" -#elif C_STD > C_STD_99 -# define C_VERSION "11" -#elif C_STD >= C_STD_99 -# define C_VERSION "99" -#else -# define C_VERSION "90" -#endif -const char* info_language_standard_default = - "INFO" ":" "standard_default[" C_VERSION "]"; - -const char* info_language_extensions_default = "INFO" ":" "extensions_default[" -#if (defined(__clang__) || defined(__GNUC__) || defined(__xlC__) || \ - defined(__TI_COMPILER_VERSION__) || defined(__RENESAS__)) && \ - !defined(__STRICT_ANSI__) - "ON" -#else - "OFF" -#endif -"]"; - -/*--------------------------------------------------------------------------*/ - -#ifdef ID_VOID_MAIN -void main() {} -#else -# if defined(__CLASSIC_C__) -int main(argc, argv) int argc; char *argv[]; -# else -int main(int argc, char* argv[]) -# endif -{ - int require = 0; - require += info_compiler[argc]; - require += info_platform[argc]; - require += info_arch[argc]; -#ifdef COMPILER_VERSION_MAJOR - require += info_version[argc]; -#endif -#if defined(COMPILER_VERSION_INTERNAL) || defined(COMPILER_VERSION_INTERNAL_STR) - require += info_version_internal[argc]; -#endif -#ifdef SIMULATE_ID - require += info_simulate[argc]; -#endif -#ifdef SIMULATE_VERSION_MAJOR - require += info_simulate_version[argc]; -#endif -#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) - require += info_cray[argc]; -#endif - require += info_language_standard_default[argc]; - require += info_language_extensions_default[argc]; - (void)argv; - return require; -} -#endif diff --git a/build/CMakeFiles/4.1.1/CompilerIdC/a.out b/build/CMakeFiles/4.1.1/CompilerIdC/a.out deleted file mode 100755 index 5a39adc459e79751465ead22f4daf7d31ffca7be..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 15536 zcmeHOeQX>@6`#9&Ic;KJ+&XoWLY7iRsf0KFh$B--d-nO9wPZUXaik)Xt~S24ed2s) z-K~RDRMk>S8)E_i3MxWEk)RT)ghZuMAt6-`sS1_&a6m|?NGL^A3J|DK0i_W6cyH(Z z&g+RC5PtxF>{#C4yx+X{X7A8j*a4$%#5A>WNrzjdOuGwWXW|2*59B_$F!KM0-^bFeXoYMoOrb7Q$KMKaY-f%Sa+;N> zq{HpXIFE|mk1X9_B90Rv#`zJllS4v0-X3sx9FzXmo4+NQ2cU@IezsB(re&t5@Q_mmZ&_Ne+2G5;c*Uf!_^2MUWY^NcoRn;jzAoNI0A75;t0eM zh$Hadj=(z&@BO=T_IjN&zvUx{q54x z;cVMN+w0ExLvN5mwds>&^_MZbVb4>cKJjm|pYxmEVEEvTpov^RCa$+uuQu$NWyQ;a zr2k^5-}wT=gUim`l5^=#k2sfZY;Y2$9c$RryJFAdn>{p1&1$;i zgmd=L9b9$h-U_xm^N045P;I(FzooB@R;$(5HuVybIC*(xyfluq8e5Us-|xmr_XPQv zd*Zq?H+}U7*_%9MXTIszH7;=k;t0eMh$9e3AdWyBfj9zj1mXz95r`uY zM__dX_&wL{O8-#bk%vZ0lT-PEUml@1k|$SduWENs`{hc$R2*pyOIxR{E3NIQw4GF; z#ZwrymF3S?2UQTgR}* z-5WmCOvB?n8h*Q4JwQ0PRILsW@;g;7iN}wr#7ru&d)t<}3-qFkd46ZyO!|9Sp?6F8 zhK@P5f0y{@neVPoJ)O*K-<-TimQ3jP->l5<%lKU_7k=jzeeV^L@g|Ny9Dz6jaRlNB z#1V)i5Jw=6KpcTM0{@2*K;9zq6p;&fzl?Po#w>Y^+eKcGe8+o5Mn2?jk&)-POJw9l zB3~Ene_gJYSY=U?3Xv-~D?h3@KatClwBMmcbx!b3LH-@crAb3=yG3e_I7Yu+vZIvb z85Y?8qpHV4WT?67i|60x33Zn;$N!$t zLA^pAIQ+GS`c3MZ%$2#!+SipZ#bHsp6Il?J2nNrIHxsk#jQY2q7`+Z4_N zt*z8&MBnuD72+)@Mev(c-;vy@Fdu084)co6HcK;j#_(#$?^I@f@Xv%d^L^hTKBewa z=`>X$DE|rK8<)ML z3}h+K+)QduBX|8@<*WNSFYpv+zvsyd3p#oImP~dxS1Gv@^pK3R-20D^RxV$3rz?I= z<%?q_7f;x@SKl2J5{Mj$C8szY4vV)sMmE3hvtL2+vM1< zPVBFRgwy$5+TTEXmS>1s;75W=*_AVsfp>~9C~KTRtyl_td%QSpPnAnkemOX!>>71y zI#1t7O8U!-dAwa(WaWTiQS*7^?#d89C ztb>492cds+|L4e-_lf<71=m|atoP7t&j07AA!=`l9q?;Lz~CPKzGT=h$bANg^(ges z{=X{r*nee-rr_%$0)&RBzD_kBBJ8pL0OI(Af!Y6yhW#~5YXXO1D2Vuj{vK7L=dbzw zodrcfvwz;ddis~cUSXY%@7&D(AOn9vwha+`tmB*c!axOjT3V68zex>z?4W+rqf zMVWsbU$Db*@O!dl71-murG@=OQrV}WwuL?LZEA_yW1V~WsM0qlUh9*Wwlv}m?! z>=F?GJIKpaVGiTRdZTF%@6 diff --git a/build/CMakeFiles/CMakeConfigureLog.yaml b/build/CMakeFiles/CMakeConfigureLog.yaml deleted file mode 100644 index 5ef769c..0000000 --- a/build/CMakeFiles/CMakeConfigureLog.yaml +++ /dev/null @@ -1,937 +0,0 @@ - ---- -events: - - - kind: "find-v1" - backtrace: - - "/usr/share/cmake/Modules/CMakeDetermineSystem.cmake:12 (find_program)" - - "CMakeLists.txt:3 (project)" - mode: "program" - variable: "CMAKE_UNAME" - description: "Path to a program." - settings: - SearchFramework: "NEVER" - SearchAppBundle: "NEVER" - CMAKE_FIND_USE_CMAKE_PATH: true - CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: true - CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true - CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true - CMAKE_FIND_USE_INSTALL_PREFIX: true - names: - - "uname" - candidate_directories: - - "/usr/local/sbin/" - - "/usr/local/bin/" - - "/usr/bin/" - - "/usr/bin/site_perl/" - - "/usr/bin/vendor_perl/" - - "/usr/bin/core_perl/" - - "/bin/" - searched_directories: - - "/usr/local/sbin/uname" - - "/usr/local/bin/uname" - found: "/usr/bin/uname" - search_context: - ENV{PATH}: - - "/usr/local/sbin" - - "/usr/local/bin" - - "/usr/bin" - - "/usr/bin/site_perl" - - "/usr/bin/vendor_perl" - - "/usr/bin/core_perl" - - - kind: "message-v1" - backtrace: - - "/usr/share/cmake/Modules/CMakeDetermineSystem.cmake:212 (message)" - - "CMakeLists.txt:3 (project)" - message: | - The system is: Linux - 6.16.7-arch1-1 - x86_64 - - - kind: "find-v1" - backtrace: - - "/usr/share/cmake/Modules/CMakeUnixFindMake.cmake:5 (find_program)" - - "CMakeLists.txt:3 (project)" - mode: "program" - variable: "CMAKE_MAKE_PROGRAM" - description: "Path to a program." - settings: - SearchFramework: "NEVER" - SearchAppBundle: "NEVER" - CMAKE_FIND_USE_CMAKE_PATH: true - CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: true - CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true - CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true - CMAKE_FIND_USE_INSTALL_PREFIX: true - names: - - "gmake" - - "make" - - "smake" - candidate_directories: - - "/usr/local/sbin/" - - "/usr/local/bin/" - - "/usr/bin/" - - "/usr/bin/site_perl/" - - "/usr/bin/vendor_perl/" - - "/usr/bin/core_perl/" - searched_directories: - - "/usr/local/sbin/gmake" - - "/usr/local/bin/gmake" - - "/usr/bin/gmake" - - "/usr/bin/site_perl/gmake" - - "/usr/bin/vendor_perl/gmake" - - "/usr/bin/core_perl/gmake" - - "/usr/local/sbin/make" - - "/usr/local/bin/make" - found: "/usr/bin/make" - search_context: - ENV{PATH}: - - "/usr/local/sbin" - - "/usr/local/bin" - - "/usr/bin" - - "/usr/bin/site_perl" - - "/usr/bin/vendor_perl" - - "/usr/bin/core_perl" - - - kind: "find-v1" - backtrace: - - "/usr/share/cmake/Modules/CMakeDetermineCompiler.cmake:73 (find_program)" - - "/usr/share/cmake/Modules/CMakeDetermineCCompiler.cmake:64 (_cmake_find_compiler)" - - "CMakeLists.txt:3 (project)" - mode: "program" - variable: "CMAKE_C_COMPILER" - description: "C compiler" - settings: - SearchFramework: "NEVER" - SearchAppBundle: "NEVER" - CMAKE_FIND_USE_CMAKE_PATH: true - CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: true - CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true - CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true - CMAKE_FIND_USE_INSTALL_PREFIX: true - names: - - "cc" - - "gcc" - - "cl" - - "bcc" - - "xlc" - - "icx" - - "clang" - candidate_directories: - - "/usr/local/sbin/" - - "/usr/local/bin/" - - "/usr/bin/" - - "/usr/bin/site_perl/" - - "/usr/bin/vendor_perl/" - - "/usr/bin/core_perl/" - searched_directories: - - "/usr/local/sbin/cc" - - "/usr/local/bin/cc" - found: "/usr/bin/cc" - search_context: - ENV{PATH}: - - "/usr/local/sbin" - - "/usr/local/bin" - - "/usr/bin" - - "/usr/bin/site_perl" - - "/usr/bin/vendor_perl" - - "/usr/bin/core_perl" - - - kind: "find-v1" - backtrace: - - "/usr/share/cmake/Modules/CMakeDetermineCompilerId.cmake:462 (find_file)" - - "/usr/share/cmake/Modules/CMakeDetermineCompilerId.cmake:500 (CMAKE_DETERMINE_COMPILER_ID_WRITE)" - - "/usr/share/cmake/Modules/CMakeDetermineCompilerId.cmake:8 (CMAKE_DETERMINE_COMPILER_ID_BUILD)" - - "/usr/share/cmake/Modules/CMakeDetermineCompilerId.cmake:64 (__determine_compiler_id_test)" - - "/usr/share/cmake/Modules/CMakeDetermineCCompiler.cmake:122 (CMAKE_DETERMINE_COMPILER_ID)" - - "CMakeLists.txt:3 (project)" - mode: "file" - variable: "src_in" - description: "Path to a file." - settings: - SearchFramework: "NEVER" - SearchAppBundle: "NEVER" - CMAKE_FIND_USE_CMAKE_PATH: true - CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: true - CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true - CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true - CMAKE_FIND_USE_INSTALL_PREFIX: true - names: - - "CMakeCCompilerId.c.in" - candidate_directories: - - "/usr/share/cmake/Modules/" - found: "/usr/share/cmake/Modules/CMakeCCompilerId.c.in" - search_context: - ENV{PATH}: - - "/usr/local/sbin" - - "/usr/local/bin" - - "/usr/bin" - - "/usr/bin/site_perl" - - "/usr/bin/vendor_perl" - - "/usr/bin/core_perl" - - - kind: "message-v1" - backtrace: - - "/usr/share/cmake/Modules/CMakeDetermineCompilerId.cmake:17 (message)" - - "/usr/share/cmake/Modules/CMakeDetermineCompilerId.cmake:64 (__determine_compiler_id_test)" - - "/usr/share/cmake/Modules/CMakeDetermineCCompiler.cmake:122 (CMAKE_DETERMINE_COMPILER_ID)" - - "CMakeLists.txt:3 (project)" - message: | - Compiling the C compiler identification source file "CMakeCCompilerId.c" succeeded. - Compiler: /usr/bin/cc - Build flags: - Id flags: - - The output was: - 0 - - - Compilation of the C compiler identification source "CMakeCCompilerId.c" produced "a.out" - - The C compiler identification is GNU, found in: - /home/andrew/src2/build/CMakeFiles/4.1.1/CompilerIdC/a.out - - - - kind: "find-v1" - backtrace: - - "/usr/share/cmake/Modules/CMakeFindBinUtils.cmake:238 (find_program)" - - "/usr/share/cmake/Modules/CMakeDetermineCCompiler.cmake:200 (include)" - - "CMakeLists.txt:3 (project)" - mode: "program" - variable: "CMAKE_AR" - description: "Path to a program." - settings: - SearchFramework: "NEVER" - SearchAppBundle: "NEVER" - CMAKE_FIND_USE_CMAKE_PATH: false - CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: false - CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true - CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true - CMAKE_FIND_USE_INSTALL_PREFIX: true - names: - - "ar" - candidate_directories: - - "/usr/bin/" - - "/usr/local/sbin/" - - "/usr/local/bin/" - - "/usr/bin/site_perl/" - - "/usr/bin/vendor_perl/" - - "/usr/bin/core_perl/" - found: "/usr/bin/ar" - search_context: - ENV{PATH}: - - "/usr/local/sbin" - - "/usr/local/bin" - - "/usr/bin" - - "/usr/bin/site_perl" - - "/usr/bin/vendor_perl" - - "/usr/bin/core_perl" - - - kind: "find-v1" - backtrace: - - "/usr/share/cmake/Modules/CMakeFindBinUtils.cmake:238 (find_program)" - - "/usr/share/cmake/Modules/CMakeDetermineCCompiler.cmake:200 (include)" - - "CMakeLists.txt:3 (project)" - mode: "program" - variable: "CMAKE_RANLIB" - description: "Path to a program." - settings: - SearchFramework: "NEVER" - SearchAppBundle: "NEVER" - CMAKE_FIND_USE_CMAKE_PATH: false - CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: false - CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true - CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true - CMAKE_FIND_USE_INSTALL_PREFIX: true - names: - - "ranlib" - candidate_directories: - - "/usr/bin/" - - "/usr/local/sbin/" - - "/usr/local/bin/" - - "/usr/bin/site_perl/" - - "/usr/bin/vendor_perl/" - - "/usr/bin/core_perl/" - found: "/usr/bin/ranlib" - search_context: - ENV{PATH}: - - "/usr/local/sbin" - - "/usr/local/bin" - - "/usr/bin" - - "/usr/bin/site_perl" - - "/usr/bin/vendor_perl" - - "/usr/bin/core_perl" - - - kind: "find-v1" - backtrace: - - "/usr/share/cmake/Modules/CMakeFindBinUtils.cmake:238 (find_program)" - - "/usr/share/cmake/Modules/CMakeDetermineCCompiler.cmake:200 (include)" - - "CMakeLists.txt:3 (project)" - mode: "program" - variable: "CMAKE_STRIP" - description: "Path to a program." - settings: - SearchFramework: "NEVER" - SearchAppBundle: "NEVER" - CMAKE_FIND_USE_CMAKE_PATH: false - CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: false - CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true - CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true - CMAKE_FIND_USE_INSTALL_PREFIX: true - names: - - "strip" - candidate_directories: - - "/usr/bin/" - - "/usr/local/sbin/" - - "/usr/local/bin/" - - "/usr/bin/site_perl/" - - "/usr/bin/vendor_perl/" - - "/usr/bin/core_perl/" - found: "/usr/bin/strip" - search_context: - ENV{PATH}: - - "/usr/local/sbin" - - "/usr/local/bin" - - "/usr/bin" - - "/usr/bin/site_perl" - - "/usr/bin/vendor_perl" - - "/usr/bin/core_perl" - - - kind: "find-v1" - backtrace: - - "/usr/share/cmake/Modules/CMakeFindBinUtils.cmake:238 (find_program)" - - "/usr/share/cmake/Modules/CMakeDetermineCCompiler.cmake:200 (include)" - - "CMakeLists.txt:3 (project)" - mode: "program" - variable: "CMAKE_LINKER" - description: "Path to a program." - settings: - SearchFramework: "NEVER" - SearchAppBundle: "NEVER" - CMAKE_FIND_USE_CMAKE_PATH: false - CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: false - CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true - CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true - CMAKE_FIND_USE_INSTALL_PREFIX: true - names: - - "ld" - candidate_directories: - - "/usr/bin/" - - "/usr/local/sbin/" - - "/usr/local/bin/" - - "/usr/bin/site_perl/" - - "/usr/bin/vendor_perl/" - - "/usr/bin/core_perl/" - found: "/usr/bin/ld" - search_context: - ENV{PATH}: - - "/usr/local/sbin" - - "/usr/local/bin" - - "/usr/bin" - - "/usr/bin/site_perl" - - "/usr/bin/vendor_perl" - - "/usr/bin/core_perl" - - - kind: "find-v1" - backtrace: - - "/usr/share/cmake/Modules/CMakeFindBinUtils.cmake:238 (find_program)" - - "/usr/share/cmake/Modules/CMakeDetermineCCompiler.cmake:200 (include)" - - "CMakeLists.txt:3 (project)" - mode: "program" - variable: "CMAKE_NM" - description: "Path to a program." - settings: - SearchFramework: "NEVER" - SearchAppBundle: "NEVER" - CMAKE_FIND_USE_CMAKE_PATH: false - CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: false - CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true - CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true - CMAKE_FIND_USE_INSTALL_PREFIX: true - names: - - "nm" - candidate_directories: - - "/usr/bin/" - - "/usr/local/sbin/" - - "/usr/local/bin/" - - "/usr/bin/site_perl/" - - "/usr/bin/vendor_perl/" - - "/usr/bin/core_perl/" - found: "/usr/bin/nm" - search_context: - ENV{PATH}: - - "/usr/local/sbin" - - "/usr/local/bin" - - "/usr/bin" - - "/usr/bin/site_perl" - - "/usr/bin/vendor_perl" - - "/usr/bin/core_perl" - - - kind: "find-v1" - backtrace: - - "/usr/share/cmake/Modules/CMakeFindBinUtils.cmake:238 (find_program)" - - "/usr/share/cmake/Modules/CMakeDetermineCCompiler.cmake:200 (include)" - - "CMakeLists.txt:3 (project)" - mode: "program" - variable: "CMAKE_OBJDUMP" - description: "Path to a program." - settings: - SearchFramework: "NEVER" - SearchAppBundle: "NEVER" - CMAKE_FIND_USE_CMAKE_PATH: false - CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: false - CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true - CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true - CMAKE_FIND_USE_INSTALL_PREFIX: true - names: - - "objdump" - candidate_directories: - - "/usr/bin/" - - "/usr/local/sbin/" - - "/usr/local/bin/" - - "/usr/bin/site_perl/" - - "/usr/bin/vendor_perl/" - - "/usr/bin/core_perl/" - found: "/usr/bin/objdump" - search_context: - ENV{PATH}: - - "/usr/local/sbin" - - "/usr/local/bin" - - "/usr/bin" - - "/usr/bin/site_perl" - - "/usr/bin/vendor_perl" - - "/usr/bin/core_perl" - - - kind: "find-v1" - backtrace: - - "/usr/share/cmake/Modules/CMakeFindBinUtils.cmake:238 (find_program)" - - "/usr/share/cmake/Modules/CMakeDetermineCCompiler.cmake:200 (include)" - - "CMakeLists.txt:3 (project)" - mode: "program" - variable: "CMAKE_OBJCOPY" - description: "Path to a program." - settings: - SearchFramework: "NEVER" - SearchAppBundle: "NEVER" - CMAKE_FIND_USE_CMAKE_PATH: false - CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: false - CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true - CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true - CMAKE_FIND_USE_INSTALL_PREFIX: true - names: - - "objcopy" - candidate_directories: - - "/usr/bin/" - - "/usr/local/sbin/" - - "/usr/local/bin/" - - "/usr/bin/site_perl/" - - "/usr/bin/vendor_perl/" - - "/usr/bin/core_perl/" - found: "/usr/bin/objcopy" - search_context: - ENV{PATH}: - - "/usr/local/sbin" - - "/usr/local/bin" - - "/usr/bin" - - "/usr/bin/site_perl" - - "/usr/bin/vendor_perl" - - "/usr/bin/core_perl" - - - kind: "find-v1" - backtrace: - - "/usr/share/cmake/Modules/CMakeFindBinUtils.cmake:238 (find_program)" - - "/usr/share/cmake/Modules/CMakeDetermineCCompiler.cmake:200 (include)" - - "CMakeLists.txt:3 (project)" - mode: "program" - variable: "CMAKE_READELF" - description: "Path to a program." - settings: - SearchFramework: "NEVER" - SearchAppBundle: "NEVER" - CMAKE_FIND_USE_CMAKE_PATH: false - CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: false - CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true - CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true - CMAKE_FIND_USE_INSTALL_PREFIX: true - names: - - "readelf" - candidate_directories: - - "/usr/bin/" - - "/usr/local/sbin/" - - "/usr/local/bin/" - - "/usr/bin/site_perl/" - - "/usr/bin/vendor_perl/" - - "/usr/bin/core_perl/" - found: "/usr/bin/readelf" - search_context: - ENV{PATH}: - - "/usr/local/sbin" - - "/usr/local/bin" - - "/usr/bin" - - "/usr/bin/site_perl" - - "/usr/bin/vendor_perl" - - "/usr/bin/core_perl" - - - kind: "find-v1" - backtrace: - - "/usr/share/cmake/Modules/CMakeFindBinUtils.cmake:238 (find_program)" - - "/usr/share/cmake/Modules/CMakeDetermineCCompiler.cmake:200 (include)" - - "CMakeLists.txt:3 (project)" - mode: "program" - variable: "CMAKE_DLLTOOL" - description: "Path to a program." - settings: - SearchFramework: "NEVER" - SearchAppBundle: "NEVER" - CMAKE_FIND_USE_CMAKE_PATH: false - CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: false - CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true - CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true - CMAKE_FIND_USE_INSTALL_PREFIX: true - names: - - "dlltool" - candidate_directories: - - "/usr/bin/" - - "/usr/local/sbin/" - - "/usr/local/bin/" - - "/usr/bin/site_perl/" - - "/usr/bin/vendor_perl/" - - "/usr/bin/core_perl/" - searched_directories: - - "/usr/bin/dlltool" - - "/usr/local/sbin/dlltool" - - "/usr/local/bin/dlltool" - - "/usr/bin/site_perl/dlltool" - - "/usr/bin/vendor_perl/dlltool" - - "/usr/bin/core_perl/dlltool" - found: false - search_context: - ENV{PATH}: - - "/usr/local/sbin" - - "/usr/local/bin" - - "/usr/bin" - - "/usr/bin/site_perl" - - "/usr/bin/vendor_perl" - - "/usr/bin/core_perl" - - - kind: "find-v1" - backtrace: - - "/usr/share/cmake/Modules/CMakeFindBinUtils.cmake:238 (find_program)" - - "/usr/share/cmake/Modules/CMakeDetermineCCompiler.cmake:200 (include)" - - "CMakeLists.txt:3 (project)" - mode: "program" - variable: "CMAKE_ADDR2LINE" - description: "Path to a program." - settings: - SearchFramework: "NEVER" - SearchAppBundle: "NEVER" - CMAKE_FIND_USE_CMAKE_PATH: false - CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: false - CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true - CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true - CMAKE_FIND_USE_INSTALL_PREFIX: true - names: - - "addr2line" - candidate_directories: - - "/usr/bin/" - - "/usr/local/sbin/" - - "/usr/local/bin/" - - "/usr/bin/site_perl/" - - "/usr/bin/vendor_perl/" - - "/usr/bin/core_perl/" - found: "/usr/bin/addr2line" - search_context: - ENV{PATH}: - - "/usr/local/sbin" - - "/usr/local/bin" - - "/usr/bin" - - "/usr/bin/site_perl" - - "/usr/bin/vendor_perl" - - "/usr/bin/core_perl" - - - kind: "find-v1" - backtrace: - - "/usr/share/cmake/Modules/CMakeFindBinUtils.cmake:238 (find_program)" - - "/usr/share/cmake/Modules/CMakeDetermineCCompiler.cmake:200 (include)" - - "CMakeLists.txt:3 (project)" - mode: "program" - variable: "CMAKE_TAPI" - description: "Path to a program." - settings: - SearchFramework: "NEVER" - SearchAppBundle: "NEVER" - CMAKE_FIND_USE_CMAKE_PATH: false - CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: false - CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true - CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true - CMAKE_FIND_USE_INSTALL_PREFIX: true - names: - - "tapi" - candidate_directories: - - "/usr/bin/" - - "/usr/local/sbin/" - - "/usr/local/bin/" - - "/usr/bin/site_perl/" - - "/usr/bin/vendor_perl/" - - "/usr/bin/core_perl/" - searched_directories: - - "/usr/bin/tapi" - - "/usr/local/sbin/tapi" - - "/usr/local/bin/tapi" - - "/usr/bin/site_perl/tapi" - - "/usr/bin/vendor_perl/tapi" - - "/usr/bin/core_perl/tapi" - found: false - search_context: - ENV{PATH}: - - "/usr/local/sbin" - - "/usr/local/bin" - - "/usr/bin" - - "/usr/bin/site_perl" - - "/usr/bin/vendor_perl" - - "/usr/bin/core_perl" - - - kind: "find-v1" - backtrace: - - "/usr/share/cmake/Modules/Compiler/GNU-FindBinUtils.cmake:18 (find_program)" - - "/usr/share/cmake/Modules/CMakeDetermineCCompiler.cmake:201 (include)" - - "CMakeLists.txt:3 (project)" - mode: "program" - variable: "CMAKE_C_COMPILER_AR" - description: "A wrapper around 'ar' adding the appropriate '--plugin' option for the GCC compiler" - settings: - SearchFramework: "NEVER" - SearchAppBundle: "NEVER" - CMAKE_FIND_USE_CMAKE_PATH: false - CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: false - CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true - CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true - CMAKE_FIND_USE_INSTALL_PREFIX: true - names: - - "gcc-ar-15.2" - - "gcc-ar-15" - - "gcc-ar15" - - "gcc-ar" - candidate_directories: - - "/usr/bin/" - - "/usr/local/sbin/" - - "/usr/local/bin/" - - "/usr/bin/site_perl/" - - "/usr/bin/vendor_perl/" - - "/usr/bin/core_perl/" - searched_directories: - - "/usr/bin/gcc-ar-15.2" - - "/usr/local/sbin/gcc-ar-15.2" - - "/usr/local/bin/gcc-ar-15.2" - - "/usr/bin/site_perl/gcc-ar-15.2" - - "/usr/bin/vendor_perl/gcc-ar-15.2" - - "/usr/bin/core_perl/gcc-ar-15.2" - - "/usr/bin/gcc-ar-15" - - "/usr/local/sbin/gcc-ar-15" - - "/usr/local/bin/gcc-ar-15" - - "/usr/bin/site_perl/gcc-ar-15" - - "/usr/bin/vendor_perl/gcc-ar-15" - - "/usr/bin/core_perl/gcc-ar-15" - - "/usr/bin/gcc-ar15" - - "/usr/local/sbin/gcc-ar15" - - "/usr/local/bin/gcc-ar15" - - "/usr/bin/site_perl/gcc-ar15" - - "/usr/bin/vendor_perl/gcc-ar15" - - "/usr/bin/core_perl/gcc-ar15" - found: "/usr/bin/gcc-ar" - search_context: - ENV{PATH}: - - "/usr/local/sbin" - - "/usr/local/bin" - - "/usr/bin" - - "/usr/bin/site_perl" - - "/usr/bin/vendor_perl" - - "/usr/bin/core_perl" - - - kind: "find-v1" - backtrace: - - "/usr/share/cmake/Modules/Compiler/GNU-FindBinUtils.cmake:30 (find_program)" - - "/usr/share/cmake/Modules/CMakeDetermineCCompiler.cmake:201 (include)" - - "CMakeLists.txt:3 (project)" - mode: "program" - variable: "CMAKE_C_COMPILER_RANLIB" - description: "A wrapper around 'ranlib' adding the appropriate '--plugin' option for the GCC compiler" - settings: - SearchFramework: "NEVER" - SearchAppBundle: "NEVER" - CMAKE_FIND_USE_CMAKE_PATH: false - CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: false - CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true - CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true - CMAKE_FIND_USE_INSTALL_PREFIX: true - names: - - "gcc-ranlib-15.2" - - "gcc-ranlib-15" - - "gcc-ranlib15" - - "gcc-ranlib" - candidate_directories: - - "/usr/bin/" - - "/usr/local/sbin/" - - "/usr/local/bin/" - - "/usr/bin/site_perl/" - - "/usr/bin/vendor_perl/" - - "/usr/bin/core_perl/" - searched_directories: - - "/usr/bin/gcc-ranlib-15.2" - - "/usr/local/sbin/gcc-ranlib-15.2" - - "/usr/local/bin/gcc-ranlib-15.2" - - "/usr/bin/site_perl/gcc-ranlib-15.2" - - "/usr/bin/vendor_perl/gcc-ranlib-15.2" - - "/usr/bin/core_perl/gcc-ranlib-15.2" - - "/usr/bin/gcc-ranlib-15" - - "/usr/local/sbin/gcc-ranlib-15" - - "/usr/local/bin/gcc-ranlib-15" - - "/usr/bin/site_perl/gcc-ranlib-15" - - "/usr/bin/vendor_perl/gcc-ranlib-15" - - "/usr/bin/core_perl/gcc-ranlib-15" - - "/usr/bin/gcc-ranlib15" - - "/usr/local/sbin/gcc-ranlib15" - - "/usr/local/bin/gcc-ranlib15" - - "/usr/bin/site_perl/gcc-ranlib15" - - "/usr/bin/vendor_perl/gcc-ranlib15" - - "/usr/bin/core_perl/gcc-ranlib15" - found: "/usr/bin/gcc-ranlib" - search_context: - ENV{PATH}: - - "/usr/local/sbin" - - "/usr/local/bin" - - "/usr/bin" - - "/usr/bin/site_perl" - - "/usr/bin/vendor_perl" - - "/usr/bin/core_perl" - - - kind: "try_compile-v1" - backtrace: - - "/usr/share/cmake/Modules/CMakeDetermineCompilerABI.cmake:83 (try_compile)" - - "/usr/share/cmake/Modules/CMakeTestCCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" - - "CMakeLists.txt:3 (project)" - checks: - - "Detecting C compiler ABI info" - directories: - source: "/home/andrew/src2/build/CMakeFiles/CMakeScratch/TryCompile-Z312ka" - binary: "/home/andrew/src2/build/CMakeFiles/CMakeScratch/TryCompile-Z312ka" - cmakeVariables: - CMAKE_C_FLAGS: "" - CMAKE_C_FLAGS_DEBUG: "-g" - CMAKE_EXE_LINKER_FLAGS: "" - buildResult: - variable: "CMAKE_C_ABI_COMPILED" - cached: true - stdout: | - Change Dir: '/home/andrew/src2/build/CMakeFiles/CMakeScratch/TryCompile-Z312ka' - - Run Build Command(s): /usr/bin/cmake -E env VERBOSE=1 /usr/bin/make -f Makefile cmTC_01592/fast - /usr/bin/make -f CMakeFiles/cmTC_01592.dir/build.make CMakeFiles/cmTC_01592.dir/build - make[1]: Entering directory '/home/andrew/src2/build/CMakeFiles/CMakeScratch/TryCompile-Z312ka' - Building C object CMakeFiles/cmTC_01592.dir/CMakeCCompilerABI.c.o - /usr/bin/cc -v -o CMakeFiles/cmTC_01592.dir/CMakeCCompilerABI.c.o -c /usr/share/cmake/Modules/CMakeCCompilerABI.c - Using built-in specs. - COLLECT_GCC=/usr/bin/cc - Target: x86_64-pc-linux-gnu - Configured with: /build/gcc/src/gcc/configure --enable-languages=ada,c,c++,d,fortran,go,lto,m2,objc,obj-c++,rust,cobol --enable-bootstrap --prefix=/usr --libdir=/usr/lib --libexecdir=/usr/lib --mandir=/usr/share/man --infodir=/usr/share/info --with-bugurl=https://gitlab.archlinux.org/archlinux/packaging/packages/gcc/-/issues --with-build-config=bootstrap-lto --with-linker-hash-style=gnu --with-system-zlib --enable-__cxa_atexit --enable-cet=auto --enable-checking=release --enable-clocale=gnu --enable-default-pie --enable-default-ssp --enable-gnu-indirect-function --enable-gnu-unique-object --enable-libstdcxx-backtrace --enable-link-serialization=1 --enable-linker-build-id --enable-lto --enable-multilib --enable-plugin --enable-shared --enable-threads=posix --disable-libssp --disable-libstdcxx-pch --disable-werror - Thread model: posix - Supported LTO compression algorithms: zlib zstd - gcc version 15.2.1 20250813 (GCC) - COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_01592.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_01592.dir/' - /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/cc1 -quiet -v /usr/share/cmake/Modules/CMakeCCompilerABI.c -quiet -dumpdir CMakeFiles/cmTC_01592.dir/ -dumpbase CMakeCCompilerABI.c.c -dumpbase-ext .c -mtune=generic -march=x86-64 -version -o /tmp/cc0jq2Si.s - GNU C23 (GCC) version 15.2.1 20250813 (x86_64-pc-linux-gnu) - compiled by GNU C version 15.2.1 20250813, GMP version 6.3.0, MPFR version 4.2.2, MPC version 1.3.1, isl version isl-0.27-GMP - - GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 - ignoring nonexistent directory "/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../x86_64-pc-linux-gnu/include" - #include "..." search starts here: - #include <...> search starts here: - /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include - /usr/local/include - /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include-fixed - /usr/include - End of search list. - Compiler executable checksum: 09af9d42b9185573b6c370dd7aa39e64 - COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_01592.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_01592.dir/' - as -v --64 -o CMakeFiles/cmTC_01592.dir/CMakeCCompilerABI.c.o /tmp/cc0jq2Si.s - GNU assembler version 2.45.0 (x86_64-pc-linux-gnu) using BFD version (GNU Binutils) 2.45.0 - COMPILER_PATH=/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/:/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/:/usr/lib/gcc/x86_64-pc-linux-gnu/:/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/:/usr/lib/gcc/x86_64-pc-linux-gnu/ - LIBRARY_PATH=/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/:/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/:/lib/../lib/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../:/lib/:/usr/lib/ - COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_01592.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_01592.dir/CMakeCCompilerABI.c.' - Linking C executable cmTC_01592 - /usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_01592.dir/link.txt --verbose=1 - Using built-in specs. - COLLECT_GCC=/usr/bin/cc - COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/lto-wrapper - Target: x86_64-pc-linux-gnu - Configured with: /build/gcc/src/gcc/configure --enable-languages=ada,c,c++,d,fortran,go,lto,m2,objc,obj-c++,rust,cobol --enable-bootstrap --prefix=/usr --libdir=/usr/lib --libexecdir=/usr/lib --mandir=/usr/share/man --infodir=/usr/share/info --with-bugurl=https://gitlab.archlinux.org/archlinux/packaging/packages/gcc/-/issues --with-build-config=bootstrap-lto --with-linker-hash-style=gnu --with-system-zlib --enable-__cxa_atexit --enable-cet=auto --enable-checking=release --enable-clocale=gnu --enable-default-pie --enable-default-ssp --enable-gnu-indirect-function --enable-gnu-unique-object --enable-libstdcxx-backtrace --enable-link-serialization=1 --enable-linker-build-id --enable-lto --enable-multilib --enable-plugin --enable-shared --enable-threads=posix --disable-libssp --disable-libstdcxx-pch --disable-werror - Thread model: posix - Supported LTO compression algorithms: zlib zstd - gcc version 15.2.1 20250813 (GCC) - COMPILER_PATH=/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/:/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/:/usr/lib/gcc/x86_64-pc-linux-gnu/:/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/:/usr/lib/gcc/x86_64-pc-linux-gnu/ - LIBRARY_PATH=/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/:/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/:/lib/../lib/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../:/lib/:/usr/lib/ - COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_01592' '-mtune=generic' '-march=x86-64' '-dumpdir' 'cmTC_01592.' - /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/collect2 -plugin /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/lto-wrapper -plugin-opt=-fresolution=/tmp/ccDeQnVg.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s --build-id --eh-frame-hdr --hash-style=gnu -m elf_x86_64 -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -o cmTC_01592 /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/Scrt1.o /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/crti.o /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/crtbeginS.o -L/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1 -L/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib -L/lib/../lib -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../.. -L/lib -L/usr/lib -v CMakeFiles/cmTC_01592.dir/CMakeCCompilerABI.c.o -lgcc --push-state --as-needed -lgcc_s --pop-state -lc -lgcc --push-state --as-needed -lgcc_s --pop-state /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/crtendS.o /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/crtn.o - collect2 version 15.2.1 20250813 - /usr/bin/ld -plugin /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/lto-wrapper -plugin-opt=-fresolution=/tmp/ccDeQnVg.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s --build-id --eh-frame-hdr --hash-style=gnu -m elf_x86_64 -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -o cmTC_01592 /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/Scrt1.o /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/crti.o /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/crtbeginS.o -L/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1 -L/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib -L/lib/../lib -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../.. -L/lib -L/usr/lib -v CMakeFiles/cmTC_01592.dir/CMakeCCompilerABI.c.o -lgcc --push-state --as-needed -lgcc_s --pop-state -lc -lgcc --push-state --as-needed -lgcc_s --pop-state /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/crtendS.o /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/crtn.o - GNU ld (GNU Binutils) 2.45.0 - COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_01592' '-mtune=generic' '-march=x86-64' '-dumpdir' 'cmTC_01592.' - /usr/bin/cc -v -Wl,-v CMakeFiles/cmTC_01592.dir/CMakeCCompilerABI.c.o -o cmTC_01592 - make[1]: Leaving directory '/home/andrew/src2/build/CMakeFiles/CMakeScratch/TryCompile-Z312ka' - - exitCode: 0 - - - kind: "message-v1" - backtrace: - - "/usr/share/cmake/Modules/CMakeDetermineCompilerABI.cmake:217 (message)" - - "/usr/share/cmake/Modules/CMakeTestCCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" - - "CMakeLists.txt:3 (project)" - message: | - Parsed C implicit include dir info: rv=done - found start of include info - found start of implicit include info - add: [/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include] - add: [/usr/local/include] - add: [/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include-fixed] - add: [/usr/include] - end of search list found - collapse include dir [/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include] ==> [/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include] - collapse include dir [/usr/local/include] ==> [/usr/local/include] - collapse include dir [/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include-fixed] ==> [/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include-fixed] - collapse include dir [/usr/include] ==> [/usr/include] - implicit include dirs: [/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include;/usr/local/include;/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include-fixed;/usr/include] - - - - - kind: "message-v1" - backtrace: - - "/usr/share/cmake/Modules/CMakeDetermineCompilerABI.cmake:253 (message)" - - "/usr/share/cmake/Modules/CMakeTestCCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" - - "CMakeLists.txt:3 (project)" - message: | - Parsed C implicit link information: - link line regex: [^( *|.*[/\\])(ld[0-9]*(|\\.[a-rt-z][a-z]*|\\.s[a-np-z][a-z]*|\\.so[a-z]+)|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\\]+-)?ld|collect2)[^/\\]*( |$)] - linker tool regex: [^[ ]*(->|")?[ ]*(([^"]*[/\\])?(ld[0-9]*(|\\.[a-rt-z][a-z]*|\\.s[a-np-z][a-z]*|\\.so[a-z]+)))("|,| |$)] - ignore line: [Change Dir: '/home/andrew/src2/build/CMakeFiles/CMakeScratch/TryCompile-Z312ka'] - ignore line: [] - ignore line: [Run Build Command(s): /usr/bin/cmake -E env VERBOSE=1 /usr/bin/make -f Makefile cmTC_01592/fast] - ignore line: [/usr/bin/make -f CMakeFiles/cmTC_01592.dir/build.make CMakeFiles/cmTC_01592.dir/build] - ignore line: [make[1]: Entering directory '/home/andrew/src2/build/CMakeFiles/CMakeScratch/TryCompile-Z312ka'] - ignore line: [Building C object CMakeFiles/cmTC_01592.dir/CMakeCCompilerABI.c.o] - ignore line: [/usr/bin/cc -v -o CMakeFiles/cmTC_01592.dir/CMakeCCompilerABI.c.o -c /usr/share/cmake/Modules/CMakeCCompilerABI.c] - ignore line: [Using built-in specs.] - ignore line: [COLLECT_GCC=/usr/bin/cc] - ignore line: [Target: x86_64-pc-linux-gnu] - ignore line: [Configured with: /build/gcc/src/gcc/configure --enable-languages=ada c c++ d fortran go lto m2 objc obj-c++ rust cobol --enable-bootstrap --prefix=/usr --libdir=/usr/lib --libexecdir=/usr/lib --mandir=/usr/share/man --infodir=/usr/share/info --with-bugurl=https://gitlab.archlinux.org/archlinux/packaging/packages/gcc/-/issues --with-build-config=bootstrap-lto --with-linker-hash-style=gnu --with-system-zlib --enable-__cxa_atexit --enable-cet=auto --enable-checking=release --enable-clocale=gnu --enable-default-pie --enable-default-ssp --enable-gnu-indirect-function --enable-gnu-unique-object --enable-libstdcxx-backtrace --enable-link-serialization=1 --enable-linker-build-id --enable-lto --enable-multilib --enable-plugin --enable-shared --enable-threads=posix --disable-libssp --disable-libstdcxx-pch --disable-werror] - ignore line: [Thread model: posix] - ignore line: [Supported LTO compression algorithms: zlib zstd] - ignore line: [gcc version 15.2.1 20250813 (GCC) ] - ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_01592.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_01592.dir/'] - ignore line: [ /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/cc1 -quiet -v /usr/share/cmake/Modules/CMakeCCompilerABI.c -quiet -dumpdir CMakeFiles/cmTC_01592.dir/ -dumpbase CMakeCCompilerABI.c.c -dumpbase-ext .c -mtune=generic -march=x86-64 -version -o /tmp/cc0jq2Si.s] - ignore line: [GNU C23 (GCC) version 15.2.1 20250813 (x86_64-pc-linux-gnu)] - ignore line: [ compiled by GNU C version 15.2.1 20250813 GMP version 6.3.0 MPFR version 4.2.2 MPC version 1.3.1 isl version isl-0.27-GMP] - ignore line: [] - ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072] - ignore line: [ignoring nonexistent directory "/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../x86_64-pc-linux-gnu/include"] - ignore line: [#include "..." search starts here:] - ignore line: [#include <...> search starts here:] - ignore line: [ /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include] - ignore line: [ /usr/local/include] - ignore line: [ /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include-fixed] - ignore line: [ /usr/include] - ignore line: [End of search list.] - ignore line: [Compiler executable checksum: 09af9d42b9185573b6c370dd7aa39e64] - ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_01592.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_01592.dir/'] - ignore line: [ as -v --64 -o CMakeFiles/cmTC_01592.dir/CMakeCCompilerABI.c.o /tmp/cc0jq2Si.s] - ignore line: [GNU assembler version 2.45.0 (x86_64-pc-linux-gnu) using BFD version (GNU Binutils) 2.45.0] - ignore line: [COMPILER_PATH=/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/:/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/:/usr/lib/gcc/x86_64-pc-linux-gnu/:/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/:/usr/lib/gcc/x86_64-pc-linux-gnu/] - ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/:/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/:/lib/../lib/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../:/lib/:/usr/lib/] - ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_01592.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_01592.dir/CMakeCCompilerABI.c.'] - ignore line: [Linking C executable cmTC_01592] - ignore line: [/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_01592.dir/link.txt --verbose=1] - ignore line: [Using built-in specs.] - ignore line: [COLLECT_GCC=/usr/bin/cc] - ignore line: [COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/lto-wrapper] - ignore line: [Target: x86_64-pc-linux-gnu] - ignore line: [Configured with: /build/gcc/src/gcc/configure --enable-languages=ada c c++ d fortran go lto m2 objc obj-c++ rust cobol --enable-bootstrap --prefix=/usr --libdir=/usr/lib --libexecdir=/usr/lib --mandir=/usr/share/man --infodir=/usr/share/info --with-bugurl=https://gitlab.archlinux.org/archlinux/packaging/packages/gcc/-/issues --with-build-config=bootstrap-lto --with-linker-hash-style=gnu --with-system-zlib --enable-__cxa_atexit --enable-cet=auto --enable-checking=release --enable-clocale=gnu --enable-default-pie --enable-default-ssp --enable-gnu-indirect-function --enable-gnu-unique-object --enable-libstdcxx-backtrace --enable-link-serialization=1 --enable-linker-build-id --enable-lto --enable-multilib --enable-plugin --enable-shared --enable-threads=posix --disable-libssp --disable-libstdcxx-pch --disable-werror] - ignore line: [Thread model: posix] - ignore line: [Supported LTO compression algorithms: zlib zstd] - ignore line: [gcc version 15.2.1 20250813 (GCC) ] - ignore line: [COMPILER_PATH=/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/:/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/:/usr/lib/gcc/x86_64-pc-linux-gnu/:/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/:/usr/lib/gcc/x86_64-pc-linux-gnu/] - ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/:/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/:/lib/../lib/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../:/lib/:/usr/lib/] - ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_01592' '-mtune=generic' '-march=x86-64' '-dumpdir' 'cmTC_01592.'] - link line: [ /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/collect2 -plugin /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/lto-wrapper -plugin-opt=-fresolution=/tmp/ccDeQnVg.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s --build-id --eh-frame-hdr --hash-style=gnu -m elf_x86_64 -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -o cmTC_01592 /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/Scrt1.o /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/crti.o /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/crtbeginS.o -L/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1 -L/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib -L/lib/../lib -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../.. -L/lib -L/usr/lib -v CMakeFiles/cmTC_01592.dir/CMakeCCompilerABI.c.o -lgcc --push-state --as-needed -lgcc_s --pop-state -lc -lgcc --push-state --as-needed -lgcc_s --pop-state /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/crtendS.o /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/crtn.o] - arg [/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/collect2] ==> ignore - arg [-plugin] ==> ignore - arg [/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/liblto_plugin.so] ==> ignore - arg [-plugin-opt=/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/lto-wrapper] ==> ignore - arg [-plugin-opt=-fresolution=/tmp/ccDeQnVg.res] ==> ignore - arg [-plugin-opt=-pass-through=-lgcc] ==> ignore - arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore - arg [-plugin-opt=-pass-through=-lc] ==> ignore - arg [-plugin-opt=-pass-through=-lgcc] ==> ignore - arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore - arg [--build-id] ==> ignore - arg [--eh-frame-hdr] ==> ignore - arg [--hash-style=gnu] ==> ignore - arg [-m] ==> ignore - arg [elf_x86_64] ==> ignore - arg [-dynamic-linker] ==> ignore - arg [/lib64/ld-linux-x86-64.so.2] ==> ignore - arg [-pie] ==> ignore - arg [-o] ==> ignore - arg [cmTC_01592] ==> ignore - arg [/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/Scrt1.o] ==> obj [/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/Scrt1.o] - arg [/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/crti.o] ==> obj [/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/crti.o] - arg [/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/crtbeginS.o] ==> obj [/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/crtbeginS.o] - arg [-L/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1] ==> dir [/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1] - arg [-L/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib] ==> dir [/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib] - arg [-L/lib/../lib] ==> dir [/lib/../lib] - arg [-L/usr/lib/../lib] ==> dir [/usr/lib/../lib] - arg [-L/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../..] ==> dir [/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../..] - arg [-L/lib] ==> dir [/lib] - arg [-L/usr/lib] ==> dir [/usr/lib] - arg [-v] ==> ignore - arg [CMakeFiles/cmTC_01592.dir/CMakeCCompilerABI.c.o] ==> ignore - arg [-lgcc] ==> lib [gcc] - arg [--push-state] ==> ignore - arg [--as-needed] ==> ignore - arg [-lgcc_s] ==> lib [gcc_s] - arg [--pop-state] ==> ignore - arg [-lc] ==> lib [c] - arg [-lgcc] ==> lib [gcc] - arg [--push-state] ==> ignore - arg [--as-needed] ==> ignore - arg [-lgcc_s] ==> lib [gcc_s] - arg [--pop-state] ==> ignore - arg [/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/crtendS.o] ==> obj [/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/crtendS.o] - arg [/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/crtn.o] ==> obj [/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/crtn.o] - ignore line: [collect2 version 15.2.1 20250813] - ignore line: [/usr/bin/ld -plugin /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/lto-wrapper -plugin-opt=-fresolution=/tmp/ccDeQnVg.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s --build-id --eh-frame-hdr --hash-style=gnu -m elf_x86_64 -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -o cmTC_01592 /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/Scrt1.o /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/crti.o /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/crtbeginS.o -L/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1 -L/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib -L/lib/../lib -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../.. -L/lib -L/usr/lib -v CMakeFiles/cmTC_01592.dir/CMakeCCompilerABI.c.o -lgcc --push-state --as-needed -lgcc_s --pop-state -lc -lgcc --push-state --as-needed -lgcc_s --pop-state /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/crtendS.o /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/crtn.o] - linker tool for 'C': /usr/bin/ld - collapse obj [/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/Scrt1.o] ==> [/usr/lib/Scrt1.o] - collapse obj [/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/crti.o] ==> [/usr/lib/crti.o] - collapse obj [/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/crtn.o] ==> [/usr/lib/crtn.o] - collapse library dir [/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1] ==> [/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1] - collapse library dir [/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib] ==> [/usr/lib] - collapse library dir [/lib/../lib] ==> [/lib] - collapse library dir [/usr/lib/../lib] ==> [/usr/lib] - collapse library dir [/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../..] ==> [/usr/lib] - collapse library dir [/lib] ==> [/lib] - collapse library dir [/usr/lib] ==> [/usr/lib] - implicit libs: [gcc;gcc_s;c;gcc;gcc_s] - implicit objs: [/usr/lib/Scrt1.o;/usr/lib/crti.o;/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/crtbeginS.o;/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/crtendS.o;/usr/lib/crtn.o] - implicit dirs: [/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1;/usr/lib;/lib] - implicit fwks: [] - - - - - kind: "message-v1" - backtrace: - - "/usr/share/cmake/Modules/Internal/CMakeDetermineLinkerId.cmake:36 (message)" - - "/usr/share/cmake/Modules/CMakeDetermineCompilerABI.cmake:299 (cmake_determine_linker_id)" - - "/usr/share/cmake/Modules/CMakeTestCCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" - - "CMakeLists.txt:3 (project)" - message: | - Running the C compiler's linker: "/usr/bin/ld" "-v" - GNU ld (GNU Binutils) 2.45.0 -... diff --git a/build/CMakeFiles/CMakeDirectoryInformation.cmake b/build/CMakeFiles/CMakeDirectoryInformation.cmake deleted file mode 100644 index e5d7c5f..0000000 --- a/build/CMakeFiles/CMakeDirectoryInformation.cmake +++ /dev/null @@ -1,16 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 4.1 - -# Relative path conversion top directories. -set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/home/andrew/src2") -set(CMAKE_RELATIVE_PATH_TOP_BINARY "/home/andrew/src2/build") - -# Force unix paths in dependencies. -set(CMAKE_FORCE_UNIX_PATHS 1) - - -# The C and CXX include file regular expressions for this directory. -set(CMAKE_C_INCLUDE_REGEX_SCAN "^.*$") -set(CMAKE_C_INCLUDE_REGEX_COMPLAIN "^$") -set(CMAKE_CXX_INCLUDE_REGEX_SCAN ${CMAKE_C_INCLUDE_REGEX_SCAN}) -set(CMAKE_CXX_INCLUDE_REGEX_COMPLAIN ${CMAKE_C_INCLUDE_REGEX_COMPLAIN}) diff --git a/build/CMakeFiles/InstallScripts.json b/build/CMakeFiles/InstallScripts.json deleted file mode 100644 index 42ad1e3..0000000 --- a/build/CMakeFiles/InstallScripts.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "InstallScripts" : - [ - "/home/andrew/src2/build/cmake_install.cmake" - ], - "Parallel" : false -} diff --git a/build/CMakeFiles/Makefile.cmake b/build/CMakeFiles/Makefile.cmake deleted file mode 100644 index f42f4b9..0000000 --- a/build/CMakeFiles/Makefile.cmake +++ /dev/null @@ -1,52 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 4.1 - -# The generator used is: -set(CMAKE_DEPENDS_GENERATOR "Unix Makefiles") - -# The top level Makefile was generated from the following files: -set(CMAKE_MAKEFILE_DEPENDS - "CMakeCache.txt" - "/home/andrew/src2/CMakeLists.txt" - "CMakeFiles/4.1.1/CMakeCCompiler.cmake" - "CMakeFiles/4.1.1/CMakeSystem.cmake" - "/usr/share/cmake/Modules/CMakeCInformation.cmake" - "/usr/share/cmake/Modules/CMakeCommonLanguageInclude.cmake" - "/usr/share/cmake/Modules/CMakeGenericSystem.cmake" - "/usr/share/cmake/Modules/CMakeInitializeConfigs.cmake" - "/usr/share/cmake/Modules/CMakeLanguageInformation.cmake" - "/usr/share/cmake/Modules/CMakeSystemSpecificInformation.cmake" - "/usr/share/cmake/Modules/CMakeSystemSpecificInitialize.cmake" - "/usr/share/cmake/Modules/Compiler/CMakeCommonCompilerMacros.cmake" - "/usr/share/cmake/Modules/Compiler/GNU-C.cmake" - "/usr/share/cmake/Modules/Compiler/GNU.cmake" - "/usr/share/cmake/Modules/Internal/CMakeCLinkerInformation.cmake" - "/usr/share/cmake/Modules/Internal/CMakeCommonLinkerInformation.cmake" - "/usr/share/cmake/Modules/Linker/GNU-C.cmake" - "/usr/share/cmake/Modules/Linker/GNU.cmake" - "/usr/share/cmake/Modules/Platform/Linker/GNU.cmake" - "/usr/share/cmake/Modules/Platform/Linker/Linux-GNU-C.cmake" - "/usr/share/cmake/Modules/Platform/Linker/Linux-GNU.cmake" - "/usr/share/cmake/Modules/Platform/Linux-GNU-C.cmake" - "/usr/share/cmake/Modules/Platform/Linux-GNU.cmake" - "/usr/share/cmake/Modules/Platform/Linux-Initialize.cmake" - "/usr/share/cmake/Modules/Platform/Linux.cmake" - "/usr/share/cmake/Modules/Platform/UnixPaths.cmake" - ) - -# The corresponding makefile is: -set(CMAKE_MAKEFILE_OUTPUTS - "Makefile" - "CMakeFiles/cmake.check_cache" - ) - -# Byproducts of CMake generate step: -set(CMAKE_MAKEFILE_PRODUCTS - "CMakeFiles/CMakeDirectoryInformation.cmake" - ) - -# Dependency information for all targets: -set(CMAKE_DEPEND_INFO_FILES - "CMakeFiles/stack.dir/DependInfo.cmake" - "CMakeFiles/sortStation.dir/DependInfo.cmake" - ) diff --git a/build/CMakeFiles/Makefile2 b/build/CMakeFiles/Makefile2 deleted file mode 100644 index 97522c6..0000000 --- a/build/CMakeFiles/Makefile2 +++ /dev/null @@ -1,157 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 4.1 - -# Default target executed when no arguments are given to make. -default_target: all -.PHONY : default_target - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /usr/bin/cmake - -# The command to remove a file. -RM = /usr/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /home/andrew/src2 - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /home/andrew/src2/build - -#============================================================================= -# Directory level rules for the build root directory - -# The main recursive "all" target. -all: CMakeFiles/stack.dir/all -all: CMakeFiles/sortStation.dir/all -.PHONY : all - -# The main recursive "codegen" target. -codegen: CMakeFiles/stack.dir/codegen -codegen: CMakeFiles/sortStation.dir/codegen -.PHONY : codegen - -# The main recursive "preinstall" target. -preinstall: -.PHONY : preinstall - -# The main recursive "clean" target. -clean: CMakeFiles/stack.dir/clean -clean: CMakeFiles/sortStation.dir/clean -.PHONY : clean - -#============================================================================= -# Target rules for target CMakeFiles/stack.dir - -# All Build rule for target. -CMakeFiles/stack.dir/all: - $(MAKE) $(MAKESILENT) -f CMakeFiles/stack.dir/build.make CMakeFiles/stack.dir/depend - $(MAKE) $(MAKESILENT) -f CMakeFiles/stack.dir/build.make CMakeFiles/stack.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/home/andrew/src2/build/CMakeFiles --progress-num=3,4 "Built target stack" -.PHONY : CMakeFiles/stack.dir/all - -# Build rule for subdir invocation for target. -CMakeFiles/stack.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /home/andrew/src2/build/CMakeFiles 2 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 CMakeFiles/stack.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /home/andrew/src2/build/CMakeFiles 0 -.PHONY : CMakeFiles/stack.dir/rule - -# Convenience name for target. -stack: CMakeFiles/stack.dir/rule -.PHONY : stack - -# codegen rule for target. -CMakeFiles/stack.dir/codegen: - $(MAKE) $(MAKESILENT) -f CMakeFiles/stack.dir/build.make CMakeFiles/stack.dir/codegen - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/home/andrew/src2/build/CMakeFiles --progress-num=3,4 "Finished codegen for target stack" -.PHONY : CMakeFiles/stack.dir/codegen - -# clean rule for target. -CMakeFiles/stack.dir/clean: - $(MAKE) $(MAKESILENT) -f CMakeFiles/stack.dir/build.make CMakeFiles/stack.dir/clean -.PHONY : CMakeFiles/stack.dir/clean - -#============================================================================= -# Target rules for target CMakeFiles/sortStation.dir - -# All Build rule for target. -CMakeFiles/sortStation.dir/all: CMakeFiles/stack.dir/all - $(MAKE) $(MAKESILENT) -f CMakeFiles/sortStation.dir/build.make CMakeFiles/sortStation.dir/depend - $(MAKE) $(MAKESILENT) -f CMakeFiles/sortStation.dir/build.make CMakeFiles/sortStation.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/home/andrew/src2/build/CMakeFiles --progress-num=1,2 "Built target sortStation" -.PHONY : CMakeFiles/sortStation.dir/all - -# Build rule for subdir invocation for target. -CMakeFiles/sortStation.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /home/andrew/src2/build/CMakeFiles 4 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 CMakeFiles/sortStation.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /home/andrew/src2/build/CMakeFiles 0 -.PHONY : CMakeFiles/sortStation.dir/rule - -# Convenience name for target. -sortStation: CMakeFiles/sortStation.dir/rule -.PHONY : sortStation - -# codegen rule for target. -CMakeFiles/sortStation.dir/codegen: - $(MAKE) $(MAKESILENT) -f CMakeFiles/sortStation.dir/build.make CMakeFiles/sortStation.dir/codegen - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/home/andrew/src2/build/CMakeFiles --progress-num=1,2 "Finished codegen for target sortStation" -.PHONY : CMakeFiles/sortStation.dir/codegen - -# clean rule for target. -CMakeFiles/sortStation.dir/clean: - $(MAKE) $(MAKESILENT) -f CMakeFiles/sortStation.dir/build.make CMakeFiles/sortStation.dir/clean -.PHONY : CMakeFiles/sortStation.dir/clean - -#============================================================================= -# Special targets to cleanup operation of make. - -# Special rule to run CMake to check the build system integrity. -# No rule that depends on this can have commands that come from listfiles -# because they might be regenerated. -cmake_check_build_system: - $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 -.PHONY : cmake_check_build_system - diff --git a/build/CMakeFiles/TargetDirectories.txt b/build/CMakeFiles/TargetDirectories.txt deleted file mode 100644 index 9174acb..0000000 --- a/build/CMakeFiles/TargetDirectories.txt +++ /dev/null @@ -1,4 +0,0 @@ -/home/andrew/src2/build/CMakeFiles/stack.dir -/home/andrew/src2/build/CMakeFiles/sortStation.dir -/home/andrew/src2/build/CMakeFiles/edit_cache.dir -/home/andrew/src2/build/CMakeFiles/rebuild_cache.dir diff --git a/build/CMakeFiles/advancBalancStap.dir/DependInfo.cmake b/build/CMakeFiles/advancBalancStap.dir/DependInfo.cmake deleted file mode 100644 index 425e565..0000000 --- a/build/CMakeFiles/advancBalancStap.dir/DependInfo.cmake +++ /dev/null @@ -1,24 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - "/home/andrew/src2/advancBalancStap.c" "CMakeFiles/advancBalancStap.dir/advancBalancStap.c.o" "gcc" "CMakeFiles/advancBalancStap.dir/advancBalancStap.c.o.d" - "" "advancBalancStap" "gcc" "CMakeFiles/advancBalancStap.dir/link.d" - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_FORWARD_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/CMakeFiles/advancBalancStap.dir/advancBalancStap.c.o b/build/CMakeFiles/advancBalancStap.dir/advancBalancStap.c.o deleted file mode 100644 index 7b565fde85e915d2c4ad78876584958e811b8dba..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 2872 zcmbuB&ube;6vyAnj-9r)r5YCsNy|c;Ak%cQToTg66xC+yCA2vtxP*ox*3!y$ZT&zR zrAdv6ZKb6`PEp%S{(;^@h=bc;BNAwuLt%9ZJ@lA@f&y(EA9N_F?~Qh(@k-l6`(Srw zKHvA=yqy`1eO3SP1D~RRFa_R&_DE2Gt^RgD%)4P2fap{sTOjNt0Wl( zz5cVlt31&6X!v9oUqyY-h}uR`uNsQ&zXKCN7VKclY@~x-%pG+z{|+Up7akdf2YkXO z8(n7b@09cP6?P0?S7Z75DC^JHKV>It7bsRleyu-WU3ng46Id_QPIOAk>`gAc-YH#V z16=AW)p|=crR2Y(@8PN~7^vooV==(sknh1Bt} z@#AABL+?=K^wFT=L(7Lw-~**hOq^ZCH6B5YO!?v*D3=4up@IH`C3HTFj2^OO3Vwem z@Re_Bu&?Kmf-YQ};3~lP)C%4A4auHHse0jAqnkrdtIGXq5C59|jOrei{CSPYsOG?a zS3Xib_z@32>cK-E{DcQTjhyNf_3^br7WVL;_TV3R@be!06Aun%?2?&`PMS;jKF`dw z7KK?pupnuD4(VKW9@42aEM)aWnq5J_vJlT$79`AtB&0J7Nfw7Ji{T(XXQ7y7nI$U; zkw})A(Zxt~elZd^7nZO9sRlZObSCj<#chp5G~#{u2!59!8gaT>1%E^k&CQ=RaR(34 zK|>>dI*uaGq{Ds4@YmhqXC(g@B>u6)UzB*nm1h_=vN_3L&Xbk6oaYBuo?tT#+>-nU zkcs+#l>7%J{;T9aB=O%R?w9zV5~np1`47^D!!$w+ow_&ChpZ7$9^XxS?X zX3k>EGR<~g^fK0xsWIy^11)AU6SUcE7PL&NIf$kb2`h@<2XV{^f?)a($E(k}b zb;r{w?6&^_=l?`8KkYx=4 CMakeFiles/advancBalancStap.dir/advancBalancStap.c.i - -CMakeFiles/advancBalancStap.dir/advancBalancStap.c.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/advancBalancStap.dir/advancBalancStap.c.s" - /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/andrew/src2/advancBalancStap.c -o CMakeFiles/advancBalancStap.dir/advancBalancStap.c.s - -# Object files for target advancBalancStap -advancBalancStap_OBJECTS = \ -"CMakeFiles/advancBalancStap.dir/advancBalancStap.c.o" - -# External object files for target advancBalancStap -advancBalancStap_EXTERNAL_OBJECTS = - -advancBalancStap: CMakeFiles/advancBalancStap.dir/advancBalancStap.c.o -advancBalancStap: CMakeFiles/advancBalancStap.dir/build.make -advancBalancStap: CMakeFiles/advancBalancStap.dir/compiler_depend.ts -advancBalancStap: libstack.a -advancBalancStap: CMakeFiles/advancBalancStap.dir/link.txt - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --bold --progress-dir=/home/andrew/src2/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Linking C executable advancBalancStap" - $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/advancBalancStap.dir/link.txt --verbose=$(VERBOSE) - -# Rule to build all files generated by this target. -CMakeFiles/advancBalancStap.dir/build: advancBalancStap -.PHONY : CMakeFiles/advancBalancStap.dir/build - -CMakeFiles/advancBalancStap.dir/clean: - $(CMAKE_COMMAND) -P CMakeFiles/advancBalancStap.dir/cmake_clean.cmake -.PHONY : CMakeFiles/advancBalancStap.dir/clean - -CMakeFiles/advancBalancStap.dir/depend: - cd /home/andrew/src2/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/andrew/src2 /home/andrew/src2 /home/andrew/src2/build /home/andrew/src2/build /home/andrew/src2/build/CMakeFiles/advancBalancStap.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : CMakeFiles/advancBalancStap.dir/depend - diff --git a/build/CMakeFiles/advancBalancStap.dir/cmake_clean.cmake b/build/CMakeFiles/advancBalancStap.dir/cmake_clean.cmake deleted file mode 100644 index 745bf6d..0000000 --- a/build/CMakeFiles/advancBalancStap.dir/cmake_clean.cmake +++ /dev/null @@ -1,12 +0,0 @@ -file(REMOVE_RECURSE - "CMakeFiles/advancBalancStap.dir/link.d" - "CMakeFiles/advancBalancStap.dir/advancBalancStap.c.o" - "CMakeFiles/advancBalancStap.dir/advancBalancStap.c.o.d" - "advancBalancStap" - "advancBalancStap.pdb" -) - -# Per-language clean rules from dependency scanning. -foreach(lang C) - include(CMakeFiles/advancBalancStap.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/CMakeFiles/advancBalancStap.dir/compiler_depend.make b/build/CMakeFiles/advancBalancStap.dir/compiler_depend.make deleted file mode 100644 index c867044..0000000 --- a/build/CMakeFiles/advancBalancStap.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty compiler generated dependencies file for advancBalancStap. -# This may be replaced when dependencies are built. diff --git a/build/CMakeFiles/advancBalancStap.dir/compiler_depend.ts b/build/CMakeFiles/advancBalancStap.dir/compiler_depend.ts deleted file mode 100644 index f097ef0..0000000 --- a/build/CMakeFiles/advancBalancStap.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for compiler generated dependencies management for advancBalancStap. diff --git a/build/CMakeFiles/advancBalancStap.dir/depend.make b/build/CMakeFiles/advancBalancStap.dir/depend.make deleted file mode 100644 index 85820c6..0000000 --- a/build/CMakeFiles/advancBalancStap.dir/depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty dependencies file for advancBalancStap. -# This may be replaced when dependencies are built. diff --git a/build/CMakeFiles/advancBalancStap.dir/flags.make b/build/CMakeFiles/advancBalancStap.dir/flags.make deleted file mode 100644 index 4bea55c..0000000 --- a/build/CMakeFiles/advancBalancStap.dir/flags.make +++ /dev/null @@ -1,10 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 4.1 - -# compile C with /usr/bin/cc -C_DEFINES = - -C_INCLUDES = - -C_FLAGS = - diff --git a/build/CMakeFiles/advancBalancStap.dir/link.d b/build/CMakeFiles/advancBalancStap.dir/link.d deleted file mode 100644 index b2036c9..0000000 --- a/build/CMakeFiles/advancBalancStap.dir/link.d +++ /dev/null @@ -1,79 +0,0 @@ -advancBalancStap: \ - /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/Scrt1.o \ - /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/crti.o \ - /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/crtbeginS.o \ - CMakeFiles/advancBalancStap.dir/advancBalancStap.c.o \ - libstack.a \ - /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/libgcc.a \ - /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/libgcc_s.so \ - /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/libgcc_s.so \ - /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/libgcc_s.so \ - /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/libgcc_s.so.1 \ - /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/libgcc.a \ - /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/libc.so \ - /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/libc.so \ - /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/libc.so \ - /usr/lib/libc.so.6 \ - /usr/lib/libc_nonshared.a \ - /usr/lib/ld-linux-x86-64.so.2 \ - /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/libgcc.a \ - /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/libgcc_s.so \ - /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/libgcc_s.so \ - /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/libgcc_s.so \ - /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/libgcc_s.so.1 \ - /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/libgcc.a \ - /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/crtendS.o \ - /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/crtn.o \ - /usr/lib/ld-linux-x86-64.so.2 - -/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/Scrt1.o: - -/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/crti.o: - -/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/crtbeginS.o: - -CMakeFiles/advancBalancStap.dir/advancBalancStap.c.o: - -libstack.a: - -/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/libgcc.a: - -/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/libgcc_s.so: - -/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/libgcc_s.so: - -/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/libgcc_s.so: - -/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/libgcc_s.so.1: - -/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/libgcc.a: - -/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/libc.so: - -/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/libc.so: - -/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/libc.so: - -/usr/lib/libc.so.6: - -/usr/lib/libc_nonshared.a: - -/usr/lib/ld-linux-x86-64.so.2: - -/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/libgcc.a: - -/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/libgcc_s.so: - -/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/libgcc_s.so: - -/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/libgcc_s.so: - -/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/libgcc_s.so.1: - -/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/libgcc.a: - -/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/crtendS.o: - -/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/crtn.o: - -/usr/lib/ld-linux-x86-64.so.2: diff --git a/build/CMakeFiles/advancBalancStap.dir/link.txt b/build/CMakeFiles/advancBalancStap.dir/link.txt deleted file mode 100644 index 00b5bc4..0000000 --- a/build/CMakeFiles/advancBalancStap.dir/link.txt +++ /dev/null @@ -1 +0,0 @@ -/usr/bin/cc -Wl,--dependency-file=CMakeFiles/advancBalancStap.dir/link.d CMakeFiles/advancBalancStap.dir/advancBalancStap.c.o -o advancBalancStap libstack.a diff --git a/build/CMakeFiles/advancBalancStap.dir/progress.make b/build/CMakeFiles/advancBalancStap.dir/progress.make deleted file mode 100644 index abadeb0..0000000 --- a/build/CMakeFiles/advancBalancStap.dir/progress.make +++ /dev/null @@ -1,3 +0,0 @@ -CMAKE_PROGRESS_1 = 1 -CMAKE_PROGRESS_2 = 2 - diff --git a/build/CMakeFiles/cmake.check_cache b/build/CMakeFiles/cmake.check_cache deleted file mode 100644 index 3dccd73..0000000 --- a/build/CMakeFiles/cmake.check_cache +++ /dev/null @@ -1 +0,0 @@ -# This file is generated by cmake for dependency checking of the CMakeCache.txt file diff --git a/build/CMakeFiles/progress.marks b/build/CMakeFiles/progress.marks deleted file mode 100644 index b8626c4..0000000 --- a/build/CMakeFiles/progress.marks +++ /dev/null @@ -1 +0,0 @@ -4 diff --git a/build/CMakeFiles/sortStation.dir/DependInfo.cmake b/build/CMakeFiles/sortStation.dir/DependInfo.cmake deleted file mode 100644 index 13fd84b..0000000 --- a/build/CMakeFiles/sortStation.dir/DependInfo.cmake +++ /dev/null @@ -1,24 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - "/home/andrew/src2/sortStation.c" "CMakeFiles/sortStation.dir/sortStation.c.o" "gcc" "CMakeFiles/sortStation.dir/sortStation.c.o.d" - "" "sortStation" "gcc" "CMakeFiles/sortStation.dir/link.d" - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_FORWARD_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/CMakeFiles/sortStation.dir/build.make b/build/CMakeFiles/sortStation.dir/build.make deleted file mode 100644 index 7431dc2..0000000 --- a/build/CMakeFiles/sortStation.dir/build.make +++ /dev/null @@ -1,115 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 4.1 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /usr/bin/cmake - -# The command to remove a file. -RM = /usr/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /home/andrew/src2 - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /home/andrew/src2/build - -# Include any dependencies generated for this target. -include CMakeFiles/sortStation.dir/depend.make -# Include any dependencies generated by the compiler for this target. -include CMakeFiles/sortStation.dir/compiler_depend.make - -# Include the progress variables for this target. -include CMakeFiles/sortStation.dir/progress.make - -# Include the compile flags for this target's objects. -include CMakeFiles/sortStation.dir/flags.make - -CMakeFiles/sortStation.dir/codegen: -.PHONY : CMakeFiles/sortStation.dir/codegen - -CMakeFiles/sortStation.dir/sortStation.c.o: CMakeFiles/sortStation.dir/flags.make -CMakeFiles/sortStation.dir/sortStation.c.o: /home/andrew/src2/sortStation.c -CMakeFiles/sortStation.dir/sortStation.c.o: CMakeFiles/sortStation.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/andrew/src2/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building C object CMakeFiles/sortStation.dir/sortStation.c.o" - /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/sortStation.dir/sortStation.c.o -MF CMakeFiles/sortStation.dir/sortStation.c.o.d -o CMakeFiles/sortStation.dir/sortStation.c.o -c /home/andrew/src2/sortStation.c - -CMakeFiles/sortStation.dir/sortStation.c.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/sortStation.dir/sortStation.c.i" - /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/andrew/src2/sortStation.c > CMakeFiles/sortStation.dir/sortStation.c.i - -CMakeFiles/sortStation.dir/sortStation.c.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/sortStation.dir/sortStation.c.s" - /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/andrew/src2/sortStation.c -o CMakeFiles/sortStation.dir/sortStation.c.s - -# Object files for target sortStation -sortStation_OBJECTS = \ -"CMakeFiles/sortStation.dir/sortStation.c.o" - -# External object files for target sortStation -sortStation_EXTERNAL_OBJECTS = - -sortStation: CMakeFiles/sortStation.dir/sortStation.c.o -sortStation: CMakeFiles/sortStation.dir/build.make -sortStation: CMakeFiles/sortStation.dir/compiler_depend.ts -sortStation: libstack.a -sortStation: CMakeFiles/sortStation.dir/link.txt - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --bold --progress-dir=/home/andrew/src2/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Linking C executable sortStation" - $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/sortStation.dir/link.txt --verbose=$(VERBOSE) - -# Rule to build all files generated by this target. -CMakeFiles/sortStation.dir/build: sortStation -.PHONY : CMakeFiles/sortStation.dir/build - -CMakeFiles/sortStation.dir/clean: - $(CMAKE_COMMAND) -P CMakeFiles/sortStation.dir/cmake_clean.cmake -.PHONY : CMakeFiles/sortStation.dir/clean - -CMakeFiles/sortStation.dir/depend: - cd /home/andrew/src2/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/andrew/src2 /home/andrew/src2 /home/andrew/src2/build /home/andrew/src2/build /home/andrew/src2/build/CMakeFiles/sortStation.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : CMakeFiles/sortStation.dir/depend - diff --git a/build/CMakeFiles/sortStation.dir/cmake_clean.cmake b/build/CMakeFiles/sortStation.dir/cmake_clean.cmake deleted file mode 100644 index f498602..0000000 --- a/build/CMakeFiles/sortStation.dir/cmake_clean.cmake +++ /dev/null @@ -1,12 +0,0 @@ -file(REMOVE_RECURSE - "CMakeFiles/sortStation.dir/link.d" - "CMakeFiles/sortStation.dir/sortStation.c.o" - "CMakeFiles/sortStation.dir/sortStation.c.o.d" - "sortStation" - "sortStation.pdb" -) - -# Per-language clean rules from dependency scanning. -foreach(lang C) - include(CMakeFiles/sortStation.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/CMakeFiles/sortStation.dir/compiler_depend.make b/build/CMakeFiles/sortStation.dir/compiler_depend.make deleted file mode 100644 index 1fba69f..0000000 --- a/build/CMakeFiles/sortStation.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty compiler generated dependencies file for sortStation. -# This may be replaced when dependencies are built. diff --git a/build/CMakeFiles/sortStation.dir/compiler_depend.ts b/build/CMakeFiles/sortStation.dir/compiler_depend.ts deleted file mode 100644 index b617aac..0000000 --- a/build/CMakeFiles/sortStation.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for compiler generated dependencies management for sortStation. diff --git a/build/CMakeFiles/sortStation.dir/depend.make b/build/CMakeFiles/sortStation.dir/depend.make deleted file mode 100644 index ed39330..0000000 --- a/build/CMakeFiles/sortStation.dir/depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty dependencies file for sortStation. -# This may be replaced when dependencies are built. diff --git a/build/CMakeFiles/sortStation.dir/flags.make b/build/CMakeFiles/sortStation.dir/flags.make deleted file mode 100644 index 4bea55c..0000000 --- a/build/CMakeFiles/sortStation.dir/flags.make +++ /dev/null @@ -1,10 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 4.1 - -# compile C with /usr/bin/cc -C_DEFINES = - -C_INCLUDES = - -C_FLAGS = - diff --git a/build/CMakeFiles/sortStation.dir/link.d b/build/CMakeFiles/sortStation.dir/link.d deleted file mode 100644 index 7677f93..0000000 --- a/build/CMakeFiles/sortStation.dir/link.d +++ /dev/null @@ -1,79 +0,0 @@ -sortStation: \ - /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/Scrt1.o \ - /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/crti.o \ - /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/crtbeginS.o \ - CMakeFiles/sortStation.dir/sortStation.c.o \ - libstack.a \ - /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/libgcc.a \ - /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/libgcc_s.so \ - /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/libgcc_s.so \ - /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/libgcc_s.so \ - /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/libgcc_s.so.1 \ - /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/libgcc.a \ - /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/libc.so \ - /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/libc.so \ - /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/libc.so \ - /usr/lib/libc.so.6 \ - /usr/lib/libc_nonshared.a \ - /usr/lib/ld-linux-x86-64.so.2 \ - /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/libgcc.a \ - /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/libgcc_s.so \ - /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/libgcc_s.so \ - /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/libgcc_s.so \ - /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/libgcc_s.so.1 \ - /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/libgcc.a \ - /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/crtendS.o \ - /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/crtn.o \ - /usr/lib/ld-linux-x86-64.so.2 - -/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/Scrt1.o: - -/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/crti.o: - -/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/crtbeginS.o: - -CMakeFiles/sortStation.dir/sortStation.c.o: - -libstack.a: - -/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/libgcc.a: - -/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/libgcc_s.so: - -/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/libgcc_s.so: - -/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/libgcc_s.so: - -/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/libgcc_s.so.1: - -/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/libgcc.a: - -/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/libc.so: - -/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/libc.so: - -/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/libc.so: - -/usr/lib/libc.so.6: - -/usr/lib/libc_nonshared.a: - -/usr/lib/ld-linux-x86-64.so.2: - -/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/libgcc.a: - -/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/libgcc_s.so: - -/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/libgcc_s.so: - -/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/libgcc_s.so: - -/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/libgcc_s.so.1: - -/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/libgcc.a: - -/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/crtendS.o: - -/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/crtn.o: - -/usr/lib/ld-linux-x86-64.so.2: diff --git a/build/CMakeFiles/sortStation.dir/link.txt b/build/CMakeFiles/sortStation.dir/link.txt deleted file mode 100644 index aaaf25c..0000000 --- a/build/CMakeFiles/sortStation.dir/link.txt +++ /dev/null @@ -1 +0,0 @@ -/usr/bin/cc -Wl,--dependency-file=CMakeFiles/sortStation.dir/link.d CMakeFiles/sortStation.dir/sortStation.c.o -o sortStation libstack.a diff --git a/build/CMakeFiles/sortStation.dir/progress.make b/build/CMakeFiles/sortStation.dir/progress.make deleted file mode 100644 index abadeb0..0000000 --- a/build/CMakeFiles/sortStation.dir/progress.make +++ /dev/null @@ -1,3 +0,0 @@ -CMAKE_PROGRESS_1 = 1 -CMAKE_PROGRESS_2 = 2 - diff --git a/build/CMakeFiles/sortStation.dir/sortStation.c.o b/build/CMakeFiles/sortStation.dir/sortStation.c.o deleted file mode 100644 index 796ed159473e709939dda51db02c7e07df2c5d23..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 4016 zcmbuBT})g>6vyZ8Qi`>7v0`j&V^^CJK9>*M1}QOX@yhj!hgRx?8oKP>1%&;`?yR&b zDP_TMvu@JZnEFr?UwpHPX`~^>B3e?~KGfyG!UGQ^#sspBslG@82G5y$XPKSd`%+JG z@67z>f99M!U%ThkH(zxq3gM=Zm&kUDQ$m_{Z`Zx7>Lq(fIqBAnKeXh7Ce0XG)r`c7 z(Y>5fmko7OOQ`_nS5Z5uZe**H>ZXzc?$1Eiil+SHx~^_aIwalb$VN3Sg*Qpu1NEJo z7~m8{XoU#3jl^6^olDLt+LwH6%}`h7)g=tWVnKU#UR}oaTG~MfWMhWBttlDTb<*BI z-!5P^)LX#nXng^zrTYq4qif;{%vb@hNj#hCUeZ!;t(c#9k7sPCOKX1?^QfiA3Px#6 ze4KSB)g_p^B|dfO1NpP&6z4GcP#K@4ZV|QD(i?g0MtW5az< z^7XqY>}*^fVVmK)`|oP0ZrJ8`Vb4uEvdYDzx{Rvh>YVGdzJIs2vi0J}Osb2cBa7Aa zX=$z5FD04 zAUHJZ&9hp12Ob;P0n=ET$0_v`W9f;C&8@AORVV8=yG+J6j4@FHiqseQ*37Q$-J}^4 zWx(er2)uE??6DN9vpvoF%;V{rfizf1evI&SHJ?<4?P`^E3ysZXD(Z z3$Py0>MGeM(j6@6J2x|*XRc+YGT&#W7sfJE?u82rV+*61namFh$u>7R>~|B=+0oJF zuI}vWu5mXX^|W}J-7QTmN1IxkUm!4r1QY~k3IxPKlv!kO0GKIKyOQ&dP7>v8g|dJ5 z&a#UjJ^&maG#|cR-c#|Zqocgk@g6A5812ZxUV%x^^{Yvzv(1^)oIwFtIVQlzaF!`d zzfn%QE;M{|;`GxXbc#7rOYs33(c-V#~Z1{)`AG6^k9*NOY)JF#* zVUM4LA|L7}=rDjNiAL~=(_mM`>?a}L&``ur!ul{7h^wI}Jx8LtK1ia8cs~i~Lps&L z(?1BpfiQ{22EsH*;xqt_V4qIoP>&7i(37D4eqW3PW4caydgAEQ5a#UCl)aq{zxdKhoLVVp}Gft!y4E*wc35*geMw{ zMD-Y40vqZN6_j{$#H>W|5#+;_O}$5b2)xJbl{ke>fa2$IHtJv&?G$m^Vkqfj{hR`A!`ye zSgpj%1&sfvFk7Y;>wKIOLY-@{Y_j}ChIQ`8`AMkYJuK(X{pGy){B!>gpn_w{{%5TC zqg-f}vOn&^qU( CMakeFiles/stack.dir/stack.c.i - -CMakeFiles/stack.dir/stack.c.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/stack.dir/stack.c.s" - /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/andrew/src2/stack.c -o CMakeFiles/stack.dir/stack.c.s - -# Object files for target stack -stack_OBJECTS = \ -"CMakeFiles/stack.dir/stack.c.o" - -# External object files for target stack -stack_EXTERNAL_OBJECTS = - -libstack.a: CMakeFiles/stack.dir/stack.c.o -libstack.a: CMakeFiles/stack.dir/build.make -libstack.a: CMakeFiles/stack.dir/link.txt - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --bold --progress-dir=/home/andrew/src2/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Linking C static library libstack.a" - $(CMAKE_COMMAND) -P CMakeFiles/stack.dir/cmake_clean_target.cmake - $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/stack.dir/link.txt --verbose=$(VERBOSE) - -# Rule to build all files generated by this target. -CMakeFiles/stack.dir/build: libstack.a -.PHONY : CMakeFiles/stack.dir/build - -CMakeFiles/stack.dir/clean: - $(CMAKE_COMMAND) -P CMakeFiles/stack.dir/cmake_clean.cmake -.PHONY : CMakeFiles/stack.dir/clean - -CMakeFiles/stack.dir/depend: - cd /home/andrew/src2/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/andrew/src2 /home/andrew/src2 /home/andrew/src2/build /home/andrew/src2/build /home/andrew/src2/build/CMakeFiles/stack.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : CMakeFiles/stack.dir/depend - diff --git a/build/CMakeFiles/stack.dir/cmake_clean.cmake b/build/CMakeFiles/stack.dir/cmake_clean.cmake deleted file mode 100644 index 11fe375..0000000 --- a/build/CMakeFiles/stack.dir/cmake_clean.cmake +++ /dev/null @@ -1,11 +0,0 @@ -file(REMOVE_RECURSE - "CMakeFiles/stack.dir/stack.c.o" - "CMakeFiles/stack.dir/stack.c.o.d" - "libstack.a" - "libstack.pdb" -) - -# Per-language clean rules from dependency scanning. -foreach(lang C) - include(CMakeFiles/stack.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/CMakeFiles/stack.dir/cmake_clean_target.cmake b/build/CMakeFiles/stack.dir/cmake_clean_target.cmake deleted file mode 100644 index 99b9ceb..0000000 --- a/build/CMakeFiles/stack.dir/cmake_clean_target.cmake +++ /dev/null @@ -1,3 +0,0 @@ -file(REMOVE_RECURSE - "libstack.a" -) diff --git a/build/CMakeFiles/stack.dir/compiler_depend.internal b/build/CMakeFiles/stack.dir/compiler_depend.internal deleted file mode 100644 index f4e5f9d..0000000 --- a/build/CMakeFiles/stack.dir/compiler_depend.internal +++ /dev/null @@ -1,62 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 4.1 - -CMakeFiles/stack.dir/stack.c.o - /home/andrew/src2/stack.c - /home/andrew/src2/stack.h - /usr/include/alloca.h - /usr/include/bits/atomic_wide_counter.h - /usr/include/bits/byteswap.h - /usr/include/bits/endian.h - /usr/include/bits/endianness.h - /usr/include/bits/floatn-common.h - /usr/include/bits/floatn.h - /usr/include/bits/libc-header-start.h - /usr/include/bits/long-double.h - /usr/include/bits/pthreadtypes-arch.h - /usr/include/bits/pthreadtypes.h - /usr/include/bits/select.h - /usr/include/bits/stdint-intn.h - /usr/include/bits/stdio_lim.h - /usr/include/bits/stdlib-float.h - /usr/include/bits/struct_mutex.h - /usr/include/bits/struct_rwlock.h - /usr/include/bits/thread-shared-types.h - /usr/include/bits/time64.h - /usr/include/bits/timesize.h - /usr/include/bits/types.h - /usr/include/bits/types/FILE.h - /usr/include/bits/types/__FILE.h - /usr/include/bits/types/__fpos64_t.h - /usr/include/bits/types/__fpos_t.h - /usr/include/bits/types/__mbstate_t.h - /usr/include/bits/types/__sigset_t.h - /usr/include/bits/types/clock_t.h - /usr/include/bits/types/clockid_t.h - /usr/include/bits/types/cookie_io_functions_t.h - /usr/include/bits/types/sigset_t.h - /usr/include/bits/types/struct_FILE.h - /usr/include/bits/types/struct_timespec.h - /usr/include/bits/types/struct_timeval.h - /usr/include/bits/types/time_t.h - /usr/include/bits/types/timer_t.h - /usr/include/bits/typesizes.h - /usr/include/bits/uintn-identity.h - /usr/include/bits/waitflags.h - /usr/include/bits/waitstatus.h - /usr/include/bits/wordsize.h - /usr/include/endian.h - /usr/include/features-time64.h - /usr/include/features.h - /usr/include/gnu/stubs-64.h - /usr/include/gnu/stubs.h - /usr/include/stdc-predef.h - /usr/include/stdio.h - /usr/include/stdlib.h - /usr/include/sys/cdefs.h - /usr/include/sys/select.h - /usr/include/sys/types.h - /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/stdarg.h - /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/stdbool.h - /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/stddef.h - diff --git a/build/CMakeFiles/stack.dir/compiler_depend.make b/build/CMakeFiles/stack.dir/compiler_depend.make deleted file mode 100644 index e71842f..0000000 --- a/build/CMakeFiles/stack.dir/compiler_depend.make +++ /dev/null @@ -1,175 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 4.1 - -CMakeFiles/stack.dir/stack.c.o: /home/andrew/src2/stack.c \ - /home/andrew/src2/stack.h \ - /usr/include/alloca.h \ - /usr/include/bits/atomic_wide_counter.h \ - /usr/include/bits/byteswap.h \ - /usr/include/bits/endian.h \ - /usr/include/bits/endianness.h \ - /usr/include/bits/floatn-common.h \ - /usr/include/bits/floatn.h \ - /usr/include/bits/libc-header-start.h \ - /usr/include/bits/long-double.h \ - /usr/include/bits/pthreadtypes-arch.h \ - /usr/include/bits/pthreadtypes.h \ - /usr/include/bits/select.h \ - /usr/include/bits/stdint-intn.h \ - /usr/include/bits/stdio_lim.h \ - /usr/include/bits/stdlib-float.h \ - /usr/include/bits/struct_mutex.h \ - /usr/include/bits/struct_rwlock.h \ - /usr/include/bits/thread-shared-types.h \ - /usr/include/bits/time64.h \ - /usr/include/bits/timesize.h \ - /usr/include/bits/types.h \ - /usr/include/bits/types/FILE.h \ - /usr/include/bits/types/__FILE.h \ - /usr/include/bits/types/__fpos64_t.h \ - /usr/include/bits/types/__fpos_t.h \ - /usr/include/bits/types/__mbstate_t.h \ - /usr/include/bits/types/__sigset_t.h \ - /usr/include/bits/types/clock_t.h \ - /usr/include/bits/types/clockid_t.h \ - /usr/include/bits/types/cookie_io_functions_t.h \ - /usr/include/bits/types/sigset_t.h \ - /usr/include/bits/types/struct_FILE.h \ - /usr/include/bits/types/struct_timespec.h \ - /usr/include/bits/types/struct_timeval.h \ - /usr/include/bits/types/time_t.h \ - /usr/include/bits/types/timer_t.h \ - /usr/include/bits/typesizes.h \ - /usr/include/bits/uintn-identity.h \ - /usr/include/bits/waitflags.h \ - /usr/include/bits/waitstatus.h \ - /usr/include/bits/wordsize.h \ - /usr/include/endian.h \ - /usr/include/features-time64.h \ - /usr/include/features.h \ - /usr/include/gnu/stubs-64.h \ - /usr/include/gnu/stubs.h \ - /usr/include/stdc-predef.h \ - /usr/include/stdio.h \ - /usr/include/stdlib.h \ - /usr/include/sys/cdefs.h \ - /usr/include/sys/select.h \ - /usr/include/sys/types.h \ - /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/stdarg.h \ - /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/stdbool.h \ - /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/stddef.h - - -/usr/include/sys/types.h: - -/usr/include/stdio.h: - -/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/stdarg.h: - -/usr/include/gnu/stubs.h: - -/usr/include/features.h: - -/usr/include/bits/waitstatus.h: - -/usr/include/endian.h: - -/usr/include/bits/types/timer_t.h: - -/usr/include/stdlib.h: - -/usr/include/bits/types/time_t.h: - -/usr/include/bits/types/struct_timeval.h: - -/usr/include/bits/types/struct_timespec.h: - -/usr/include/sys/select.h: - -/usr/include/bits/types/struct_FILE.h: - -/usr/include/bits/typesizes.h: - -/usr/include/bits/types/cookie_io_functions_t.h: - -/usr/include/bits/types/clockid_t.h: - -/usr/include/bits/types/clock_t.h: - -/usr/include/bits/pthreadtypes.h: - -/usr/include/bits/floatn.h: - -/usr/include/bits/types/__mbstate_t.h: - -/usr/include/bits/pthreadtypes-arch.h: - -/usr/include/bits/wordsize.h: - -/usr/include/bits/uintn-identity.h: - -/usr/include/bits/types/__fpos_t.h: - -/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/stdbool.h: - -/usr/include/bits/long-double.h: - -/usr/include/bits/floatn-common.h: - -/home/andrew/src2/stack.h: - -/usr/include/bits/types/sigset_t.h: - -/usr/include/bits/stdlib-float.h: - -/usr/include/bits/endianness.h: - -/usr/include/bits/libc-header-start.h: - -/usr/include/alloca.h: - -/usr/include/bits/atomic_wide_counter.h: - -/usr/include/bits/waitflags.h: - -/usr/include/bits/endian.h: - -/usr/include/bits/types/__sigset_t.h: - -/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/stddef.h: - -/home/andrew/src2/stack.c: - -/usr/include/gnu/stubs-64.h: - -/usr/include/bits/struct_mutex.h: - -/usr/include/bits/stdint-intn.h: - -/usr/include/bits/types/__FILE.h: - -/usr/include/bits/types/FILE.h: - -/usr/include/features-time64.h: - -/usr/include/bits/select.h: - -/usr/include/bits/types/__fpos64_t.h: - -/usr/include/bits/stdio_lim.h: - -/usr/include/bits/thread-shared-types.h: - -/usr/include/bits/struct_rwlock.h: - -/usr/include/bits/byteswap.h: - -/usr/include/bits/time64.h: - -/usr/include/sys/cdefs.h: - -/usr/include/stdc-predef.h: - -/usr/include/bits/timesize.h: - -/usr/include/bits/types.h: diff --git a/build/CMakeFiles/stack.dir/compiler_depend.ts b/build/CMakeFiles/stack.dir/compiler_depend.ts deleted file mode 100644 index b379ebe..0000000 --- a/build/CMakeFiles/stack.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for compiler generated dependencies management for stack. diff --git a/build/CMakeFiles/stack.dir/depend.make b/build/CMakeFiles/stack.dir/depend.make deleted file mode 100644 index 63dba03..0000000 --- a/build/CMakeFiles/stack.dir/depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty dependencies file for stack. -# This may be replaced when dependencies are built. diff --git a/build/CMakeFiles/stack.dir/flags.make b/build/CMakeFiles/stack.dir/flags.make deleted file mode 100644 index 4bea55c..0000000 --- a/build/CMakeFiles/stack.dir/flags.make +++ /dev/null @@ -1,10 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 4.1 - -# compile C with /usr/bin/cc -C_DEFINES = - -C_INCLUDES = - -C_FLAGS = - diff --git a/build/CMakeFiles/stack.dir/link.txt b/build/CMakeFiles/stack.dir/link.txt deleted file mode 100644 index 398b104..0000000 --- a/build/CMakeFiles/stack.dir/link.txt +++ /dev/null @@ -1,2 +0,0 @@ -/usr/bin/ar qc libstack.a CMakeFiles/stack.dir/stack.c.o -/usr/bin/ranlib libstack.a diff --git a/build/CMakeFiles/stack.dir/progress.make b/build/CMakeFiles/stack.dir/progress.make deleted file mode 100644 index 8c8fb6f..0000000 --- a/build/CMakeFiles/stack.dir/progress.make +++ /dev/null @@ -1,3 +0,0 @@ -CMAKE_PROGRESS_1 = 3 -CMAKE_PROGRESS_2 = 4 - diff --git a/build/CMakeFiles/stack.dir/stack.c.o b/build/CMakeFiles/stack.dir/stack.c.o deleted file mode 100644 index 9d8265d1cf7c23b86ad91cf3d34f6c7ec39d56dd..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 2280 zcmbtW&r4KM6h3b>ol2XjgbH1}Hf2x`$1+4D#$@yn5n)XbC^e2x4d)j#Pt?c?v~Ze@ zM2i+JTKX4=i^zc%(V}&20|UVp*2Y-`cE0=Wow+?`RUh1Y&iT%dd*__{#3!-qLjl7e z1%s|o%~CAU+JTxL6>5}PsfFTp@w>hBBm6$d55pwN1JYbDI#+ja?}Vi#`)Ju}XFcvV&@E{d9ViR@?P(5v#;U&Td2@uN6?x$HJ? z;2t}dygJnj*(F)JC{7Bk(@Jd5JJU-It;hDN=kbMbDH37(?AouM8Rj2U*=f;Jb$w~q zST4_g(<%NLG(0%iXLb(Xh@UefJyy3BF}u6Ed%Aif7jaugBQKK|+Rb4UAfpUU&BXB8 zZR`V#ha+UnhmH1@=HMy^cQA(qoW?eAB>X%u*xEG80c^t851uiEP5A=@A^`qT@Qf4K zlz*g_{|G$eE;i*4+^*)o0ncd1ru=tm`R~9p`mrhhoaYBs59mW9{oJqTYp8aq<~_*j zF^w0!V6K%H9-<%UC*oC{=nZqHc-4zHW&9LNK=g`bCoj}_43Z&w#PU3^dUYbqBmN6Z zK=h2|WnSQafn7{-?gHhqIhxEn4&@wY zh9;bp<2tvHiW-dLo)GU2@9g)!hhB|u()gDe->mVUH6A@zb%Gce1GVw)6yK)tdY!Wx zuh%g-7YN8D4BnzrQM{VleIKvp^VG+y`MmY~PfjZ>@1zoz z>&&}kO(fg|S>uHQS;=fV?PQqCWL?MNZ~KB6p|qzmvsNyj%{h4AyeMtFmsrZKOf(+e|AjK ch9s}T&>+iInWL=L%kP!{m!ztZp5o8{1Nn6>WB>pF diff --git a/build/CMakeFiles/stack.dir/stack.c.o.d b/build/CMakeFiles/stack.dir/stack.c.o.d deleted file mode 100644 index 2ab10ef..0000000 --- a/build/CMakeFiles/stack.dir/stack.c.o.d +++ /dev/null @@ -1,34 +0,0 @@ -CMakeFiles/stack.dir/stack.c.o: /home/andrew/src2/stack.c \ - /usr/include/stdc-predef.h /home/andrew/src2/stack.h \ - /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/stdbool.h \ - /usr/include/stdio.h /usr/include/bits/libc-header-start.h \ - /usr/include/features.h /usr/include/features-time64.h \ - /usr/include/bits/wordsize.h /usr/include/bits/timesize.h \ - /usr/include/sys/cdefs.h /usr/include/bits/long-double.h \ - /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \ - /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/stddef.h \ - /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/stdarg.h \ - /usr/include/bits/types.h /usr/include/bits/typesizes.h \ - /usr/include/bits/time64.h /usr/include/bits/types/__fpos_t.h \ - /usr/include/bits/types/__mbstate_t.h \ - /usr/include/bits/types/__fpos64_t.h /usr/include/bits/types/__FILE.h \ - /usr/include/bits/types/FILE.h /usr/include/bits/types/struct_FILE.h \ - /usr/include/bits/types/cookie_io_functions_t.h \ - /usr/include/bits/stdio_lim.h /usr/include/bits/floatn.h \ - /usr/include/bits/floatn-common.h /usr/include/stdlib.h \ - /usr/include/bits/waitflags.h /usr/include/bits/waitstatus.h \ - /usr/include/sys/types.h /usr/include/bits/types/clock_t.h \ - /usr/include/bits/types/clockid_t.h /usr/include/bits/types/time_t.h \ - /usr/include/bits/types/timer_t.h /usr/include/bits/stdint-intn.h \ - /usr/include/endian.h /usr/include/bits/endian.h \ - /usr/include/bits/endianness.h /usr/include/bits/byteswap.h \ - /usr/include/bits/uintn-identity.h /usr/include/sys/select.h \ - /usr/include/bits/select.h /usr/include/bits/types/sigset_t.h \ - /usr/include/bits/types/__sigset_t.h \ - /usr/include/bits/types/struct_timeval.h \ - /usr/include/bits/types/struct_timespec.h \ - /usr/include/bits/pthreadtypes.h /usr/include/bits/thread-shared-types.h \ - /usr/include/bits/pthreadtypes-arch.h \ - /usr/include/bits/atomic_wide_counter.h /usr/include/bits/struct_mutex.h \ - /usr/include/bits/struct_rwlock.h /usr/include/alloca.h \ - /usr/include/bits/stdlib-float.h diff --git a/build/Makefile b/build/Makefile deleted file mode 100644 index b3da43c..0000000 --- a/build/Makefile +++ /dev/null @@ -1,222 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 4.1 - -# Default target executed when no arguments are given to make. -default_target: all -.PHONY : default_target - -# Allow only one "make -f Makefile2" at a time, but pass parallelism. -.NOTPARALLEL: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /usr/bin/cmake - -# The command to remove a file. -RM = /usr/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /home/andrew/src2 - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /home/andrew/src2/build - -#============================================================================= -# Targets provided globally by CMake. - -# Special rule for the target edit_cache -edit_cache: - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running CMake cache editor..." - /usr/bin/ccmake -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) -.PHONY : edit_cache - -# Special rule for the target edit_cache -edit_cache/fast: edit_cache -.PHONY : edit_cache/fast - -# Special rule for the target rebuild_cache -rebuild_cache: - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running CMake to regenerate build system..." - /usr/bin/cmake --regenerate-during-build -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) -.PHONY : rebuild_cache - -# Special rule for the target rebuild_cache -rebuild_cache/fast: rebuild_cache -.PHONY : rebuild_cache/fast - -# The main all target -all: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /home/andrew/src2/build/CMakeFiles /home/andrew/src2/build//CMakeFiles/progress.marks - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 all - $(CMAKE_COMMAND) -E cmake_progress_start /home/andrew/src2/build/CMakeFiles 0 -.PHONY : all - -# The main clean target -clean: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 clean -.PHONY : clean - -# The main clean target -clean/fast: clean -.PHONY : clean/fast - -# Prepare targets for installation. -preinstall: all - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 preinstall -.PHONY : preinstall - -# Prepare targets for installation. -preinstall/fast: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 preinstall -.PHONY : preinstall/fast - -# clear depends -depend: - $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1 -.PHONY : depend - -#============================================================================= -# Target rules for targets named stack - -# Build rule for target. -stack: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 stack -.PHONY : stack - -# fast build rule for target. -stack/fast: - $(MAKE) $(MAKESILENT) -f CMakeFiles/stack.dir/build.make CMakeFiles/stack.dir/build -.PHONY : stack/fast - -#============================================================================= -# Target rules for targets named sortStation - -# Build rule for target. -sortStation: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 sortStation -.PHONY : sortStation - -# fast build rule for target. -sortStation/fast: - $(MAKE) $(MAKESILENT) -f CMakeFiles/sortStation.dir/build.make CMakeFiles/sortStation.dir/build -.PHONY : sortStation/fast - -sortStation.o: sortStation.c.o -.PHONY : sortStation.o - -# target to build an object file -sortStation.c.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/sortStation.dir/build.make CMakeFiles/sortStation.dir/sortStation.c.o -.PHONY : sortStation.c.o - -sortStation.i: sortStation.c.i -.PHONY : sortStation.i - -# target to preprocess a source file -sortStation.c.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/sortStation.dir/build.make CMakeFiles/sortStation.dir/sortStation.c.i -.PHONY : sortStation.c.i - -sortStation.s: sortStation.c.s -.PHONY : sortStation.s - -# target to generate assembly for a file -sortStation.c.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/sortStation.dir/build.make CMakeFiles/sortStation.dir/sortStation.c.s -.PHONY : sortStation.c.s - -stack.o: stack.c.o -.PHONY : stack.o - -# target to build an object file -stack.c.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/stack.dir/build.make CMakeFiles/stack.dir/stack.c.o -.PHONY : stack.c.o - -stack.i: stack.c.i -.PHONY : stack.i - -# target to preprocess a source file -stack.c.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/stack.dir/build.make CMakeFiles/stack.dir/stack.c.i -.PHONY : stack.c.i - -stack.s: stack.c.s -.PHONY : stack.s - -# target to generate assembly for a file -stack.c.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/stack.dir/build.make CMakeFiles/stack.dir/stack.c.s -.PHONY : stack.c.s - -# Help Target -help: - @echo "The following are some of the valid targets for this Makefile:" - @echo "... all (the default if no target is provided)" - @echo "... clean" - @echo "... depend" - @echo "... edit_cache" - @echo "... rebuild_cache" - @echo "... sortStation" - @echo "... stack" - @echo "... sortStation.o" - @echo "... sortStation.i" - @echo "... sortStation.s" - @echo "... stack.o" - @echo "... stack.i" - @echo "... stack.s" -.PHONY : help - - - -#============================================================================= -# Special targets to cleanup operation of make. - -# Special rule to run CMake to check the build system integrity. -# No rule that depends on this can have commands that come from listfiles -# because they might be regenerated. -cmake_check_build_system: - $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 -.PHONY : cmake_check_build_system - diff --git a/build/advancBalancStap b/build/advancBalancStap deleted file mode 100755 index 8c61f8e9e1ed6e97c659a58a5a37f5d96771fead..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 16080 zcmeHOeQ;FO6~DWDMI|2~w5SNH0uwD+0wifvs4u{Vmku8hh=mb-F4>o4hh(#}c|p)J z2BVgpC=+eRs#B+qGxo#Q4nxIKEf~d*+Of`NY90RQw6wxZ(rAl-HGZ-EoqO+jdHdKn z{i8GOw0maWJ@@?1IrpA>-hFTH+jrkxku~+fKtM1}5ML7{?JrY^p%sl^)fF&9)QS?6 zbHwFhGUSO8Q+h)&Xcd)B$mK;ECz$-6)p|dlt?ig|gv7~jJgU?kFc*3pPDHf-t8|$&Y+MiUA{1=WaeH!%1x$1=`+i7d5`w%*PQ)GB){X@@3{7JIR!*|%{iYG zJ{^rZpMGvYM`XxS2)|#y_Ve?3+MYS}K}4L6saKM8J`YLMO_O`hHlB21UB*b*dqog z7S;zuAV&`RWU`%sgH8wezq9qi_dn`*_1*QxmK#@nnmH7G>R5JBdwg3>)uQ%TMSDEa zy|ZFxZB0c@Rk*7&yhKn~B{--*HSUn;L7j;3)}|;AQDXk$Dge{{Amo~H@P6PS9DXVW zkguKcad5KDXMgKBIE^o#{Wr$Je+oQ=!%vF<mlKO8M6w%I%j$BX&D*W!w(V9+G~O;+Qnn3)RJ)xJ9ntpo&Su!)6gQJ$ z%CS14aJ8)Fol&bLo`|-`@32L)vP-7o38zJnF`fPzv3gCzij~%qaFttII#yj0t`=6q zrnOegPT8&TF2_!7TD!8nGhuIvZfm#EM{7rCLicJZ)4YZlVh}SlfHH^~PbKEDKGcN~ zfZm23PqrEHIHtrz(W$X#AAA_obAs5VH!1BDC}GEm4sAp?aB{4ZqSOzE6Y%-;8k%)Uu4VJ&RlJKzMf8MF75qN8$n+3Mc_ z&dz@mW$9c4HImy%H+(z`n*TD%w3HdnNcnk^X{j|lAmsxj(-LcVzm%UQnU*-iPe}Pm zl4)r(+%M(FNTwytaF3K9BAJ#U!%4^#@8b6x(u22}>A#r0Cr&kPiYy*j{D%3!@+Nee zojDQ~;%rN}bgo)S0*|8s^MOg*h+RAC%*0UNf)Ne%g6#3qxjkrG9Mv55*Gl{9CB&{i zXQoe?Fa7NX^QF-VX5ck*@SHOP4Lq(JD9RphDV@7&%%9@xS^hcHqI+qR*}MD>s+#GO zPO;gy{2d6{nQbVCnlYHyCcTYn;FhCf@gfdGw2aBr-f$~yo6rVMRLD&49!htg82SV$ zH`9^P*CM9_uSd?(7=}-y=!={+n=@u#WXKF;N}m(U%ANA_usfX@=V3Q@FYsffN2sCE z^gCwy^`WQH;qd)=dMG_I&^x-@S%~7USnuf7&XnHKTb$aF&E!j-zlG=C$eEtqXUd&r zh*yl%u%+BOVRV#UWr~Xqs$l=3f^Ad*I$OI2;+m zbwD9ZCY8cSd>y*<%NkJGEIrqP)Bl^L=lXVTD5V5>vweXr~Yt>s_DNX5|0 zP*5N=G}j;`r^~6mkrOY{li1KR9;4FdnojI3gZYrzM-1nx5%&QSn@}&~k*9adHqAb| zWJ$C0r`asd=|?(h zOmOWj%}AAX`z*tNMn|TyYYM$`eLd=GTKt)zb!ZvGz{uVEoO@>jSfD}%3K=M5ppbz= z1_~J{WT23NLI(cNGC*%_G7o0a2gWq;4o81Y%WGuiAY_+Ic?c!qfkycYZ<_-630orNFx7Vt;FiRj%ZQQ(dZBCxY8aM{!;Mg7nb zPJ0E8qt69ouxg5Y^)wIFDjc;s7Ew}GUoz|Kr5D{^)FW=V^!jU-&byM#$(Q1O6tUh( zebtqe-4|S0JbA*70J@O+ZvsAxF?<``)d%;HTI#a}xy+2m|rvdCu#&!Ji zzW`t~|H}|hqk)Qt{)GDUV2R-S1FKFF&Vq-Jj)Px}@#eE%An{^Rt>cmZZJ>>7#<8dW zF!Hst9yrDC&*xU)Ay0f<-41+OaF*bC%Q*etG)MKw{sXcjmzK88^A-_ z#>?IXex(=C^>e_d2eI?lcb$u9Y)3TFydv6;a-$PXhMTc>9sAkAtyNpr)vaw!N7>o-O=S)1xstch51>$|~w)@gfs(zdsszx&-a z!DjX^+Q3fx>s?!FE@9uUw%+HU+hp*zh}rG7V`C7_=+llxov5H4_Hn%#KgY+vYu{B? z3AG8|1>`U~lWOCC4yrco=RlT4-Ks73=k33@VqKk9TQm`)z4;C6VTF$ftnMy5roR)& zX)4|o=}0=eFp@+JO>OJy(#^{62a?@gZ9uW#--@hTWqr}^{@hOua{9249Y=_8*RBpH zx((b(Dc;7lM5kkiTNB;kWU4c1rw~urg|>Ca@y$v+Cc^k?!A>QGG;E6^vT$ry0*xx} zq?Bfdo$88rCUOJ|x|H1>B?nzgwmZ}!0t-9#PL%Q-hEtvLjE3ztt0fifu&uTjd|A?A z)vai#aH6fs--@PEQ3Oo>Tt_$2j(9U-=tRpX!m>NnG;%D$&7B<`b^=-Xw-EiF&>AJE zTjTGdm>U{r#_JcBv7ao*zh5srn9pNF&H4Vua2+bR^xgi)`!0{|$<|8^5dMKR567R; z{WItOd0ps_e|;jb3^<4X|260J4y*n1XCD+^|B&`$-p`Jj`hQSshC{NHDW*idtS|GxuXf(V}`+-2QX-WS}Vm8Ev|3rgF+poZt9{@ z+y89e{}O-I!Q?U`S75dM%$i-xti63L9ZcJwUGcxpXFe^*!%jU*qo3yE?7m{xAl7XE zTt~1RWj($iv-q*Ozn%EdX{KD z^CQ?Z2<=(Q{AljS2g0F9xHZ_+Xzm&3AGEgGrHAVJ{jbJ@`qW3A;-5jMhK7!t2Tq+G zJ!mG6St%=NrV^=RiN54foR+bUhsguwW;cqFQ3t1bVuaS)*#;Q5M#z|s8@s#OI~Le^ z4|5p6UQ8!8$LC^0-5V~m1219g2hSMBr0lU1!U6Wn;2AqGDf>t({x*2VB}~d5yU>h( z2A;7Sld@lI#lHm4=*Oh&Hv>DUD4-7O=vyPo*4C_2%es-(tr{_gHlnv>f3mTSN*vc;#Gg1hj`V8dWctjAgel4 z@SF*jUL}w@rB&R#V|nhhN7hxxbI6*gR>{hi3I(^wT(RW27Ju7^MGNJ6vN&axE2Xkq z;aA=g8Qk2JYZa&9$`kybFgYBhMK5&>%7rECu56*DxR2hPMvAkH61pb^M7QF^` z27>mn1m7mtN)*EzNkf>%cY~b&8jtS_ITJi|sQvfoBv9QuPb0L=&vQH5^};@gJ0=A-(z2$Hc72txl5tKwDvqV`6}Q+Xg$ qo?{bp=utQx-*UKjOwkKTp2R|fOxI+#uoe~HC;uNsKrrB1myL1?!9NT`;s{Q z!r(?%ucWzJ~*=SGZj+!KFytB8YpbOd)(e z;u~T(_+p7ExnB`TRVgdVrzILEnC$jxxszV6^_X&mM9FTbGFvymROo(?-7qrJypujX zLV0A$@@#uvB^M4l&#iE#xptJBbcK?qm*&$}ZP%eG+Yw84-P*2O+hr*QL~>0zpOh0i z*6VyasUI>bet8zcY1g6coOFuTXG(2QAxg*C8;Bc7y%H7Kbg|vWkE}4&o$)d6*LF-f z&h^@^+^ZCvG_38Ia(mx~9p&>sEj&Cn==O%XezWy;W2!HQ%*kvtMq_Q|+FIdm6`d3d z%U!~i$GaUo>5j!gmxJs*tv|1eq+fXP+VlIW=Vq4g8QXN~(yWH)rUmn6HH0e~qD?K^ zE4D9OP_ba1FA?)q3JR+f2eqgA?G>%4Qz3kFZIHVtG3RL_fH6)G{Eb84HxGe73EYdr zS!Mzl%>U>i@ZbI5m%2v{Iiu3oilxmoF(m#xk1uU7iz z3v*S?8Z#V;M>aZxD4yq_H(%cxOE}V;H9U~c( z4jO|l$m&6Pu#JsIafypXTx0uw@Dzq;k=UX6mI=|3-3Q${f5q2d6R2g~tKS19abIi(l1f zywDitQsP%N!u8Z5fwCN2{(dPnF+K-Z_qh^yb8zy-rQEM-gmI1tneC^u5QO6bWXnRo zsuF%h7A;f?87O3+kby!53K=M5;Qt{5pL!-BDepkL&db@mZbEGwD&7phLTsM&ZENHEa`+oBOPB=<0DOQCCOW-JVIUq<2VD=-({$ z=T{P$e%VN#GY))wt8t*O$Z#DoPF%Le!ojoJL5ba6=b2R9Z%^^HF8vZ>(K5HzXj}Rq zRgL6F)@UQO^nEb)xO$v3A#~=*us@^fy7y3jyokdu>iT)|*RvVAweW!pHQPu&lrfSm z-O1Y1sle%E;F6IF063bt0y%6CTNZ>lJ+B5Xw!2yHZ%7mLS|7St zZVks-v>b=_+lQ!ujc8#ZS~!+$Ih+a{ZtHXzyUF*~%eHMK1KmdhU6icMWcUD|IT|=k ze9taiZ$zV-JZ8Ako>#?^3ae%SHr?_Mz-C%E4Zvnt;|E}~JUf4kaW(*--ZC*&+hwHI zbgM2Nr-GI?ZGrI1fcZ^gmhWR@fbM5Y4S4UgmG-)jk9QHiE`AggG zy@@-ML2K=SldTV(EVr(4Tx)roob10%o`bH;UCRNdX8H(5zrO26qU)%48>xHy)IDT8 za<&Y&NAk@}7wM*XwJLQS|{s zFZ9_qx`Cc&e~Yufz5olQkby!53K=M5ppbz=1_~MYnlnJ}Ytm1oUrxW0-j{yu#COxL zcuzcX;=3nW)BDq}pJ-d;6;nfAwCTF8XmJ>n-Uami)3$emwx6@@R?tU2vF%RK4?(*@ zr+seQ#aQpn{g-W*gVul=pwEEPKLx)5Z3i87-nM@MIu-O7C>475NyYWx2I1OX=DP06 z5hWdv5ia)vpv`HdP(4DvTAG6DJREl*rVheO%T|<*|CZ;9Z6&SZ)(MMe%$;%r!DM?6 zj^DvPNI+F-*<)ljD7Hw1%f5-`Ij?_pZsOCn0#x+T-$JLtqD^D!l(rK0^Sa|M00y zP(<)PJbE6X!t&2A+cDzP^bCcN+vr>6Y;NH2`3=x&K-4KTi22f}f4`@9E^+sDfr*&n!)s(7s^`8%{d{?C^@=NXTW zl3%Fhcx@ngj#~!xUpVppac9#D^f*|d>Ft`=)cR|5obp*8*l`?X@Xz~G!OHR;&STuAg69DZi@y-gOb-2c z2z(^sA58yxiH{bev{3%X0v|IpeoFUC{-*)lH-sPm5co#m)Gue=?g#FLKWB*nzsfyc z@VI694#EXSomV0JpGOM#VEy`u#7B#RI)0vSo(Eor+4O!tdsg&LtHidPuhz*Wp8~%j7tr-m zH~hQtFQDW87l~Nh+Gqu>XspQ>!d`ala|bo6?_688X4P_REXSN+1`Kn>hN?9I)2QAc z%$2LxEvs5>u3NEUW1z;Ysam!=V9G7=e%`}Q+tr&RkuAJOK2I=UhkRCw4ewvI$-ODE zO>M}}8c;joNJGSmpbMcb!i5WRpQr2G$e$I?6KX$x7LYxNC9Jx&F_j$A z9BWn|1?1_d-TZlwX;KhsFaCgy`DQo~GwXv*VcN96Y8|xjfq~hQh=lbA1bMEai9lns z^#JeJ)6D%IA+J3Xd9!d6 zCmv|Df}23CxT5u3Yl>MB-{z(kUvoUx9El?~Ul!Wb62-SI(XjC0(}qaASxCkDAR_aH zA83M8MXk7!Y>mVd7dm@%urXrR zhhfW{4y$U}stPN(S=pPxcsz)J$)4+ICfFDaA%++{WyF_ft&$8fU`m9Okj_EYH3}FHo3HVMR@O9%Q%*6-*J?_J{g@kM&76x6tn^ zUIWB9{_ueM{_k*kcl z7H8?x4txGRWqK+bm~zDS?DnS)dtUc2<>w;ScaHz(v_0ovc(tac(=^M(X}=c&>Ob4_ zx|C^{4K;Pz|K4HW;Z=%EA0_8Gg|8n&e?TR7{&0TB>19Pto$db#cqtBj+h)Jl;_oG$ z?J>{vudt=HJ=^p1WLE`16xLH*KhJnC1ayhnp4a=??`C!Xc^I%AkAu%(ODb&7--&h3 z0*F$sNcPP3Ouv96*PfprGTQ!*tfi{39aA@qbM5_prRSfmD95R|{{Clq7?UrKpVxKk zhp>10qje;;uhrSDV0-8NOS)8YDUV$xQRimuuuBI<{}0eO<9_q}I}#Yjt}NBrn5XDi YhjVV1b!pi Date: Sat, 20 Dec 2025 21:06:24 +0300 Subject: [PATCH 15/16] =?UTF-8?q?=D0=9F=D0=B5=D1=80=D0=B5=D0=BC=D0=B5?= =?UTF-8?q?=D1=81=D1=82=D0=B8=D0=BB=20=D0=B2=D1=81=D1=91=20=D0=B2=20=D0=BF?= =?UTF-8?q?=D0=B0=D0=BF=D0=BA=D1=83?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CMakeLists.txt | 17 ----------- sortStation.c | 82 -------------------------------------------------- stack.c | 76 ---------------------------------------------- stack.h | 11 ------- 4 files changed, 186 deletions(-) delete mode 100644 CMakeLists.txt delete mode 100644 sortStation.c delete mode 100644 stack.c delete mode 100644 stack.h diff --git a/CMakeLists.txt b/CMakeLists.txt deleted file mode 100644 index ead3c7c..0000000 --- a/CMakeLists.txt +++ /dev/null @@ -1,17 +0,0 @@ -cmake_minimum_required(VERSION 3.25) - -project(advancBalancStap C) - -add_library(stack stack.c) - -add_executable(advancBalancStap advancBalancStap.c) - -target_link_libraries(advancBalancStap PRIVATE stack) - -project(sortStation C) - -add_library(stack stack.c) - -add_executable(sortStation sortStation.c) - -target_link_libraries(sortStation PRIVATE stack) \ No newline at end of file diff --git a/sortStation.c b/sortStation.c deleted file mode 100644 index 077e818..0000000 --- a/sortStation.c +++ /dev/null @@ -1,82 +0,0 @@ -#include "stack.h" -#include -#include -#include -#include - -// переносит все операторы от ")" до "(" из стека в очередь по индексу ind -int moveBtwStap(struct Stack* stack, char* queue, int ind) -{ - int index = ind; - char operator = pop(stack); - while (operator != '(' && operator != '\0') { - index++; - // printf("%s\n", queue[ind]); - queue[index] = operator; - operator = pop(stack); - } - return index; -} - -char* postfNotation(char* str, int lenght) -{ - char* queue = (char*)malloc((lenght + 1) * sizeof(char)); - int indQueue = 0; - struct Stack* operators = new(); - - for (int ind = 0; ind < lenght; ind++) { - if (str[ind] == '-' || str[ind] == ')' || str[ind] == '+' || str[ind] == '*' || str[ind] == '/') { - if (str[ind] == ')') { - indQueue = moveBtwStap(operators, queue, indQueue); - } else { - if (str[ind] == '*' || str[ind] == '/') { - while (!isEmpty(operators) && (peek(operators) == '*' || peek(operators) == '/')) { - indQueue++; - queue[indQueue] = pop(operators); - } - push(operators, str[ind]); - } else if (str[ind] == '+' || str[ind] == '-') { - while (!isEmpty(operators) && (peek(operators) == '-' || peek(operators) == '+' || peek(operators) == '*' || peek(operators) == '/')) { - indQueue++; - queue[indQueue] = pop(operators); - } - push(operators, str[ind]); - } - } - } else if (str[ind] == '(') { - push(operators, str[ind]); - } else if (str[ind] != ' ' && str[ind] != '\n') { - indQueue++; - queue[indQueue] = str[ind]; - } - } - - while (!isEmpty(operators)) { - char operator = pop(operators); - if (operator != '(') { - indQueue++; - queue[indQueue] = operator; - } - } - indQueue++; - queue[indQueue] = '\0'; - deleteStack(operators); - return queue; -} - -int main(int argc, char** argv) -{ - char str[1000]; - printf("Введите строку: "); - fgets(str, sizeof(str), stdin); - int lenght = strlen(str); - - char* results = postfNotation(str, lenght); - for (int ind = 0; ind < lenght; ind++) { - printf("%c ", results[ind]); - } - printf("\n"); - free(results); - - return 0; -} \ No newline at end of file diff --git a/stack.c b/stack.c deleted file mode 100644 index 3e8720f..0000000 --- a/stack.c +++ /dev/null @@ -1,76 +0,0 @@ -#include "stack.h" -#include -#include -// #include - - -struct StackNode { - // значение - char value; - // ссылка на следующую "ячейку" - struct StackNode* next; -}; - -// делаем ссулку на голову -struct Stack { - struct StackNode* head; -}; - -// создаем пустую тсруктуру с пустой ссылкой на нулевую голову -struct Stack* new(void) -{ - struct Stack* stack = calloc(1, sizeof(*stack)); - return stack; -} - -// положить элемент -void push(struct Stack* stack, char value) -{ - // выделяем память для нового стека - struct StackNode* node = (struct StackNode*)malloc(sizeof(struct StackNode)); - - // пихаем в него значение - node->value = value; - - // пихаем в него ссылку на предыдущий стек - node->next = stack->head; - - // делаем ссылку на этот же стек ссылкой на голову - stack->head = node; -} - -bool isEmpty(struct Stack* stack) -{ - return stack->head == NULL; -} - -char pop(struct Stack* stack) -{ - if (isEmpty(stack)){ - return '\0'; - } - // получаем ссылку на текущую голову(стек) - struct StackNode* oldNode = stack->head; - - // переприсваиваем ссылку головы на предыдущую от текущего стека - stack->head = oldNode->next; - - // вытаскиваем значение из текущего стека - char result = oldNode->value; - free(oldNode); - return result; -} - -char peek(struct Stack* stack) -{ - char result = stack->head->value; - return result; -} - -void deleteStack(struct Stack* stack) -{ - while (!isEmpty(stack)) { - pop(stack); - } - free(stack); -} diff --git a/stack.h b/stack.h deleted file mode 100644 index cde3aab..0000000 --- a/stack.h +++ /dev/null @@ -1,11 +0,0 @@ -#pragma once -#include - -typedef struct Stack Stack; - -Stack* new(void); -void push(Stack* stack, char value); -char pop(Stack* stack); -bool isEmpty(Stack* stack); -char peek(struct Stack* stack); -void deleteStack(struct Stack* stack); From 8f3268812865ab1280b197365399e8d01116f797 Mon Sep 17 00:00:00 2001 From: Andrew-Kochanov Date: Sat, 20 Dec 2025 21:07:22 +0300 Subject: [PATCH 16/16] =?UTF-8?q?=D0=9F=D0=B0=D0=BF=D0=BA=D0=B0=20=D1=81?= =?UTF-8?q?=D0=BE=20=D0=B2=D1=81=D0=B5=D0=BC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- sortStans/CMakeLists.txt | 9 +++++ sortStans/sortStation.c | 82 ++++++++++++++++++++++++++++++++++++++++ sortStans/stack.c | 78 ++++++++++++++++++++++++++++++++++++++ sortStans/stack.h | 11 ++++++ 4 files changed, 180 insertions(+) create mode 100644 sortStans/CMakeLists.txt create mode 100644 sortStans/sortStation.c create mode 100644 sortStans/stack.c create mode 100644 sortStans/stack.h diff --git a/sortStans/CMakeLists.txt b/sortStans/CMakeLists.txt new file mode 100644 index 0000000..f3c5454 --- /dev/null +++ b/sortStans/CMakeLists.txt @@ -0,0 +1,9 @@ +cmake_minimum_required(VERSION 3.25) + +project(sortStation C) + +add_library(stack stack.c) + +add_executable(sortStation sortStation.c) + +target_link_libraries(sortStation PRIVATE stack) diff --git a/sortStans/sortStation.c b/sortStans/sortStation.c new file mode 100644 index 0000000..077e818 --- /dev/null +++ b/sortStans/sortStation.c @@ -0,0 +1,82 @@ +#include "stack.h" +#include +#include +#include +#include + +// переносит все операторы от ")" до "(" из стека в очередь по индексу ind +int moveBtwStap(struct Stack* stack, char* queue, int ind) +{ + int index = ind; + char operator = pop(stack); + while (operator != '(' && operator != '\0') { + index++; + // printf("%s\n", queue[ind]); + queue[index] = operator; + operator = pop(stack); + } + return index; +} + +char* postfNotation(char* str, int lenght) +{ + char* queue = (char*)malloc((lenght + 1) * sizeof(char)); + int indQueue = 0; + struct Stack* operators = new(); + + for (int ind = 0; ind < lenght; ind++) { + if (str[ind] == '-' || str[ind] == ')' || str[ind] == '+' || str[ind] == '*' || str[ind] == '/') { + if (str[ind] == ')') { + indQueue = moveBtwStap(operators, queue, indQueue); + } else { + if (str[ind] == '*' || str[ind] == '/') { + while (!isEmpty(operators) && (peek(operators) == '*' || peek(operators) == '/')) { + indQueue++; + queue[indQueue] = pop(operators); + } + push(operators, str[ind]); + } else if (str[ind] == '+' || str[ind] == '-') { + while (!isEmpty(operators) && (peek(operators) == '-' || peek(operators) == '+' || peek(operators) == '*' || peek(operators) == '/')) { + indQueue++; + queue[indQueue] = pop(operators); + } + push(operators, str[ind]); + } + } + } else if (str[ind] == '(') { + push(operators, str[ind]); + } else if (str[ind] != ' ' && str[ind] != '\n') { + indQueue++; + queue[indQueue] = str[ind]; + } + } + + while (!isEmpty(operators)) { + char operator = pop(operators); + if (operator != '(') { + indQueue++; + queue[indQueue] = operator; + } + } + indQueue++; + queue[indQueue] = '\0'; + deleteStack(operators); + return queue; +} + +int main(int argc, char** argv) +{ + char str[1000]; + printf("Введите строку: "); + fgets(str, sizeof(str), stdin); + int lenght = strlen(str); + + char* results = postfNotation(str, lenght); + for (int ind = 0; ind < lenght; ind++) { + printf("%c ", results[ind]); + } + printf("\n"); + free(results); + + return 0; +} \ No newline at end of file diff --git a/sortStans/stack.c b/sortStans/stack.c new file mode 100644 index 0000000..3240054 --- /dev/null +++ b/sortStans/stack.c @@ -0,0 +1,78 @@ +#include "stack.h" +#include +#include +// #include + +struct StackNode { + // значение + char value; + // ссылка на следующую "ячейку" + struct StackNode* next; +}; + +// делаем ссsлку на голову +struct Stack { + struct StackNode* head; +}; + +// создаем пустую структуру с пустой ссылкой на нулевую голову +struct Stack* new(void) +{ + struct Stack* stack = calloc(1, sizeof(*stack)); + return stack; +} + +// положить элемент +void push(struct Stack* stack, char value) +{ + // выделяем память для нового стека + struct StackNode* node = (struct StackNode*)malloc(sizeof(struct StackNode)); + + // пихаем в него значение + node->value = value; + + // пихаем в него ссылку на предыдущий стек + node->next = stack->head; + + // делаем ссылку на этот же стек ссылкой на голову + stack->head = node; +} + +bool isEmpty(struct Stack* stack) +{ + return stack->head == NULL; +} + +char pop(struct Stack* stack) +{ + if (isEmpty(stack)) { + return '\0'; + } + // получаем ссылку на текущую голову(стек) + struct StackNode* oldNode = stack->head; + + // переприсваиваем ссылку головы на предыдущую от текущего стека + stack->head = oldNode->next; + + // вытаскиваем значение из текущего стека + char result = oldNode->value; + free(oldNode); + return result; +} + +char peek(struct Stack* stack) +{ + char result = stack->head->value; + return result; +} + +void deleteStack(struct Stack* stack) +{ + if (stack == NULL) { + return; + } + while (!isEmpty(stack)) { + pop(stack); + } + free(stack); +} diff --git a/sortStans/stack.h b/sortStans/stack.h new file mode 100644 index 0000000..cde3aab --- /dev/null +++ b/sortStans/stack.h @@ -0,0 +1,11 @@ +#pragma once +#include + +typedef struct Stack Stack; + +Stack* new(void); +void push(Stack* stack, char value); +char pop(Stack* stack); +bool isEmpty(Stack* stack); +char peek(struct Stack* stack); +void deleteStack(struct Stack* stack);