diff --git a/.DS_Store b/.DS_Store new file mode 100644 index 000000000..3e1039f47 Binary files /dev/null and b/.DS_Store differ diff --git a/README_QRWA.md b/README_QRWA.md new file mode 100644 index 000000000..96b17b709 --- /dev/null +++ b/README_QRWA.md @@ -0,0 +1,428 @@ +# qRWA Smart Contract – Benutzerhandbuch + +## Überblick + +Der **qRWA Smart Contract** (Contract Index: 20) verwaltet die Einnahmenverteilung aus verschiedenen Mining-Quellen an die Inhaber von **QMINE**- und **qRWA**-Token. Alle Einnahmen fließen über drei getrennte Pools, werden automatisch nach festen Regeln aufgeteilt und regelmäßig an berechtigte Halter ausgeschüttet. + +--- + +## Die drei Revenue-Pools + +### Pool A – Qubic Mining (Mined Funds) + +- **Herkunft:** Einnahmen aus dem Qubic-Mining-Betrieb +- **Quellen:** Transfers vom QUTIL-Contract (`SendToMany`) oder von der konfigurierten Pool-A-Revenue-Adresse (QMINE-Issuer / Mining-Wallet) +- **Besonderheit:** Vor der Ausschüttung werden zuerst **Governance-Gebühren** (Strom, Wartung, Reinvestment) abgezogen + +### Pool B – Nutzer & Sonstige + +- **Herkunft:** Alle anderen Einzahlungen, die nicht Pool A oder Pool C zugeordnet sind +- **Quellen:** Transfers von Nutzer-Wallets, sonstigen Contracts oder Spenden +- **Keine Gebühren:** Auf Pool B werden keine Governance-Gebühren erhoben + +### Pool C – Dedicated BTC Mining + +- **Herkunft:** Einnahmen aus dediziertem BTC-Mining +- **Quelle:** Transfers von einer festgelegten **Dedicated Revenue Address** +- **Besonderheit:** Der qRWA-Anteil aus Pool C geht nur an Halter, die eine Mindestmenge QMINE pro qRWA-Share besitzen (Premium-Anforderung, 100k qmine/qRWA) + +--- + +## Einnahmen-Routing (POST_INCOMING_TRANSFER) + +Jede Einzahlung an den Smart Contract wird automatisch dem richtigen Pool zugeordnet: + +| Absender | Ziel-Pool | +|---|---| +| Dedicated Revenue Address | **Pool C** (BTC Mining) | +| QUTIL-Contract oder Pool-A-Revenue-Adresse | **Pool A** (Qubic Mining) | +| Alle anderen Adressen | **Pool B** (Nutzer & Sonstige) | + +--- + +## Wann werden Payouts ausgeschüttet? + +Payouts werden **vollautomatisch** vom Smart Contract ausgeführt — kein Mensch muss einen Knopf drücken. + +| Modus | Wann? | Wie oft? | +|---|---|---| +| **Produktion (Mainnet)** | Jeden **Freitag um 12:00 UTC** | Maximal 1× pro Woche, mindestens 6 Tage Abstand | +| **Testnet** | Automatisch alle **20 Ticks** (~wenige Sekunden) | Sehr häufig, zum Testen | + +> **Wichtig:** Es gibt keinen manuellen Auszahlungsknopf. Wenn der Zeitpunkt erreicht ist und Geld in den Pools liegt, wird automatisch verteilt. Wenn kein Geld in den Pools liegt, passiert nichts. + +--- + +## Werden Payouts sofort ausgezahlt? + +**Ja** — sobald der Smart Contract die Verteilung ausführt, landen die QU **direkt auf deiner Wallet-Adresse**. Es gibt keine Wartezeit, kein Claiming, kein manuelles Abholen. Der Transfer passiert on-chain im selben Tick. + +Allerdings: **Nicht jeder bekommt automatisch etwas.** Es gelten klare Regeln, wer berechtigt ist (siehe unten). + +--- + +## Die Snapshot-Mechanik: Warum zählt nicht dein aktueller Bestand? + +Der Smart Contract verwendet ein **Epoch-Snapshot-System**, um faire Ausschüttungen zu gewährleisten und Manipulationen zu verhindern. + +### Was ist eine Epoche? + +Eine Epoche ist eine feste Zeitperiode im Qubic-Netzwerk (ca. 1 Woche). Jede Epoche hat einen Anfang (`BEGIN_EPOCH`) und ein Ende (`END_EPOCH`). Zwischen diesen Zeitpunkten erstellt der Smart Contract automatisch **Momentaufnahmen** (Snapshots) deines QMINE-Bestands. + +### Der Ablauf in 4 Phasen: + +``` +┌─────────────────── Epoche N ───────────────────┐ +│ │ +│ Phase 1: BEGIN_EPOCH │ +│ ─────────────────── │ +│ SC fotografiert alle QMINE-Halter │ +│ → "So viel QMINE hatte jeder am Anfang" │ +│ → Gespeichert als Begin-Balance │ +│ │ +│ Phase 2: Während der Epoche │ +│ ─────────────────────────── │ +│ Du kannst normal handeln (kaufen/verkaufen). │ +│ Einnahmen fließen in die Revenue-Pools. │ +│ Payouts werden aus den Pools verteilt. │ +│ │ +│ Phase 3: END_EPOCH │ +│ ────────────────── │ +│ SC fotografiert erneut alle QMINE-Halter │ +│ → "So viel QMINE hat jeder am Ende" │ +│ → Gespeichert als End-Balance │ +│ │ +└───────────────────────┬─────────────────────────┘ + │ + ▼ +┌─────────────────── Epoche N+1 ─────────────────┐ +│ │ +│ Phase 4: BEGIN_EPOCH (von Epoche N+1) │ +│ ───────────────────────────────────── │ +│ Die Snapshots aus Epoche N werden jetzt │ +│ in die Payout-Buffer kopiert. │ +│ → Ab jetzt zählen diese für Auszahlungen. │ +│ │ +│ Gleichzeitig: Neue Snapshots für Epoche N+1 │ +│ werden erstellt. │ +│ │ +└─────────────────────────────────────────────────┘ +``` + +### Was bedeutet das für dich? + +- **Du musst QMINE mindestens eine volle Epoche lang halten**, bevor du Payouts bekommst +- Wer QMINE erst kurz vor dem Payout kauft, ist noch in keinem Snapshot → kein Payout +- Das verhindert, dass jemand kurz vor Freitag QMINE kauft, den Payout kassiert und sofort wieder verkauft + +--- + +## Wer bekommt was? — Die Berechtigungsregeln + +### Regel 1: QMINE-Halter (Payout-Typ 0) + +Du bekommst einen Anteil am **QMINE-Dividenden-Pool** (90% aller Einnahmen), wenn: + +| Bedingung | Erklärung | +|---|---| +| ✅ Du hattest QMINE am **Anfang** der Epoche | Dein Begin-Balance ist > 0 | +| ✅ Du hast QMINE **nicht reduziert** während der Epoche | End-Balance ≥ Begin-Balance | +| ✅ Du bist nicht die Fundraising-Adresse | Diese ist immer ausgeschlossen | + +**Dein Anteil wird so berechnet:** +``` +Dein Payout = (Dein Begin-Balance × Dividenden-Pool) ÷ Gesamt-QMINE-Begin-Balance +``` + +> **Einfach gesagt:** Wer 1% aller QMINE am Epochen-Anfang hatte und nichts verkauft hat, bekommt 1% des Pools. + +**Was passiert wenn du verkauft hast?** +Wer QMINE während der Epoche **reduziert** hat (End-Balance < Begin-Balance), bekommt **gar nichts**. Der Anteil, der diesen Haltern zugestanden hätte, geht stattdessen an die **QMINE-Dev-Adresse** (z.B. für Projektentwicklung). + +> **QMINE dazukaufen ist erlaubt** — solange du nicht unter deinen Anfangsbestand fällst, bist du voll berechtigt. + +### Regel 2: qRWA-Halter (Payout-Typ 2) + +Du bekommst einen Anteil am **qRWA-Dividenden-Pool** (10% aus Pool A+B), wenn: + +| Bedingung | Erklärung | +|---|---| +| ✅ Du besitzt mindestens **1 qRWA-Share** | Aktueller Besitz, kein Snapshot nötig | +| ✅ Du bist nicht der Contract selbst | SELF ist ausgeschlossen | +| ✅ Du bist nicht die Fundraising-Adresse | Diese ist immer ausgeschlossen | + +**Kein QMINE nötig!** Jeder qRWA-Halter bekommt proportional zu seinen Shares. + +### Regel 3: Dedicated qRWA-Halter — Pool C Premium (Payout-Typ 3) + +Du bekommst einen Anteil am **Dedicated qRWA-Pool** (10% aus Pool C), wenn: + +| Bedingung | Erklärung | +|---|---| +| ✅ Du besitzt mindestens **1 qRWA-Share** | Aktueller Besitz | +| ✅ Du besitzt **≥ 100.000 QMINE pro qRWA-Share** | Premium-Anforderung | +| ✅ Du bist nicht der Contract selbst oder die Fundraising-Adresse | Ausgeschlossen | + +**Beispiele:** + +| qRWA-Shares | Benötigte QMINE | Berechtigt? | +|---|---|---| +| 1 | 100.000 | Ja, wenn du ≥ 100.000 QMINE hast | +| 5 | 500.000 | Ja, wenn du ≥ 500.000 QMINE hast | +| 10 | 1.000.000 | Ja, wenn du ≥ 1.000.000 QMINE hast | +| 5 (mit nur 300K QMINE) | 500.000 | **Nein** — zu wenig QMINE | + +> **Was passiert mit nicht-verteiltem Geld?** Wenn niemand die Premium-Anforderung erfüllt, bleibt das Geld im Pool und wird in der nächsten Runde erneut versucht zu verteilen. + +### Regel 4: QMINE-Dev (Payout-Typ 1) + +Die **Dev-Adresse** bekommt den **Restbetrag** des QMINE-Dividenden-Pools, nachdem alle berechtigten Halter bezahlt wurden. Das umfasst: +- Anteile von Haltern, die während der Epoche verkauft haben +- Rundungsdifferenzen +- Anteile von Haltern, bei denen der Transfer fehlgeschlagen ist + +--- + +## Ausschüttung im Detail — Die 6 Schritte + +Die Ausschüttung läuft in mehreren Schritten ab, alle automatisch und in einem einzigen Tick: + +### Schritt 1: Governance-Gebühren von Pool A abziehen + +Aus Pool A werden zuerst die Betriebskosten-Gebühren bezahlt: + +| Gebühr | Standard-Wert | Beschreibung | +|---|---|---| +| Strom (Electricity) | 350‰ (35,0%) | Stromkosten des Mining-Betriebs | +| Wartung (Maintenance) | 50‰ (5,0%) | Wartung & Infrastruktur | +| Reinvestment | 100‰ (10,0%) | Rücklagen für Neuanschaffungen | +| **Gesamt** | **500‰ (50,0%)** | **Abzug von Pool A vor Verteilung** | + +> Die Gebühren werden direkt an die konfigurierten Adressen überwiesen — sofort, on-chain. +> Diese Werte sind per Governance-Abstimmung durch QMINE-Halter änderbar. + +### Schritt 2: Pool A + Pool B zusammenführen → 90/10-Split + +Nach Abzug der Gebühren wird der **Rest von Pool A** mit **Pool B** zusammengeführt: + +``` +Gesamtverteilung = (Pool A nach Gebühren) + Pool B +``` + +Diese Summe wird aufgeteilt: + +| Empfänger | Anteil | Ziel-Pool | +|---|---|---| +| **QMINE-Halter** | **90%** | → QMINE-Dividenden-Pool | +| **qRWA-Halter** | **10%** | → qRWA-Dividenden-Pool | + +### Schritt 3: Pool C separat → 90/10-Split + +Pool C wird **getrennt** von Pool A+B verteilt, ebenfalls im 90/10-Verhältnis: + +| Empfänger | Anteil | Ziel-Pool | +|---|---|---| +| **QMINE-Halter** | **90%** | → QMINE-Dividenden-Pool (**gemeinsam** mit Pool A+B) | +| **Dedicated qRWA-Halter** | **10%** | → Dedicated qRWA-Pool (eigener Pool, nur Premium) | + +### Schritt 4: QMINE-Halter-Ausschüttung (Typ 0 + Typ 1) + +Der gesamte **QMINE-Dividenden-Pool** (Schritt 2 + Schritt 3 zusammen) wird verteilt: + +1. Jeder berechtigte QMINE-Halter bekommt seinen proportionalen Anteil (Typ 0) +2. Wer reduziert hat, bekommt nichts — sein Anteil geht an Dev (Typ 1) +3. Der gesamte Restbetrag (auch Rundungsdifferenzen) geht an die Dev-Adresse + +> **Transfers passieren sofort** — `qpi.transfer()` sendet die QU direkt an die Wallet-Adresse des Halters. + +### Schritt 5: qRWA-Halter-Ausschüttung (Typ 2) + +Der **qRWA-Dividenden-Pool** (10% aus Pool A+B) wird an **alle qRWA-Halter** proportional zu ihren Shares verteilt. + +- Jeder qRWA-Halter mit mindestens 1 Share ist berechtigt +- **Keine QMINE-Anforderung** für diesen Pool +- Der Contract selbst (SELF) und die Fundraising-Adresse sind ausgeschlossen + +### Schritt 6: Dedicated qRWA-Halter-Ausschüttung (Typ 3) + +Der **Dedicated qRWA-Pool** (10% aus Pool C) wird **nur** an qualifizierte qRWA-Halter verteilt: + +> **Mindestens 100.000 QMINE pro qRWA-Share** + +- Wer die Anforderung nicht erfüllt, wird übersprungen +- Nicht-verteiltes Geld bleibt im Pool für die nächste Ausschüttungsrunde + +--- + +## Zusammenfassung des Geldflusses + +``` +Einzahlung an qRWA SC + │ + ├── Dedicated Address ──────────► Pool C (BTC Mining) + ├── QUTIL / Pool-A-Adresse ─────► Pool A (Qubic Mining) + └── Alle anderen (SC holdings) ───────────────► Pool B (Nutzer) + +Am Ausschüttungstag: + │ + ├── Pool A: Governance-Gebühren abziehen (Strom + Wartung + Reinvest) + │ └── Rest von Pool A + Pool B zusammenführen + │ ├── 90% ──► QMINE-Dividenden-Pool + │ └── 10% ──► qRWA-Dividenden-Pool + │ + └── Pool C: Separater Split + ├── 90% ──► QMINE-Dividenden-Pool (gemeinsam mit oben) + └── 10% ──► Dedicated qMine/qRWA-Pool (nur ≥100K QMINE/Share) + +Auszahlung: + │ + ├── QMINE-Dividenden-Pool ──► Alle berechtigten QMINE-Halter + │ (proportional zum Begin-Epoch-Balance) + │ (Rest → QMINE Dev-Adresse) + │ + ├── qRWA-Dividenden-Pool ───► Alle qRWA-Share-Halter + │ (proportional zu Shares, kein QMINE nötig) + │ + └── Dedicated qRWA-Pool ────► Nur qRWA-Halter mit ≥100K QMINE/Share + (proportional zu qualifizierten Shares) +``` + +--- + +## Governance – Abstimmung durch QMINE-Halter + +QMINE-Halter können über die Betriebsparameter des Smart Contracts abstimmen. + +### Abstimmbare Parameter + +- Strom-Prozentsatz und -Adresse +- Wartungs-Prozentsatz und -Adresse +- Reinvestment-Prozentsatz und -Adresse +- Admin-Adresse +- QMINE-Dev-Adresse + +### Abstimmungsregeln + +- **Stimmberechtigt:** Alle QMINE-Halter +- **Stimmgewicht:** `min(Begin-Epoch-Balance, End-Epoch-Balance)` – wer während der Epoche QMINE verkauft hat, stimmt mit dem niedrigeren Bestand ab +- **Erforderliche Mehrheit:** Einfache Mehrheit – der Vorschlag mit den **meisten Stimmen** (>50% des gesamten Stimmgewichts) gewinnt +- **Auswertung:** Am Ende jeder Epoche (`END_EPOCH`) +- **Maximal 8 neue Governance-Abstimmungen pro Epoche** + +### Asset-Release-Abstimmungen + +QMINE-Halter können auch über die **Freigabe von Assets** (z.B. SC-Shares) aus dem Treasury abstimmen: + +- **Erstellt durch:** Admin-Adresse +- **Abstimmung:** JA/NEIN (Bitfeld-basiert, bis zu 64 gleichzeitige Polls) +- **Erforderliche Mehrheit:** JA-Stimmen > NEIN-Stimmen (einfache Mehrheit) +- **Maximal 8 neue Asset-Release-Abstimmungen pro Epoche** + +--- + +## Asset-Management (Treasury) + +Der Smart Contract kann verschiedene Assets halten und verwalten: + +### Assets einzahlen + +Jeder Nutzer kann SC-Shares oder andere Assets in den qRWA-Contract einzahlen: +1. Shares auf QX kaufen +2. Management-Rechte an den qRWA-Contract übertragen → Die Shares werden automatisch permanent gesperrt und im internen Bilanzbuch erfasst + +### Assets freigeben + +Assets können nur per erfolgreicher **Asset-Release-Abstimmung** freigegeben werden. Der Admin erstellt einen Freigabe-Antrag, und die QMINE-Halter stimmen darüber ab. + +### Treasury-Spenden + +Jeder kann QU an das Treasury spenden (Procedure `DonateToTreasury`). Diese Mittel stehen für Governance-gesteuerte Verwendung zur Verfügung. + +--- + +## Fundraising-Adresse + +Eine konfigurierte Fundraising-Adresse wird von **allen Ausschüttungen ausgeschlossen**: +- Keine QMINE-Halter-Ausschüttung +- Keine qRWA-Halter-Ausschüttung +- Keine Dedicated qRWA-Ausschüttung +- Kein Stimmrecht bei der QMINE-Snapshot-Erfassung + +Dies verhindert, dass während einer Fundraising-Phase unverteilte Token Ausschüttungen kassieren. + +--- + +## Wichtige Konstanten + +| Konstante | Wert | Bedeutung | +|---|---|---| +| QMINE-Halter-Anteil | 90% | Anteil für QMINE-Halter an der Gesamtverteilung | +| qRWA-Halter-Anteil | 10% | Anteil für qRWA-Halter an der Gesamtverteilung | +| QMINE pro qRWA-Share (Pool C) | 100.000 | Mindestanforderung für Dedicated qRWA-Ausschüttung | +| Max. QMINE-Halter | 131.072 | Maximale Anzahl eindeutiger QMINE-Adressen | +| Max. Governance-Polls | 64 | Maximale Gesamtanzahl Governance-Abstimmungen | +| Max. Asset-Polls | 64 | Maximale Gesamtanzahl Asset-Release-Abstimmungen | +| Payout-Ringpuffer (je Pool) | 1.024 | Einträge pro Ring-Buffer (QMINE / qRWA / Dedicated) | +| Release-Management-Gebühr | 100 QU | Gebühr für Freigabe von Asset-Management-Rechten | + +--- + +## Payout-Typen & Per-Pool Ring-Buffer + +Es gibt **3 separate Ring-Buffer** — jeder speichert die letzten 1.024 Ausschüttungen eines Payout-Pfads: + +| Function | Name | Payout-Typen | Beschreibung | +|---|---|---|---| +| fn 11 | `GetPayoutsQmine` | 0, 1 | QMINE-Halter + Dev (90%-Bein aller Pools) | +| fn 13 | `GetPayoutsQrwa` | 2 | qRWA-Halter (10%-Bein von Pool A+B) | +| fn 14 | `GetPayoutsDedicated` | 3 | Dedicated qRWA (10%-Bein von Pool C) | + +### Typ-Codes + +| Typ-Code | Beschreibung | +|---|---| +| 0 | QMINE-Halter-Auszahlung | +| 1 | QMINE-Dev-Auszahlung (Rest von Haltern, die während der Epoche verkauft haben) | +| 2 | qRWA-Halter-Auszahlung (Pool A+B, 10%-Anteil) | +| 3 | Dedicated qRWA-Auszahlung (Pool C, 10%-Anteil, Premium) | + +--- + +## Rechenbeispiel + +**Annahme:** In einer Epoche fließen folgende Einnahmen ein: + +- Pool A (Qubic Mining): **1.000.000 QU** +- Pool B (Nutzer): **200.000 QU** +- Pool C (BTC Mining): **500.000 QU** + +**Schritt 1 – Governance-Gebühren von Pool A:** +``` +Strom (35%): 350.000 QU → Strom-Adresse +Wartung (5%): 50.000 QU → Wartungs-Adresse +Reinvestment (10%): 100.000 QU → Reinvestment-Adresse +Pool A Rest: 500.000 QU +``` + +**Schritt 2 – Pool A+B zusammenführen und aufteilen:** +``` +Gesamt: 500.000 + 200.000 = 700.000 QU +QMINE-Halter (90%): 630.000 QU +qRWA-Halter (10%): 70.000 QU +``` + +**Schritt 3 – Pool C separat aufteilen:** +``` +QMINE-Halter (90%): 450.000 QU +Dedicated qRWA (10%): 50.000 QU +``` + +**Schritt 4 – Gesamtausschüttung:** +``` +QMINE-Halter gesamt: 630.000 + 450.000 = 1.080.000 QU +qRWA-Halter (alle): 70.000 QU +Dedicated qRWA (≥100K QMINE/Share): 50.000 QU +Governance-Gebühren: 500.000 QU +───────────────────────────────────────────────────────────── +Gesamt: 1.700.000 QU ✓ +``` diff --git a/build/CMakeCache.txt b/build/CMakeCache.txt new file mode 100644 index 000000000..950c124ad --- /dev/null +++ b/build/CMakeCache.txt @@ -0,0 +1,686 @@ +# This is the CMakeCache file. +# For build in directory: /Users/graf/Documents/GitHub/qubic-core/core/build +# It was generated by CMake: /opt/homebrew/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 +######################## + +//Build the EFI benchmark application +BUILD_BENCHMARK:BOOL=OFF + +//Build the EFI application +BUILD_EFI:BOOL=ON + +//Builds the googlemock subproject +BUILD_GMOCK:BOOL=ON + +//Build the test suite +BUILD_TESTS:BOOL=ON + +//Path to a program. +CMAKE_ADDR2LINE:FILEPATH=CMAKE_ADDR2LINE-NOTFOUND + +//Path to a program. +CMAKE_AR:FILEPATH=/usr/bin/ar + +//ASM_MASM compiler +CMAKE_ASM_MASM_COMPILER:FILEPATH=ml + +//Flags used by the ASM_MASM compiler during all build types. +CMAKE_ASM_MASM_FLAGS:STRING= + +//Flags used by the ASM_MASM compiler during DEBUG builds. +CMAKE_ASM_MASM_FLAGS_DEBUG:STRING= + +//Flags used by the ASM_MASM compiler during MINSIZEREL builds. +CMAKE_ASM_MASM_FLAGS_MINSIZEREL:STRING= + +//Flags used by the ASM_MASM compiler during RELEASE builds. +CMAKE_ASM_MASM_FLAGS_RELEASE:STRING= + +//Flags used by the ASM_MASM compiler during RELWITHDEBINFO builds. +CMAKE_ASM_MASM_FLAGS_RELWITHDEBINFO:STRING= + +//Choose the type of build, options are: None Debug Release RelWithDebInfo +// MinSizeRel ... +CMAKE_BUILD_TYPE:STRING=Release + +//Enable/Disable color output during build. +CMAKE_COLOR_MAKEFILE:BOOL=ON + +//Available build types +CMAKE_CONFIGURATION_TYPES:STRING=Debug;Release + +//CXX compiler +CMAKE_CXX_COMPILER:FILEPATH=/usr/bin/c++ + +//Flags used by the CXX compiler during MINSIZEREL builds. +CMAKE_CXX_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG + +//Flags used by the CXX compiler during RELWITHDEBINFO builds. +CMAKE_CXX_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG + +//C compiler +CMAKE_C_COMPILER:FILEPATH=/usr/bin/cc + +//Flags used by the C compiler during MINSIZEREL builds. +CMAKE_C_FLAGS_MINSIZEREL:STRING=-Os -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 MINSIZEREL builds. +CMAKE_EXE_LINKER_FLAGS_MINSIZEREL: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=/Users/graf/Documents/GitHub/qubic-core/core/build/CMakeFiles/pkgRedirects + +//User executables (bin) +CMAKE_INSTALL_BINDIR:PATH=bin + +//Read-only architecture-independent data (DATAROOTDIR) +CMAKE_INSTALL_DATADIR:PATH= + +//Read-only architecture-independent data root (share) +CMAKE_INSTALL_DATAROOTDIR:PATH=share + +//Documentation root (DATAROOTDIR/doc/PROJECT_NAME) +CMAKE_INSTALL_DOCDIR:PATH= + +//C header files (include) +CMAKE_INSTALL_INCLUDEDIR:PATH=include + +//Info documentation (DATAROOTDIR/info) +CMAKE_INSTALL_INFODIR:PATH= + +//Object code libraries (lib) +CMAKE_INSTALL_LIBDIR:PATH=lib + +//Program executables (libexec) +CMAKE_INSTALL_LIBEXECDIR:PATH=libexec + +//Locale-dependent data (DATAROOTDIR/locale) +CMAKE_INSTALL_LOCALEDIR:PATH= + +//Modifiable single-machine data (var) +CMAKE_INSTALL_LOCALSTATEDIR:PATH=var + +//Man documentation (DATAROOTDIR/man) +CMAKE_INSTALL_MANDIR:PATH= + +//Path to a program. +CMAKE_INSTALL_NAME_TOOL:FILEPATH=/usr/bin/install_name_tool + +//C header files for non-gcc (/usr/include) +CMAKE_INSTALL_OLDINCLUDEDIR:PATH=/usr/include + +//Install path prefix, prepended onto install directories. +CMAKE_INSTALL_PREFIX:PATH=/usr/local + +//Run-time variable data (LOCALSTATEDIR/run) +CMAKE_INSTALL_RUNSTATEDIR:PATH= + +//System admin executables (sbin) +CMAKE_INSTALL_SBINDIR:PATH=sbin + +//Modifiable architecture-independent data (com) +CMAKE_INSTALL_SHAREDSTATEDIR:PATH=com + +//Read-only single-machine data (etc) +CMAKE_INSTALL_SYSCONFDIR:PATH=etc + +//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=CMAKE_OBJCOPY-NOTFOUND + +//Path to a program. +CMAKE_OBJDUMP:FILEPATH=/usr/bin/objdump + +//Build architectures for OSX +CMAKE_OSX_ARCHITECTURES:STRING= + +//Minimum OS X version to target for deployment (at runtime); newer +// APIs weak linked. Set to empty string for default value. +CMAKE_OSX_DEPLOYMENT_TARGET:STRING= + +//The product will be built against the headers and libraries located +// inside the indicated SDK. +CMAKE_OSX_SYSROOT:STRING= + +//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=qubic + +//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=CMAKE_READELF-NOTFOUND + +//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=/Library/Developer/CommandLineTools/usr/bin/tapi + +//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 + +//Enable AVX-512 instructions +ENABLE_AVX512:BOOL=ON + +//Directory under which to collect all populated content +FETCHCONTENT_BASE_DIR:PATH=/Users/graf/Documents/GitHub/qubic-core/core/build/_deps + +//Disables all attempts to download or update content and assumes +// source dirs already exist +FETCHCONTENT_FULLY_DISCONNECTED:BOOL=OFF + +//Enables QUIET option for all content population +FETCHCONTENT_QUIET:BOOL=ON + +//When not empty, overrides where to find pre-populated content +// for googletest +FETCHCONTENT_SOURCE_DIR_GOOGLETEST:PATH= + +//Enables UPDATE_DISCONNECTED behavior for all content population +FETCHCONTENT_UPDATES_DISCONNECTED:BOOL=OFF + +//Enables UPDATE_DISCONNECTED behavior just for population of googletest +FETCHCONTENT_UPDATES_DISCONNECTED_GOOGLETEST:BOOL=OFF + +//Git command line client +GIT_EXECUTABLE:FILEPATH=/usr/bin/git + +//Use Abseil and RE2. Requires Abseil and RE2 to be separately +// added to the build. +GTEST_HAS_ABSL:BOOL=OFF + +//Enable installation of googletest. (Projects embedding googletest +// may want to turn this OFF.) +INSTALL_GTEST:BOOL=ON + +//Build test with sanitizer support (clang only) +USE_SANITIZER:BOOL=ON + +//Value Computed by CMake +gmock_BINARY_DIR:STATIC=/Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-build/googlemock + +//Value Computed by CMake +gmock_IS_TOP_LEVEL:STATIC=OFF + +//Value Computed by CMake +gmock_SOURCE_DIR:STATIC=/Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-src/googlemock + +//Build all of Google Mock's own tests. +gmock_build_tests:BOOL=OFF + +//Value Computed by CMake +googletest-distribution_BINARY_DIR:STATIC=/Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-build + +//Value Computed by CMake +googletest-distribution_IS_TOP_LEVEL:STATIC=OFF + +//Value Computed by CMake +googletest-distribution_SOURCE_DIR:STATIC=/Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-src + +//Value Computed by CMake +gtest_BINARY_DIR:STATIC=/Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-build/googletest + +//Value Computed by CMake +gtest_IS_TOP_LEVEL:STATIC=OFF + +//Value Computed by CMake +gtest_SOURCE_DIR:STATIC=/Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-src/googletest + +//Build gtest's sample programs. +gtest_build_samples:BOOL=OFF + +//Build all of gtest's own tests. +gtest_build_tests:BOOL=OFF + +//Disable uses of pthreads in gtest. +gtest_disable_pthreads:BOOL=OFF + +//Use shared (DLL) run-time lib even when Google Test is built +// as static lib. +gtest_force_shared_crt:BOOL=ON + +//Build gtest with internal symbols hidden in shared libraries. +gtest_hide_internal_symbols:BOOL=OFF + +//Value Computed by CMake +platform_common_BINARY_DIR:STATIC=/Users/graf/Documents/GitHub/qubic-core/core/build/lib/platform_common + +//Value Computed by CMake +platform_common_IS_TOP_LEVEL:STATIC=OFF + +//Value Computed by CMake +platform_common_SOURCE_DIR:STATIC=/Users/graf/Documents/GitHub/qubic-core/core/lib/platform_common + +//Value Computed by CMake +platform_efi_BINARY_DIR:STATIC=/Users/graf/Documents/GitHub/qubic-core/core/build/lib/platform_efi + +//Value Computed by CMake +platform_efi_IS_TOP_LEVEL:STATIC=OFF + +//Value Computed by CMake +platform_efi_SOURCE_DIR:STATIC=/Users/graf/Documents/GitHub/qubic-core/core/lib/platform_efi + +//Value Computed by CMake +platform_os_BINARY_DIR:STATIC=/Users/graf/Documents/GitHub/qubic-core/core/build/lib/platform_os + +//Value Computed by CMake +platform_os_IS_TOP_LEVEL:STATIC=OFF + +//Value Computed by CMake +platform_os_SOURCE_DIR:STATIC=/Users/graf/Documents/GitHub/qubic-core/core/lib/platform_os + +//Value Computed by CMake +qubic_BINARY_DIR:STATIC=/Users/graf/Documents/GitHub/qubic-core/core/build + +//Value Computed by CMake +qubic_IS_TOP_LEVEL:STATIC=ON + +//Value Computed by CMake +qubic_SOURCE_DIR:STATIC=/Users/graf/Documents/GitHub/qubic-core/core + +//Value Computed by CMake +qubic_core_BINARY_DIR:STATIC=/Users/graf/Documents/GitHub/qubic-core/core/build/src + +//Value Computed by CMake +qubic_core_IS_TOP_LEVEL:STATIC=OFF + +//Value Computed by CMake +qubic_core_SOURCE_DIR:STATIC=/Users/graf/Documents/GitHub/qubic-core/core/src + +//Value Computed by CMake +qubic_core_tests_BINARY_DIR:STATIC=/Users/graf/Documents/GitHub/qubic-core/core/build/test + +//Value Computed by CMake +qubic_core_tests_IS_TOP_LEVEL:STATIC=OFF + +//Value Computed by CMake +qubic_core_tests_SOURCE_DIR:STATIC=/Users/graf/Documents/GitHub/qubic-core/core/test + + +######################## +# INTERNAL cache entries +######################## + +//Assembly language to use +ASM_LANG:INTERNAL= +//ADVANCED property for variable: CMAKE_ADDR2LINE +CMAKE_ADDR2LINE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_AR +CMAKE_AR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_ASM_MASM_COMPILER +CMAKE_ASM_MASM_COMPILER-ADVANCED:INTERNAL=1 +CMAKE_ASM_MASM_COMPILER_WORKS:INTERNAL=1 +//ADVANCED property for variable: CMAKE_ASM_MASM_FLAGS +CMAKE_ASM_MASM_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_ASM_MASM_FLAGS_DEBUG +CMAKE_ASM_MASM_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_ASM_MASM_FLAGS_MINSIZEREL +CMAKE_ASM_MASM_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_ASM_MASM_FLAGS_RELEASE +CMAKE_ASM_MASM_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_ASM_MASM_FLAGS_RELWITHDEBINFO +CMAKE_ASM_MASM_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//This is the directory where this CMakeCache.txt was created +CMAKE_CACHEFILE_DIR:INTERNAL=/Users/graf/Documents/GitHub/qubic-core/core/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=/opt/homebrew/bin/cmake +//Path to cpack program executable. +CMAKE_CPACK_COMMAND:INTERNAL=/opt/homebrew/bin/cpack +//Path to ctest program executable. +CMAKE_CTEST_COMMAND:INTERNAL=/opt/homebrew/bin/ctest +//ADVANCED property for variable: CMAKE_CXX_COMPILER +CMAKE_CXX_COMPILER-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS +CMAKE_CXX_FLAGS-ADVANCED:INTERNAL=1 +CMAKE_CXX_FLAGS:INTERNAL= +//ADVANCED property for variable: CMAKE_CXX_FLAGS_DEBUG +CMAKE_CXX_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +CMAKE_CXX_FLAGS_DEBUG:INTERNAL= +//ADVANCED property for variable: CMAKE_CXX_FLAGS_MINSIZEREL +CMAKE_CXX_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELEASE +CMAKE_CXX_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +CMAKE_CXX_FLAGS_RELEASE:INTERNAL= +//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELWITHDEBINFO +CMAKE_CXX_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_COMPILER +CMAKE_C_COMPILER-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS +CMAKE_C_FLAGS-ADVANCED:INTERNAL=1 +CMAKE_C_FLAGS:INTERNAL= +//ADVANCED property for variable: CMAKE_C_FLAGS_DEBUG +CMAKE_C_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +CMAKE_C_FLAGS_DEBUG:INTERNAL= +//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 +CMAKE_C_FLAGS_RELEASE:INTERNAL= +//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=/opt/homebrew/bin/ccmake +//Executable file format +CMAKE_EXECUTABLE_FORMAT:INTERNAL=MACHO +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS +CMAKE_EXE_LINKER_FLAGS-ADVANCED:INTERNAL=1 +CMAKE_EXE_LINKER_FLAGS:INTERNAL= +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_DEBUG +CMAKE_EXE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +CMAKE_EXE_LINKER_FLAGS_DEBUG:INTERNAL= +//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 +CMAKE_EXE_LINKER_FLAGS_RELEASE:INTERNAL= +//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= +//Test CMAKE_HAVE_LIBC_PTHREAD +CMAKE_HAVE_LIBC_PTHREAD:INTERNAL=1 +//Source directory with the top level CMakeLists.txt file for this +// project +CMAKE_HOME_DIRECTORY:INTERNAL=/Users/graf/Documents/GitHub/qubic-core/core +//ADVANCED property for variable: CMAKE_INSTALL_BINDIR +CMAKE_INSTALL_BINDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_DATADIR +CMAKE_INSTALL_DATADIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_DATAROOTDIR +CMAKE_INSTALL_DATAROOTDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_DOCDIR +CMAKE_INSTALL_DOCDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_INCLUDEDIR +CMAKE_INSTALL_INCLUDEDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_INFODIR +CMAKE_INSTALL_INFODIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_LIBDIR +CMAKE_INSTALL_LIBDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_LIBEXECDIR +CMAKE_INSTALL_LIBEXECDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_LOCALEDIR +CMAKE_INSTALL_LOCALEDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_LOCALSTATEDIR +CMAKE_INSTALL_LOCALSTATEDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_MANDIR +CMAKE_INSTALL_MANDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_NAME_TOOL +CMAKE_INSTALL_NAME_TOOL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_OLDINCLUDEDIR +CMAKE_INSTALL_OLDINCLUDEDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_RUNSTATEDIR +CMAKE_INSTALL_RUNSTATEDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_SBINDIR +CMAKE_INSTALL_SBINDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_SHAREDSTATEDIR +CMAKE_INSTALL_SHAREDSTATEDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_SYSCONFDIR +CMAKE_INSTALL_SYSCONFDIR-ADVANCED:INTERNAL=1 +//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=9 +//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=/opt/homebrew/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 +//Common C++ compiler flags +COMMON_CXX_FLAGS:INTERNAL=-Wall -Wextra -fshort-wchar +//Common C compiler flags +COMMON_C_FLAGS:INTERNAL=-Wall -Wextra -fshort-wchar +//Common debug compiler flags +COMMON_DEBUG_FLAGS:INTERNAL=-g +//Common linker flags +COMMON_LINK_FLAGS:INTERNAL= +//Common release compiler flags +COMMON_RELEASE_FLAGS:INTERNAL=-O2 -fomit-frame-pointer -fno-lto +//CPU instruction set flags +CPU_INSTRUCTION_FLAGS:INTERNAL=-mavx -mavx2 -mavx512f -mavx512cd -mavx512vl -mavx512bw -mavx512dq +//EFI-specific C++ compiler flags +EFI_CXX_FLAGS:INTERNAL=-ffreestanding -mno-red-zone -fno-stack-protector -fno-strict-aliasing -fno-builtin -fno-rtti -fno-exceptions +//EFI-specific C compiler flags +EFI_C_FLAGS:INTERNAL=-ffreestanding -mno-red-zone -fno-stack-protector -fno-strict-aliasing -fno-builtin +//EFI-specific compiler flags +EFI_SPECIFIC_FLAGS:INTERNAL=-fno-rtti -fno-exceptions +//Details about finding Threads +FIND_PACKAGE_MESSAGE_DETAILS_Threads:INTERNAL=[TRUE][v()] +//ADVANCED property for variable: GIT_EXECUTABLE +GIT_EXECUTABLE-ADVANCED:INTERNAL=1 +//Clang compiler detected +IS_CLANG:INTERNAL=TRUE +//GCC compiler detected +IS_GCC:INTERNAL=FALSE +//Linux platform detected +IS_LINUX:INTERNAL=FALSE +//MSVC compiler detected +IS_MSVC:INTERNAL=FALSE +//Windows platform detected +IS_WINDOWS:INTERNAL=FALSE +//OS-specific C++ compiler flags +OS_CXX_FLAGS:INTERNAL=-fno-stack-protector +//OS-specific C compiler flags +OS_C_FLAGS:INTERNAL=-fno-stack-protector +//Test-specific compiler flags +TEST_SPECIFIC_FLAGS:INTERNAL='-Wpedantic -Werror -mrdrnd -Wcast-align ' +//Test-specific linker flags +TEST_SPECIFIC_LINK_FLAGS:INTERNAL= +//CMAKE_INSTALL_PREFIX during last run +_GNUInstallDirs_LAST_CMAKE_INSTALL_PREFIX:INTERNAL=/usr/local +cmake_package_name:INTERNAL=GTest +generated_dir:INTERNAL=/Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-build/googletest/generated +//ADVANCED property for variable: gmock_build_tests +gmock_build_tests-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: gtest_build_samples +gtest_build_samples-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: gtest_build_tests +gtest_build_tests-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: gtest_disable_pthreads +gtest_disable_pthreads-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: gtest_force_shared_crt +gtest_force_shared_crt-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: gtest_hide_internal_symbols +gtest_hide_internal_symbols-ADVANCED:INTERNAL=1 +targets_export_name:INTERNAL=GTestTargets + diff --git a/build/CMakeFiles/4.1.1/CMakeASM_MASMCompiler.cmake b/build/CMakeFiles/4.1.1/CMakeASM_MASMCompiler.cmake new file mode 100644 index 000000000..4ac278a30 --- /dev/null +++ b/build/CMakeFiles/4.1.1/CMakeASM_MASMCompiler.cmake @@ -0,0 +1,30 @@ +set(CMAKE_ASM_MASM_COMPILER "ml") +set(CMAKE_ASM_MASM_COMPILER_ARG1 "") +set(CMAKE_AR "/usr/bin/ar") +set(CMAKE_ASM_MASM_COMPILER_AR "") +set(CMAKE_RANLIB "/usr/bin/ranlib") +set(CMAKE_ASM_MASM_COMPILER_RANLIB "") +set(CMAKE_LINKER "/usr/bin/ld") +set(CMAKE_LINKER_LINK "") +set(CMAKE_LINKER_LLD "") +set(CMAKE_ASM_MASM_COMPILER_LINKER "") +set(CMAKE_ASM_MASM_COMPILER_LINKER_ID "") +set(CMAKE_ASM_MASM_COMPILER_LINKER_VERSION ) +set(CMAKE_ASM_MASM_COMPILER_LINKER_FRONTEND_VARIANT ) +set(CMAKE_MT "") +set(CMAKE_TAPI "/Library/Developer/CommandLineTools/usr/bin/tapi") +set(CMAKE_ASM_MASM_COMPILER_LOADED 1) +set(CMAKE_ASM_MASM_COMPILER_ID "") +set(CMAKE_ASM_MASM_COMPILER_VERSION "") +set(CMAKE_ASM_MASM_COMPILER_ENV_VAR "ASM_MASM") + +set(CMAKE_ASM_MASM_ARCHITECTURE_ID "") + + +set(CMAKE_ASM_MASM_IGNORE_EXTENSIONS h;H;o;O;obj;OBJ;def;DEF;rc;RC) +set(CMAKE_ASM_MASM_LINKER_PREFERENCE 0) +set(CMAKE_ASM_MASM_LINKER_DEPFILE_SUPPORTED ) +set(CMAKE_LINKER_PUSHPOP_STATE_SUPPORTED ) +set(CMAKE_ASM_MASM_LINKER_PUSHPOP_STATE_SUPPORTED ) + + diff --git a/build/CMakeFiles/4.1.1/CMakeCCompiler.cmake b/build/CMakeFiles/4.1.1/CMakeCCompiler.cmake new file mode 100644 index 000000000..6dcc5d7a6 --- /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 "AppleClang") +set(CMAKE_C_COMPILER_VERSION "17.0.0.17000013") +set(CMAKE_C_COMPILER_VERSION_INTERNAL "") +set(CMAKE_C_COMPILER_WRAPPER "") +set(CMAKE_C_STANDARD_COMPUTED_DEFAULT "17") +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 "Darwin") +set(CMAKE_C_SIMULATE_ID "") +set(CMAKE_C_COMPILER_FRONTEND_VARIANT "GNU") +set(CMAKE_C_COMPILER_APPLE_SYSROOT "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk") +set(CMAKE_C_SIMULATE_VERSION "") +set(CMAKE_C_COMPILER_ARCHITECTURE_ID "arm64") + + + +set(CMAKE_AR "/usr/bin/ar") +set(CMAKE_C_COMPILER_AR "") +set(CMAKE_RANLIB "/usr/bin/ranlib") +set(CMAKE_C_COMPILER_RANLIB "") +set(CMAKE_LINKER "/usr/bin/ld") +set(CMAKE_LINKER_LINK "") +set(CMAKE_LINKER_LLD "") +set(CMAKE_C_COMPILER_LINKER "/Library/Developer/CommandLineTools/usr/bin/ld") +set(CMAKE_C_COMPILER_LINKER_ID "AppleClang") +set(CMAKE_C_COMPILER_LINKER_VERSION 1167.5) +set(CMAKE_C_COMPILER_LINKER_FRONTEND_VARIANT GNU) +set(CMAKE_MT "") +set(CMAKE_TAPI "/Library/Developer/CommandLineTools/usr/bin/tapi") +set(CMAKE_COMPILER_IS_GNUCC ) +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 ) +set(CMAKE_LINKER_PUSHPOP_STATE_SUPPORTED ) +set(CMAKE_C_LINKER_PUSHPOP_STATE_SUPPORTED ) + +# Save compiler ABI information. +set(CMAKE_C_SIZEOF_DATA_PTR "8") +set(CMAKE_C_COMPILER_ABI "") +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/local/include;/Library/Developer/CommandLineTools/usr/lib/clang/17/include;/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include;/Library/Developer/CommandLineTools/usr/include") +set(CMAKE_C_IMPLICIT_LINK_LIBRARIES "") +set(CMAKE_C_IMPLICIT_LINK_DIRECTORIES "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/lib;/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/lib/swift") +set(CMAKE_C_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/System/Library/Frameworks") diff --git a/build/CMakeFiles/4.1.1/CMakeCXXCompiler.cmake b/build/CMakeFiles/4.1.1/CMakeCXXCompiler.cmake new file mode 100644 index 000000000..5c5b62a40 --- /dev/null +++ b/build/CMakeFiles/4.1.1/CMakeCXXCompiler.cmake @@ -0,0 +1,104 @@ +set(CMAKE_CXX_COMPILER "/usr/bin/c++") +set(CMAKE_CXX_COMPILER_ARG1 "") +set(CMAKE_CXX_COMPILER_ID "AppleClang") +set(CMAKE_CXX_COMPILER_VERSION "17.0.0.17000013") +set(CMAKE_CXX_COMPILER_VERSION_INTERNAL "") +set(CMAKE_CXX_COMPILER_WRAPPER "") +set(CMAKE_CXX_STANDARD_COMPUTED_DEFAULT "14") +set(CMAKE_CXX_EXTENSIONS_COMPUTED_DEFAULT "ON") +set(CMAKE_CXX_STANDARD_LATEST "23") +set(CMAKE_CXX_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters;cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates;cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates;cxx_std_17;cxx_std_20;cxx_std_23") +set(CMAKE_CXX98_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters") +set(CMAKE_CXX11_COMPILE_FEATURES "cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates") +set(CMAKE_CXX14_COMPILE_FEATURES "cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates") +set(CMAKE_CXX17_COMPILE_FEATURES "cxx_std_17") +set(CMAKE_CXX20_COMPILE_FEATURES "cxx_std_20") +set(CMAKE_CXX23_COMPILE_FEATURES "cxx_std_23") +set(CMAKE_CXX26_COMPILE_FEATURES "") + +set(CMAKE_CXX_PLATFORM_ID "Darwin") +set(CMAKE_CXX_SIMULATE_ID "") +set(CMAKE_CXX_COMPILER_FRONTEND_VARIANT "GNU") +set(CMAKE_CXX_COMPILER_APPLE_SYSROOT "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk") +set(CMAKE_CXX_SIMULATE_VERSION "") +set(CMAKE_CXX_COMPILER_ARCHITECTURE_ID "arm64") + + + +set(CMAKE_AR "/usr/bin/ar") +set(CMAKE_CXX_COMPILER_AR "") +set(CMAKE_RANLIB "/usr/bin/ranlib") +set(CMAKE_CXX_COMPILER_RANLIB "") +set(CMAKE_LINKER "/usr/bin/ld") +set(CMAKE_LINKER_LINK "") +set(CMAKE_LINKER_LLD "") +set(CMAKE_CXX_COMPILER_LINKER "/Library/Developer/CommandLineTools/usr/bin/ld") +set(CMAKE_CXX_COMPILER_LINKER_ID "AppleClang") +set(CMAKE_CXX_COMPILER_LINKER_VERSION 1167.5) +set(CMAKE_CXX_COMPILER_LINKER_FRONTEND_VARIANT GNU) +set(CMAKE_MT "") +set(CMAKE_TAPI "/Library/Developer/CommandLineTools/usr/bin/tapi") +set(CMAKE_COMPILER_IS_GNUCXX ) +set(CMAKE_CXX_COMPILER_LOADED 1) +set(CMAKE_CXX_COMPILER_WORKS TRUE) +set(CMAKE_CXX_ABI_COMPILED TRUE) + +set(CMAKE_CXX_COMPILER_ENV_VAR "CXX") + +set(CMAKE_CXX_COMPILER_ID_RUN 1) +set(CMAKE_CXX_SOURCE_FILE_EXTENSIONS C;M;c++;cc;cpp;cxx;m;mm;mpp;CPP;ixx;cppm;ccm;cxxm;c++m) +set(CMAKE_CXX_IGNORE_EXTENSIONS inl;h;hpp;HPP;H;o;O;obj;OBJ;def;DEF;rc;RC) + +foreach (lang IN ITEMS C OBJC OBJCXX) + if (CMAKE_${lang}_COMPILER_ID_RUN) + foreach(extension IN LISTS CMAKE_${lang}_SOURCE_FILE_EXTENSIONS) + list(REMOVE_ITEM CMAKE_CXX_SOURCE_FILE_EXTENSIONS ${extension}) + endforeach() + endif() +endforeach() + +set(CMAKE_CXX_LINKER_PREFERENCE 30) +set(CMAKE_CXX_LINKER_PREFERENCE_PROPAGATES 1) +set(CMAKE_CXX_LINKER_DEPFILE_SUPPORTED ) +set(CMAKE_LINKER_PUSHPOP_STATE_SUPPORTED ) +set(CMAKE_CXX_LINKER_PUSHPOP_STATE_SUPPORTED ) + +# Save compiler ABI information. +set(CMAKE_CXX_SIZEOF_DATA_PTR "8") +set(CMAKE_CXX_COMPILER_ABI "") +set(CMAKE_CXX_BYTE_ORDER "LITTLE_ENDIAN") +set(CMAKE_CXX_LIBRARY_ARCHITECTURE "") + +if(CMAKE_CXX_SIZEOF_DATA_PTR) + set(CMAKE_SIZEOF_VOID_P "${CMAKE_CXX_SIZEOF_DATA_PTR}") +endif() + +if(CMAKE_CXX_COMPILER_ABI) + set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_CXX_COMPILER_ABI}") +endif() + +if(CMAKE_CXX_LIBRARY_ARCHITECTURE) + set(CMAKE_LIBRARY_ARCHITECTURE "") +endif() + +set(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX "") +if(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX) + set(CMAKE_CL_SHOWINCLUDES_PREFIX "${CMAKE_CXX_CL_SHOWINCLUDES_PREFIX}") +endif() + + + + + +set(CMAKE_CXX_IMPLICIT_INCLUDE_DIRECTORIES "/usr/local/include;/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1;/Library/Developer/CommandLineTools/usr/lib/clang/17/include;/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include;/Library/Developer/CommandLineTools/usr/include") +set(CMAKE_CXX_IMPLICIT_LINK_LIBRARIES "c++") +set(CMAKE_CXX_IMPLICIT_LINK_DIRECTORIES "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/lib;/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/lib/swift") +set(CMAKE_CXX_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/System/Library/Frameworks") +set(CMAKE_CXX_COMPILER_CLANG_RESOURCE_DIR "") + +set(CMAKE_CXX_COMPILER_IMPORT_STD "") +### Imported target for C++23 standard library +set(CMAKE_CXX23_COMPILER_IMPORT_STD_NOT_FOUND_MESSAGE "Unsupported generator: Unix Makefiles") + + + 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 000000000..70319f418 Binary files /dev/null and b/build/CMakeFiles/4.1.1/CMakeDetermineCompilerABI_C.bin differ diff --git a/build/CMakeFiles/4.1.1/CMakeDetermineCompilerABI_CXX.bin b/build/CMakeFiles/4.1.1/CMakeDetermineCompilerABI_CXX.bin new file mode 100755 index 000000000..f0c230372 Binary files /dev/null and b/build/CMakeFiles/4.1.1/CMakeDetermineCompilerABI_CXX.bin differ diff --git a/build/CMakeFiles/4.1.1/CMakeSystem.cmake b/build/CMakeFiles/4.1.1/CMakeSystem.cmake new file mode 100644 index 000000000..0c52e24fd --- /dev/null +++ b/build/CMakeFiles/4.1.1/CMakeSystem.cmake @@ -0,0 +1,15 @@ +set(CMAKE_HOST_SYSTEM "Darwin-24.3.0") +set(CMAKE_HOST_SYSTEM_NAME "Darwin") +set(CMAKE_HOST_SYSTEM_VERSION "24.3.0") +set(CMAKE_HOST_SYSTEM_PROCESSOR "arm64") + + + +set(CMAKE_SYSTEM "Darwin-24.3.0") +set(CMAKE_SYSTEM_NAME "Darwin") +set(CMAKE_SYSTEM_VERSION "24.3.0") +set(CMAKE_SYSTEM_PROCESSOR "arm64") + +set(CMAKE_CROSSCOMPILING "FALSE") + +set(CMAKE_SYSTEM_LOADED 1) diff --git a/build/CMakeFiles/4.1.1/CompilerIdC/CMakeCCompilerId.c b/build/CMakeFiles/4.1.1/CompilerIdC/CMakeCCompilerId.c new file mode 100644 index 000000000..ab3c35931 --- /dev/null +++ b/build/CMakeFiles/4.1.1/CompilerIdC/CMakeCCompilerId.c @@ -0,0 +1,934 @@ +#ifdef __cplusplus +# error "A C++ compiler has been selected for C." +#endif + +#if defined(__18CXX) +# define ID_VOID_MAIN +#endif +#if defined(__CLASSIC_C__) +/* cv-qualifiers did not exist in K&R C */ +# define const +# define volatile +#endif + +#if !defined(__has_include) +/* If the compiler does not have __has_include, pretend the answer is + always no. */ +# define __has_include(x) 0 +#endif + + +/* Version number components: V=Version, R=Revision, P=Patch + Version date components: YYYY=Year, MM=Month, DD=Day */ + +#if defined(__INTEL_COMPILER) || defined(__ICC) +# define COMPILER_ID "Intel" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# if defined(__GNUC__) +# define SIMULATE_ID "GNU" +# endif + /* __INTEL_COMPILER = VRP prior to 2021, and then VVVV for 2021 and later, + except that a few beta releases use the old format with V=2021. */ +# if __INTEL_COMPILER < 2021 || __INTEL_COMPILER == 202110 || __INTEL_COMPILER == 202111 +# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER/100) +# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER/10 % 10) +# if defined(__INTEL_COMPILER_UPDATE) +# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER_UPDATE) +# else +# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER % 10) +# endif +# else +# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER) +# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER_UPDATE) + /* The third version component from --version is an update index, + but no macro is provided for it. */ +# define COMPILER_VERSION_PATCH DEC(0) +# endif +# if defined(__INTEL_COMPILER_BUILD_DATE) + /* __INTEL_COMPILER_BUILD_DATE = YYYYMMDD */ +# define COMPILER_VERSION_TWEAK DEC(__INTEL_COMPILER_BUILD_DATE) +# endif +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif +# if defined(__GNUC__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) +# elif defined(__GNUG__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUG__) +# endif +# if defined(__GNUC_MINOR__) +# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) +# endif +# if defined(__GNUC_PATCHLEVEL__) +# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +# endif + +#elif (defined(__clang__) && defined(__INTEL_CLANG_COMPILER)) || defined(__INTEL_LLVM_COMPILER) +# define COMPILER_ID "IntelLLVM" +#if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +#endif +#if defined(__GNUC__) +# define SIMULATE_ID "GNU" +#endif +/* __INTEL_LLVM_COMPILER = VVVVRP prior to 2021.2.0, VVVVRRPP for 2021.2.0 and + * later. Look for 6 digit vs. 8 digit version number to decide encoding. + * VVVV is no smaller than the current year when a version is released. + */ +#if __INTEL_LLVM_COMPILER < 1000000L +# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/100) +# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 10) +#else +# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/10000) +# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/100 % 100) +# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 100) +#endif +#if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +#endif +#if defined(__GNUC__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) +#elif defined(__GNUG__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUG__) +#endif +#if defined(__GNUC_MINOR__) +# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) +#endif +#if defined(__GNUC_PATCHLEVEL__) +# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +#endif + +#elif defined(__PATHCC__) +# define COMPILER_ID "PathScale" +# define COMPILER_VERSION_MAJOR DEC(__PATHCC__) +# define COMPILER_VERSION_MINOR DEC(__PATHCC_MINOR__) +# if defined(__PATHCC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__PATHCC_PATCHLEVEL__) +# endif + +#elif defined(__BORLANDC__) && defined(__CODEGEARC_VERSION__) +# define COMPILER_ID "Embarcadero" +# define COMPILER_VERSION_MAJOR HEX(__CODEGEARC_VERSION__>>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 000000000..a27d80492 Binary files /dev/null and b/build/CMakeFiles/4.1.1/CompilerIdC/a.out differ diff --git a/build/CMakeFiles/4.1.1/CompilerIdC/apple-sdk.c b/build/CMakeFiles/4.1.1/CompilerIdC/apple-sdk.c new file mode 100644 index 000000000..db846b4f5 --- /dev/null +++ b/build/CMakeFiles/4.1.1/CompilerIdC/apple-sdk.c @@ -0,0 +1 @@ +#include diff --git a/build/CMakeFiles/4.1.1/CompilerIdCXX/CMakeCXXCompilerId.cpp b/build/CMakeFiles/4.1.1/CompilerIdCXX/CMakeCXXCompilerId.cpp new file mode 100644 index 000000000..b35f567c2 --- /dev/null +++ b/build/CMakeFiles/4.1.1/CompilerIdCXX/CMakeCXXCompilerId.cpp @@ -0,0 +1,949 @@ +/* This source file must have a .cpp extension so that all C++ compilers + recognize the extension without flags. Borland does not know .cxx for + example. */ +#ifndef __cplusplus +# error "A C compiler has been selected for C++." +#endif + +#if !defined(__has_include) +/* If the compiler does not have __has_include, pretend the answer is + always no. */ +# define __has_include(x) 0 +#endif + + +/* Version number components: V=Version, R=Revision, P=Patch + Version date components: YYYY=Year, MM=Month, DD=Day */ + +#if defined(__INTEL_COMPILER) || defined(__ICC) +# define COMPILER_ID "Intel" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# if defined(__GNUC__) +# define SIMULATE_ID "GNU" +# endif + /* __INTEL_COMPILER = VRP prior to 2021, and then VVVV for 2021 and later, + except that a few beta releases use the old format with V=2021. */ +# if __INTEL_COMPILER < 2021 || __INTEL_COMPILER == 202110 || __INTEL_COMPILER == 202111 +# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER/100) +# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER/10 % 10) +# if defined(__INTEL_COMPILER_UPDATE) +# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER_UPDATE) +# else +# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER % 10) +# endif +# else +# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER) +# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER_UPDATE) + /* The third version component from --version is an update index, + but no macro is provided for it. */ +# define COMPILER_VERSION_PATCH DEC(0) +# endif +# if defined(__INTEL_COMPILER_BUILD_DATE) + /* __INTEL_COMPILER_BUILD_DATE = YYYYMMDD */ +# define COMPILER_VERSION_TWEAK DEC(__INTEL_COMPILER_BUILD_DATE) +# endif +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif +# if defined(__GNUC__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) +# elif defined(__GNUG__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUG__) +# endif +# if defined(__GNUC_MINOR__) +# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) +# endif +# if defined(__GNUC_PATCHLEVEL__) +# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +# endif + +#elif (defined(__clang__) && defined(__INTEL_CLANG_COMPILER)) || defined(__INTEL_LLVM_COMPILER) +# define COMPILER_ID "IntelLLVM" +#if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +#endif +#if defined(__GNUC__) +# define SIMULATE_ID "GNU" +#endif +/* __INTEL_LLVM_COMPILER = VVVVRP prior to 2021.2.0, VVVVRRPP for 2021.2.0 and + * later. Look for 6 digit vs. 8 digit version number to decide encoding. + * VVVV is no smaller than the current year when a version is released. + */ +#if __INTEL_LLVM_COMPILER < 1000000L +# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/100) +# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 10) +#else +# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/10000) +# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/100 % 100) +# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 100) +#endif +#if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +#endif +#if defined(__GNUC__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) +#elif defined(__GNUG__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUG__) +#endif +#if defined(__GNUC_MINOR__) +# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) +#endif +#if defined(__GNUC_PATCHLEVEL__) +# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +#endif + +#elif defined(__PATHCC__) +# define COMPILER_ID "PathScale" +# define COMPILER_VERSION_MAJOR DEC(__PATHCC__) +# define COMPILER_VERSION_MINOR DEC(__PATHCC_MINOR__) +# if defined(__PATHCC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__PATHCC_PATCHLEVEL__) +# endif + +#elif defined(__BORLANDC__) && defined(__CODEGEARC_VERSION__) +# define COMPILER_ID "Embarcadero" +# define COMPILER_VERSION_MAJOR HEX(__CODEGEARC_VERSION__>>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_CC) +# define COMPILER_ID "SunPro" +# if __SUNPRO_CC >= 0x5100 + /* __SUNPRO_CC = 0xVRRP */ +# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>12) +# define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xFF) +# define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC & 0xF) +# else + /* __SUNPRO_CC = 0xVRP */ +# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>8) +# define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xF) +# define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC & 0xF) +# endif + +#elif defined(__HP_aCC) +# define COMPILER_ID "HP" + /* __HP_aCC = VVRRPP */ +# define COMPILER_VERSION_MAJOR DEC(__HP_aCC/10000) +# define COMPILER_VERSION_MINOR DEC(__HP_aCC/100 % 100) +# define COMPILER_VERSION_PATCH DEC(__HP_aCC % 100) + +#elif defined(__DECCXX) +# define COMPILER_ID "Compaq" + /* __DECCXX_VER = VVRRTPPPP */ +# define COMPILER_VERSION_MAJOR DEC(__DECCXX_VER/10000000) +# define COMPILER_VERSION_MINOR DEC(__DECCXX_VER/100000 % 100) +# define COMPILER_VERSION_PATCH DEC(__DECCXX_VER % 10000) + +#elif defined(__IBMCPP__) && defined(__COMPILER_VER__) +# define COMPILER_ID "zOS" + /* __IBMCPP__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 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(__IBMCPP__) && !defined(__COMPILER_VER__) && __IBMCPP__ >= 800 +# define COMPILER_ID "XL" + /* __IBMCPP__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) + +#elif defined(__IBMCPP__) && !defined(__COMPILER_VER__) && __IBMCPP__ < 800 +# define COMPILER_ID "VisualAge" + /* __IBMCPP__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 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(__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__) || defined(__GNUG__) +# define COMPILER_ID "GNU" +# if defined(__GNUC__) +# define COMPILER_VERSION_MAJOR DEC(__GNUC__) +# else +# define COMPILER_VERSION_MAJOR DEC(__GNUG__) +# endif +# 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__) + + + +/* 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 CXX_STD_98 199711L +#define CXX_STD_11 201103L +#define CXX_STD_14 201402L +#define CXX_STD_17 201703L +#define CXX_STD_20 202002L +#define CXX_STD_23 202302L + +#if defined(__INTEL_COMPILER) && defined(_MSVC_LANG) +# if _MSVC_LANG > CXX_STD_17 +# define CXX_STD _MSVC_LANG +# elif _MSVC_LANG == CXX_STD_17 && defined(__cpp_aggregate_paren_init) +# define CXX_STD CXX_STD_20 +# elif _MSVC_LANG > CXX_STD_14 && __cplusplus > CXX_STD_17 +# define CXX_STD CXX_STD_20 +# elif _MSVC_LANG > CXX_STD_14 +# define CXX_STD CXX_STD_17 +# elif defined(__INTEL_CXX11_MODE__) && defined(__cpp_aggregate_nsdmi) +# define CXX_STD CXX_STD_14 +# elif defined(__INTEL_CXX11_MODE__) +# define CXX_STD CXX_STD_11 +# else +# define CXX_STD CXX_STD_98 +# endif +#elif defined(_MSC_VER) && defined(_MSVC_LANG) +# if _MSVC_LANG > __cplusplus +# define CXX_STD _MSVC_LANG +# else +# define CXX_STD __cplusplus +# endif +#elif defined(__NVCOMPILER) +# if __cplusplus == CXX_STD_17 && defined(__cpp_aggregate_paren_init) +# define CXX_STD CXX_STD_20 +# else +# define CXX_STD __cplusplus +# endif +#elif defined(__INTEL_COMPILER) || defined(__PGI) +# if __cplusplus == CXX_STD_11 && defined(__cpp_namespace_attributes) +# define CXX_STD CXX_STD_17 +# elif __cplusplus == CXX_STD_11 && defined(__cpp_aggregate_nsdmi) +# define CXX_STD CXX_STD_14 +# else +# define CXX_STD __cplusplus +# endif +#elif (defined(__IBMCPP__) || defined(__ibmxl__)) && defined(__linux__) +# if __cplusplus == CXX_STD_11 && defined(__cpp_aggregate_nsdmi) +# define CXX_STD CXX_STD_14 +# else +# define CXX_STD __cplusplus +# endif +#elif __cplusplus == 1 && defined(__GXX_EXPERIMENTAL_CXX0X__) +# define CXX_STD CXX_STD_11 +#else +# define CXX_STD __cplusplus +#endif + +const char* info_language_standard_default = "INFO" ":" "standard_default[" +#if CXX_STD > CXX_STD_23 + "26" +#elif CXX_STD > CXX_STD_20 + "23" +#elif CXX_STD > CXX_STD_17 + "20" +#elif CXX_STD > CXX_STD_14 + "17" +#elif CXX_STD > CXX_STD_11 + "14" +#elif CXX_STD >= CXX_STD_11 + "11" +#else + "98" +#endif +"]"; + +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 +"]"; + +/*--------------------------------------------------------------------------*/ + +int main(int argc, char* argv[]) +{ + 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; +} diff --git a/build/CMakeFiles/4.1.1/CompilerIdCXX/a.out b/build/CMakeFiles/4.1.1/CompilerIdCXX/a.out new file mode 100755 index 000000000..b9b2fb453 Binary files /dev/null and b/build/CMakeFiles/4.1.1/CompilerIdCXX/a.out differ diff --git a/build/CMakeFiles/4.1.1/CompilerIdCXX/apple-sdk.cpp b/build/CMakeFiles/4.1.1/CompilerIdCXX/apple-sdk.cpp new file mode 100644 index 000000000..db846b4f5 --- /dev/null +++ b/build/CMakeFiles/4.1.1/CompilerIdCXX/apple-sdk.cpp @@ -0,0 +1 @@ +#include diff --git a/build/CMakeFiles/CMakeConfigureLog.yaml b/build/CMakeFiles/CMakeConfigureLog.yaml new file mode 100644 index 000000000..ca9c0fa91 --- /dev/null +++ b/build/CMakeFiles/CMakeConfigureLog.yaml @@ -0,0 +1,2787 @@ + +--- +events: + - + kind: "find-v1" + backtrace: + - "/opt/homebrew/share/cmake/Modules/CMakeDetermineSystem.cmake:12 (find_program)" + - "CMakeLists.txt:2 (project)" + mode: "program" + variable: "CMAKE_UNAME" + description: "Path to a program." + settings: + SearchFramework: "FIRST" + SearchAppBundle: "FIRST" + 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: + - "/Users/graf/.nvm/versions/node/v20.19.5/bin/" + - "/opt/homebrew/opt/openjdk@17/bin/" + - "/Users/graf/Library/Python/3.9/bin/" + - "/Users/graf/Library/Python/3.x/bin/" + - "/Users/graf/Library/Application Support/Code/User/globalStorage/github.copilot-chat/debugCommand/" + - "/Users/graf/Library/Application Support/Code/User/globalStorage/github.copilot-chat/copilotCli/" + - "/opt/homebrew/bin/" + - "/opt/homebrew/sbin/" + - "/usr/local/bin/" + - "/System/Cryptexes/App/usr/bin/" + - "/usr/bin/" + - "/bin/" + - "/usr/sbin/" + - "/sbin/" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin/" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin/" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin/" + - "/Library/Apple/usr/bin/" + - "/Users/graf/.dotnet/tools/" + - "/Users/graf/.sdkman/candidates/java/current/bin/" + - "/Users/graf/.cargo/bin/" + - "/Users/graf/Documents/GitHub/qubic-core/core/build/Unknown command/" + - "/Users/graf/Documents/GitHub/qubic-core/core/build/ bin To see a list of supported npm commands, run/" + - "/Users/graf/Documents/GitHub/qubic-core/core/build/ npm help/" + - "/Users/graf/.npm-global/bin/" + - "/Users/graf/.vscode/extensions/ms-python.debugpy-2025.18.0-darwin-arm64/bundled/scripts/noConfigScripts/" + - "/Users/graf/Documents/GitHub/qubic-core/core/build/ \"bin\"\n\nTo see a list of supported npm commands, run/" + - "/Users/graf/Documents/GitHub/qubic-core/core/build/\n npm help/" + searched_directories: + - "/Users/graf/.nvm/versions/node/v20.19.5/bin/uname" + - "/opt/homebrew/opt/openjdk@17/bin/uname" + - "/Users/graf/Library/Python/3.9/bin/uname" + - "/Users/graf/Library/Python/3.x/bin/uname" + - "/Users/graf/Library/Application Support/Code/User/globalStorage/github.copilot-chat/debugCommand/uname" + - "/Users/graf/Library/Application Support/Code/User/globalStorage/github.copilot-chat/copilotCli/uname" + - "/opt/homebrew/bin/uname" + - "/opt/homebrew/sbin/uname" + - "/usr/local/bin/uname" + - "/System/Cryptexes/App/usr/bin/uname" + found: "/usr/bin/uname" + search_context: + ENV{PATH}: + - "/Users/graf/.nvm/versions/node/v20.19.5/bin" + - "/opt/homebrew/opt/openjdk@17/bin" + - "/Users/graf/Library/Python/3.9/bin" + - "/Users/graf/Library/Python/3.x/bin" + - "/Users/graf/Library/Application Support/Code/User/globalStorage/github.copilot-chat/debugCommand" + - "/Users/graf/Library/Application Support/Code/User/globalStorage/github.copilot-chat/copilotCli" + - "/opt/homebrew/bin" + - "/opt/homebrew/bin" + - "/opt/homebrew/sbin" + - "/usr/local/bin" + - "/System/Cryptexes/App/usr/bin" + - "/usr/bin" + - "/bin" + - "/usr/sbin" + - "/sbin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin" + - "/Library/Apple/usr/bin" + - "~/.dotnet/tools" + - "/Users/graf/Library/Application Support/Code/User/globalStorage/github.copilot-chat/debugCommand" + - "/Users/graf/Library/Application Support/Code/User/globalStorage/github.copilot-chat/copilotCli" + - "/Users/graf/.nvm/versions/node/v20.19.5/bin" + - "/opt/homebrew/opt/openjdk@17/bin" + - "/Users/graf/.sdkman/candidates/java/current/bin" + - "/Users/graf/Library/Python/3.9/bin" + - "/Users/graf/Library/Python/3.x/bin" + - "/Users/graf/.cargo/bin" + - "Unknown command" + - " bin To see a list of supported npm commands, run" + - " npm help" + - "/Users/graf/.npm-global/bin" + - "/Users/graf/.vscode/extensions/ms-python.debugpy-2025.18.0-darwin-arm64/bundled/scripts/noConfigScripts" + - "Unknown command" + - " \"bin\"\n\nTo see a list of supported npm commands, run" + - "\n npm help" + - "/Users/graf/.npm-global/bin" + - + kind: "message-v1" + backtrace: + - "/opt/homebrew/share/cmake/Modules/CMakeDetermineSystem.cmake:212 (message)" + - "CMakeLists.txt:2 (project)" + message: | + The system is: Darwin - 24.3.0 - arm64 + - + kind: "find-v1" + backtrace: + - "/opt/homebrew/share/cmake/Modules/CMakeUnixFindMake.cmake:5 (find_program)" + - "CMakeLists.txt:2 (project)" + mode: "program" + variable: "CMAKE_MAKE_PROGRAM" + description: "Path to a program." + settings: + SearchFramework: "FIRST" + SearchAppBundle: "FIRST" + 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: + - "/Users/graf/.nvm/versions/node/v20.19.5/bin/" + - "/opt/homebrew/opt/openjdk@17/bin/" + - "/Users/graf/Library/Python/3.9/bin/" + - "/Users/graf/Library/Python/3.x/bin/" + - "/Users/graf/Library/Application Support/Code/User/globalStorage/github.copilot-chat/debugCommand/" + - "/Users/graf/Library/Application Support/Code/User/globalStorage/github.copilot-chat/copilotCli/" + - "/opt/homebrew/bin/" + - "/opt/homebrew/sbin/" + - "/usr/local/bin/" + - "/System/Cryptexes/App/usr/bin/" + - "/usr/bin/" + - "/bin/" + - "/usr/sbin/" + - "/sbin/" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin/" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin/" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin/" + - "/Library/Apple/usr/bin/" + - "/Users/graf/.dotnet/tools/" + - "/Users/graf/.sdkman/candidates/java/current/bin/" + - "/Users/graf/.cargo/bin/" + - "/Users/graf/Documents/GitHub/qubic-core/core/build/Unknown command/" + - "/Users/graf/Documents/GitHub/qubic-core/core/build/ bin To see a list of supported npm commands, run/" + - "/Users/graf/Documents/GitHub/qubic-core/core/build/ npm help/" + - "/Users/graf/.npm-global/bin/" + - "/Users/graf/.vscode/extensions/ms-python.debugpy-2025.18.0-darwin-arm64/bundled/scripts/noConfigScripts/" + - "/Users/graf/Documents/GitHub/qubic-core/core/build/ \"bin\"\n\nTo see a list of supported npm commands, run/" + - "/Users/graf/Documents/GitHub/qubic-core/core/build/\n npm help/" + searched_directories: + - "/Users/graf/.nvm/versions/node/v20.19.5/bin/gmake" + - "/opt/homebrew/opt/openjdk@17/bin/gmake" + - "/Users/graf/Library/Python/3.9/bin/gmake" + - "/Users/graf/Library/Python/3.x/bin/gmake" + - "/Users/graf/Library/Application Support/Code/User/globalStorage/github.copilot-chat/debugCommand/gmake" + - "/Users/graf/Library/Application Support/Code/User/globalStorage/github.copilot-chat/copilotCli/gmake" + - "/opt/homebrew/bin/gmake" + - "/opt/homebrew/sbin/gmake" + - "/usr/local/bin/gmake" + - "/System/Cryptexes/App/usr/bin/gmake" + - "/usr/bin/gmake" + - "/bin/gmake" + - "/usr/sbin/gmake" + - "/sbin/gmake" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin/gmake" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin/gmake" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin/gmake" + - "/Library/Apple/usr/bin/gmake" + - "/Users/graf/.dotnet/tools/gmake" + - "/Users/graf/.sdkman/candidates/java/current/bin/gmake" + - "/Users/graf/.cargo/bin/gmake" + - "/Users/graf/Documents/GitHub/qubic-core/core/build/Unknown command/gmake" + - "/Users/graf/Documents/GitHub/qubic-core/core/build/ bin To see a list of supported npm commands, run/gmake" + - "/Users/graf/Documents/GitHub/qubic-core/core/build/ npm help/gmake" + - "/Users/graf/.npm-global/bin/gmake" + - "/Users/graf/.vscode/extensions/ms-python.debugpy-2025.18.0-darwin-arm64/bundled/scripts/noConfigScripts/gmake" + - "/Users/graf/Documents/GitHub/qubic-core/core/build/ \"bin\"\n\nTo see a list of supported npm commands, run/gmake" + - "/Users/graf/Documents/GitHub/qubic-core/core/build/\n npm help/gmake" + - "/Users/graf/.nvm/versions/node/v20.19.5/bin/make" + - "/opt/homebrew/opt/openjdk@17/bin/make" + - "/Users/graf/Library/Python/3.9/bin/make" + - "/Users/graf/Library/Python/3.x/bin/make" + - "/Users/graf/Library/Application Support/Code/User/globalStorage/github.copilot-chat/debugCommand/make" + - "/Users/graf/Library/Application Support/Code/User/globalStorage/github.copilot-chat/copilotCli/make" + - "/opt/homebrew/bin/make" + - "/opt/homebrew/sbin/make" + - "/usr/local/bin/make" + - "/System/Cryptexes/App/usr/bin/make" + found: "/usr/bin/make" + search_context: + ENV{PATH}: + - "/Users/graf/.nvm/versions/node/v20.19.5/bin" + - "/opt/homebrew/opt/openjdk@17/bin" + - "/Users/graf/Library/Python/3.9/bin" + - "/Users/graf/Library/Python/3.x/bin" + - "/Users/graf/Library/Application Support/Code/User/globalStorage/github.copilot-chat/debugCommand" + - "/Users/graf/Library/Application Support/Code/User/globalStorage/github.copilot-chat/copilotCli" + - "/opt/homebrew/bin" + - "/opt/homebrew/bin" + - "/opt/homebrew/sbin" + - "/usr/local/bin" + - "/System/Cryptexes/App/usr/bin" + - "/usr/bin" + - "/bin" + - "/usr/sbin" + - "/sbin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin" + - "/Library/Apple/usr/bin" + - "~/.dotnet/tools" + - "/Users/graf/Library/Application Support/Code/User/globalStorage/github.copilot-chat/debugCommand" + - "/Users/graf/Library/Application Support/Code/User/globalStorage/github.copilot-chat/copilotCli" + - "/Users/graf/.nvm/versions/node/v20.19.5/bin" + - "/opt/homebrew/opt/openjdk@17/bin" + - "/Users/graf/.sdkman/candidates/java/current/bin" + - "/Users/graf/Library/Python/3.9/bin" + - "/Users/graf/Library/Python/3.x/bin" + - "/Users/graf/.cargo/bin" + - "Unknown command" + - " bin To see a list of supported npm commands, run" + - " npm help" + - "/Users/graf/.npm-global/bin" + - "/Users/graf/.vscode/extensions/ms-python.debugpy-2025.18.0-darwin-arm64/bundled/scripts/noConfigScripts" + - "Unknown command" + - " \"bin\"\n\nTo see a list of supported npm commands, run" + - "\n npm help" + - "/Users/graf/.npm-global/bin" + - + kind: "find-v1" + backtrace: + - "/opt/homebrew/share/cmake/Modules/CMakeDetermineCompiler.cmake:73 (find_program)" + - "/opt/homebrew/share/cmake/Modules/CMakeDetermineCXXCompiler.cmake:69 (_cmake_find_compiler)" + - "CMakeLists.txt:2 (project)" + mode: "program" + variable: "CMAKE_CXX_COMPILER" + description: "CXX compiler" + settings: + SearchFramework: "FIRST" + SearchAppBundle: "FIRST" + 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: + - "c++" + - "g++" + - "cl" + - "bcc" + - "icpx" + - "icx" + - "clang++" + candidate_directories: + - "/Users/graf/.nvm/versions/node/v20.19.5/bin/" + - "/opt/homebrew/opt/openjdk@17/bin/" + - "/Users/graf/Library/Python/3.9/bin/" + - "/Users/graf/Library/Python/3.x/bin/" + - "/Users/graf/Library/Application Support/Code/User/globalStorage/github.copilot-chat/debugCommand/" + - "/Users/graf/Library/Application Support/Code/User/globalStorage/github.copilot-chat/copilotCli/" + - "/opt/homebrew/bin/" + - "/opt/homebrew/sbin/" + - "/usr/local/bin/" + - "/System/Cryptexes/App/usr/bin/" + - "/usr/bin/" + - "/bin/" + - "/usr/sbin/" + - "/sbin/" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin/" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin/" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin/" + - "/Library/Apple/usr/bin/" + - "/Users/graf/.dotnet/tools/" + - "/Users/graf/.sdkman/candidates/java/current/bin/" + - "/Users/graf/.cargo/bin/" + - "/Users/graf/Documents/GitHub/qubic-core/core/build/Unknown command/" + - "/Users/graf/Documents/GitHub/qubic-core/core/build/ bin To see a list of supported npm commands, run/" + - "/Users/graf/Documents/GitHub/qubic-core/core/build/ npm help/" + - "/Users/graf/.npm-global/bin/" + - "/Users/graf/.vscode/extensions/ms-python.debugpy-2025.18.0-darwin-arm64/bundled/scripts/noConfigScripts/" + - "/Users/graf/Documents/GitHub/qubic-core/core/build/ \"bin\"\n\nTo see a list of supported npm commands, run/" + - "/Users/graf/Documents/GitHub/qubic-core/core/build/\n npm help/" + searched_directories: + - "/Users/graf/.nvm/versions/node/v20.19.5/bin/c++" + - "/opt/homebrew/opt/openjdk@17/bin/c++" + - "/Users/graf/Library/Python/3.9/bin/c++" + - "/Users/graf/Library/Python/3.x/bin/c++" + - "/Users/graf/Library/Application Support/Code/User/globalStorage/github.copilot-chat/debugCommand/c++" + - "/Users/graf/Library/Application Support/Code/User/globalStorage/github.copilot-chat/copilotCli/c++" + - "/opt/homebrew/bin/c++" + - "/opt/homebrew/sbin/c++" + - "/usr/local/bin/c++" + - "/System/Cryptexes/App/usr/bin/c++" + found: "/usr/bin/c++" + search_context: + ENV{PATH}: + - "/Users/graf/.nvm/versions/node/v20.19.5/bin" + - "/opt/homebrew/opt/openjdk@17/bin" + - "/Users/graf/Library/Python/3.9/bin" + - "/Users/graf/Library/Python/3.x/bin" + - "/Users/graf/Library/Application Support/Code/User/globalStorage/github.copilot-chat/debugCommand" + - "/Users/graf/Library/Application Support/Code/User/globalStorage/github.copilot-chat/copilotCli" + - "/opt/homebrew/bin" + - "/opt/homebrew/bin" + - "/opt/homebrew/sbin" + - "/usr/local/bin" + - "/System/Cryptexes/App/usr/bin" + - "/usr/bin" + - "/bin" + - "/usr/sbin" + - "/sbin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin" + - "/Library/Apple/usr/bin" + - "~/.dotnet/tools" + - "/Users/graf/Library/Application Support/Code/User/globalStorage/github.copilot-chat/debugCommand" + - "/Users/graf/Library/Application Support/Code/User/globalStorage/github.copilot-chat/copilotCli" + - "/Users/graf/.nvm/versions/node/v20.19.5/bin" + - "/opt/homebrew/opt/openjdk@17/bin" + - "/Users/graf/.sdkman/candidates/java/current/bin" + - "/Users/graf/Library/Python/3.9/bin" + - "/Users/graf/Library/Python/3.x/bin" + - "/Users/graf/.cargo/bin" + - "Unknown command" + - " bin To see a list of supported npm commands, run" + - " npm help" + - "/Users/graf/.npm-global/bin" + - "/Users/graf/.vscode/extensions/ms-python.debugpy-2025.18.0-darwin-arm64/bundled/scripts/noConfigScripts" + - "Unknown command" + - " \"bin\"\n\nTo see a list of supported npm commands, run" + - "\n npm help" + - "/Users/graf/.npm-global/bin" + - + kind: "find-v1" + backtrace: + - "/opt/homebrew/share/cmake/Modules/CMakeDetermineCompilerId.cmake:462 (find_file)" + - "/opt/homebrew/share/cmake/Modules/CMakeDetermineCompilerId.cmake:500 (CMAKE_DETERMINE_COMPILER_ID_WRITE)" + - "/opt/homebrew/share/cmake/Modules/CMakeDetermineCompilerId.cmake:8 (CMAKE_DETERMINE_COMPILER_ID_BUILD)" + - "/opt/homebrew/share/cmake/Modules/CMakeDetermineCompilerId.cmake:64 (__determine_compiler_id_test)" + - "/opt/homebrew/share/cmake/Modules/CMakeDetermineCXXCompiler.cmake:125 (CMAKE_DETERMINE_COMPILER_ID)" + - "CMakeLists.txt:2 (project)" + mode: "file" + variable: "src_in" + description: "Path to a file." + settings: + SearchFramework: "FIRST" + SearchAppBundle: "FIRST" + 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: + - "CMakeCXXCompilerId.cpp.in" + candidate_directories: + - "/opt/homebrew/share/cmake/Modules/" + found: "/opt/homebrew/share/cmake/Modules/CMakeCXXCompilerId.cpp.in" + search_context: + ENV{PATH}: + - "/Users/graf/.nvm/versions/node/v20.19.5/bin" + - "/opt/homebrew/opt/openjdk@17/bin" + - "/Users/graf/Library/Python/3.9/bin" + - "/Users/graf/Library/Python/3.x/bin" + - "/Users/graf/Library/Application Support/Code/User/globalStorage/github.copilot-chat/debugCommand" + - "/Users/graf/Library/Application Support/Code/User/globalStorage/github.copilot-chat/copilotCli" + - "/opt/homebrew/bin" + - "/opt/homebrew/bin" + - "/opt/homebrew/sbin" + - "/usr/local/bin" + - "/System/Cryptexes/App/usr/bin" + - "/usr/bin" + - "/bin" + - "/usr/sbin" + - "/sbin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin" + - "/Library/Apple/usr/bin" + - "~/.dotnet/tools" + - "/Users/graf/Library/Application Support/Code/User/globalStorage/github.copilot-chat/debugCommand" + - "/Users/graf/Library/Application Support/Code/User/globalStorage/github.copilot-chat/copilotCli" + - "/Users/graf/.nvm/versions/node/v20.19.5/bin" + - "/opt/homebrew/opt/openjdk@17/bin" + - "/Users/graf/.sdkman/candidates/java/current/bin" + - "/Users/graf/Library/Python/3.9/bin" + - "/Users/graf/Library/Python/3.x/bin" + - "/Users/graf/.cargo/bin" + - "Unknown command" + - " bin To see a list of supported npm commands, run" + - " npm help" + - "/Users/graf/.npm-global/bin" + - "/Users/graf/.vscode/extensions/ms-python.debugpy-2025.18.0-darwin-arm64/bundled/scripts/noConfigScripts" + - "Unknown command" + - " \"bin\"\n\nTo see a list of supported npm commands, run" + - "\n npm help" + - "/Users/graf/.npm-global/bin" + - + kind: "message-v1" + backtrace: + - "/opt/homebrew/share/cmake/Modules/CMakeDetermineCompilerId.cmake:17 (message)" + - "/opt/homebrew/share/cmake/Modules/CMakeDetermineCompilerId.cmake:64 (__determine_compiler_id_test)" + - "/opt/homebrew/share/cmake/Modules/CMakeDetermineCXXCompiler.cmake:125 (CMAKE_DETERMINE_COMPILER_ID)" + - "CMakeLists.txt:2 (project)" + message: | + Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" succeeded. + Compiler: /usr/bin/c++ + Build flags: + Id flags: + + The output was: + 0 + + + Compilation of the CXX compiler identification source "CMakeCXXCompilerId.cpp" produced "a.out" + + The CXX compiler identification is AppleClang, found in: + /Users/graf/Documents/GitHub/qubic-core/core/build/CMakeFiles/4.1.1/CompilerIdCXX/a.out + + - + kind: "message-v1" + backtrace: + - "/opt/homebrew/share/cmake/Modules/CMakeDetermineCompilerId.cmake:290 (message)" + - "/opt/homebrew/share/cmake/Modules/CMakeDetermineCXXCompiler.cmake:125 (CMAKE_DETERMINE_COMPILER_ID)" + - "CMakeLists.txt:2 (project)" + message: | + Detecting CXX compiler apple sysroot: "/usr/bin/c++" "-E" "apple-sdk.cpp" + # 1 "apple-sdk.cpp" + # 1 "" 1 + # 1 "" 3 + # 513 "" 3 + # 1 "" 1 + # 1 "" 2 + # 1 "apple-sdk.cpp" 2 + # 1 "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/AvailabilityMacros.h" 1 3 4 + # 89 "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/AvailabilityMacros.h" 3 4 + # 1 "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/AvailabilityVersions.h" 1 3 4 + # 90 "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/AvailabilityMacros.h" 2 3 4 + # 1 "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/TargetConditionals.h" 1 3 4 + # 91 "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/AvailabilityMacros.h" 2 3 4 + # 207 "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/AvailabilityMacros.h" 3 4 + # 1 "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/Availability.h" 1 3 4 + # 196 "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/Availability.h" 3 4 + # 1 "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/AvailabilityVersions.h" 1 3 4 + # 197 "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/Availability.h" 2 3 4 + # 1 "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/AvailabilityInternal.h" 1 3 4 + # 33 "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/AvailabilityInternal.h" 3 4 + # 1 "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/AvailabilityVersions.h" 1 3 4 + # 34 "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/AvailabilityInternal.h" 2 3 4 + # 198 "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/Availability.h" 2 3 4 + # 1 "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/AvailabilityInternalLegacy.h" 1 3 4 + # 34 "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/AvailabilityInternalLegacy.h" 3 4 + # 1 "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/AvailabilityInternal.h" 1 3 4 + # 35 "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/AvailabilityInternalLegacy.h" 2 3 4 + # 199 "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/Availability.h" 2 3 4 + # 208 "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/AvailabilityMacros.h" 2 3 4 + # 2 "apple-sdk.cpp" 2 + + + Found apple sysroot: /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk + - + kind: "find-v1" + backtrace: + - "/opt/homebrew/share/cmake/Modules/CMakeFindBinUtils.cmake:238 (find_program)" + - "/opt/homebrew/share/cmake/Modules/CMakeDetermineCXXCompiler.cmake:206 (include)" + - "CMakeLists.txt:2 (project)" + mode: "program" + variable: "CMAKE_AR" + description: "Path to a program." + settings: + SearchFramework: "FIRST" + SearchAppBundle: "FIRST" + 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/" + - "/Users/graf/.nvm/versions/node/v20.19.5/bin/" + - "/opt/homebrew/opt/openjdk@17/bin/" + - "/Users/graf/Library/Python/3.9/bin/" + - "/Users/graf/Library/Python/3.x/bin/" + - "/Users/graf/Library/Application Support/Code/User/globalStorage/github.copilot-chat/debugCommand/" + - "/Users/graf/Library/Application Support/Code/User/globalStorage/github.copilot-chat/copilotCli/" + - "/opt/homebrew/bin/" + - "/opt/homebrew/sbin/" + - "/usr/local/bin/" + - "/System/Cryptexes/App/usr/bin/" + - "/bin/" + - "/usr/sbin/" + - "/sbin/" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin/" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin/" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin/" + - "/Library/Apple/usr/bin/" + - "/Users/graf/.dotnet/tools/" + - "/Users/graf/.sdkman/candidates/java/current/bin/" + - "/Users/graf/.cargo/bin/" + - "/Users/graf/Documents/GitHub/qubic-core/core/build/Unknown command/" + - "/Users/graf/Documents/GitHub/qubic-core/core/build/ bin To see a list of supported npm commands, run/" + - "/Users/graf/Documents/GitHub/qubic-core/core/build/ npm help/" + - "/Users/graf/.npm-global/bin/" + - "/Users/graf/.vscode/extensions/ms-python.debugpy-2025.18.0-darwin-arm64/bundled/scripts/noConfigScripts/" + - "/Users/graf/Documents/GitHub/qubic-core/core/build/ \"bin\"\n\nTo see a list of supported npm commands, run/" + - "/Users/graf/Documents/GitHub/qubic-core/core/build/\n npm help/" + found: "/usr/bin/ar" + search_context: + ENV{PATH}: + - "/Users/graf/.nvm/versions/node/v20.19.5/bin" + - "/opt/homebrew/opt/openjdk@17/bin" + - "/Users/graf/Library/Python/3.9/bin" + - "/Users/graf/Library/Python/3.x/bin" + - "/Users/graf/Library/Application Support/Code/User/globalStorage/github.copilot-chat/debugCommand" + - "/Users/graf/Library/Application Support/Code/User/globalStorage/github.copilot-chat/copilotCli" + - "/opt/homebrew/bin" + - "/opt/homebrew/bin" + - "/opt/homebrew/sbin" + - "/usr/local/bin" + - "/System/Cryptexes/App/usr/bin" + - "/usr/bin" + - "/bin" + - "/usr/sbin" + - "/sbin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin" + - "/Library/Apple/usr/bin" + - "~/.dotnet/tools" + - "/Users/graf/Library/Application Support/Code/User/globalStorage/github.copilot-chat/debugCommand" + - "/Users/graf/Library/Application Support/Code/User/globalStorage/github.copilot-chat/copilotCli" + - "/Users/graf/.nvm/versions/node/v20.19.5/bin" + - "/opt/homebrew/opt/openjdk@17/bin" + - "/Users/graf/.sdkman/candidates/java/current/bin" + - "/Users/graf/Library/Python/3.9/bin" + - "/Users/graf/Library/Python/3.x/bin" + - "/Users/graf/.cargo/bin" + - "Unknown command" + - " bin To see a list of supported npm commands, run" + - " npm help" + - "/Users/graf/.npm-global/bin" + - "/Users/graf/.vscode/extensions/ms-python.debugpy-2025.18.0-darwin-arm64/bundled/scripts/noConfigScripts" + - "Unknown command" + - " \"bin\"\n\nTo see a list of supported npm commands, run" + - "\n npm help" + - "/Users/graf/.npm-global/bin" + - + kind: "find-v1" + backtrace: + - "/opt/homebrew/share/cmake/Modules/CMakeFindBinUtils.cmake:238 (find_program)" + - "/opt/homebrew/share/cmake/Modules/CMakeDetermineCXXCompiler.cmake:206 (include)" + - "CMakeLists.txt:2 (project)" + mode: "program" + variable: "CMAKE_RANLIB" + description: "Path to a program." + settings: + SearchFramework: "FIRST" + SearchAppBundle: "FIRST" + 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/" + - "/Users/graf/.nvm/versions/node/v20.19.5/bin/" + - "/opt/homebrew/opt/openjdk@17/bin/" + - "/Users/graf/Library/Python/3.9/bin/" + - "/Users/graf/Library/Python/3.x/bin/" + - "/Users/graf/Library/Application Support/Code/User/globalStorage/github.copilot-chat/debugCommand/" + - "/Users/graf/Library/Application Support/Code/User/globalStorage/github.copilot-chat/copilotCli/" + - "/opt/homebrew/bin/" + - "/opt/homebrew/sbin/" + - "/usr/local/bin/" + - "/System/Cryptexes/App/usr/bin/" + - "/bin/" + - "/usr/sbin/" + - "/sbin/" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin/" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin/" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin/" + - "/Library/Apple/usr/bin/" + - "/Users/graf/.dotnet/tools/" + - "/Users/graf/.sdkman/candidates/java/current/bin/" + - "/Users/graf/.cargo/bin/" + - "/Users/graf/Documents/GitHub/qubic-core/core/build/Unknown command/" + - "/Users/graf/Documents/GitHub/qubic-core/core/build/ bin To see a list of supported npm commands, run/" + - "/Users/graf/Documents/GitHub/qubic-core/core/build/ npm help/" + - "/Users/graf/.npm-global/bin/" + - "/Users/graf/.vscode/extensions/ms-python.debugpy-2025.18.0-darwin-arm64/bundled/scripts/noConfigScripts/" + - "/Users/graf/Documents/GitHub/qubic-core/core/build/ \"bin\"\n\nTo see a list of supported npm commands, run/" + - "/Users/graf/Documents/GitHub/qubic-core/core/build/\n npm help/" + found: "/usr/bin/ranlib" + search_context: + ENV{PATH}: + - "/Users/graf/.nvm/versions/node/v20.19.5/bin" + - "/opt/homebrew/opt/openjdk@17/bin" + - "/Users/graf/Library/Python/3.9/bin" + - "/Users/graf/Library/Python/3.x/bin" + - "/Users/graf/Library/Application Support/Code/User/globalStorage/github.copilot-chat/debugCommand" + - "/Users/graf/Library/Application Support/Code/User/globalStorage/github.copilot-chat/copilotCli" + - "/opt/homebrew/bin" + - "/opt/homebrew/bin" + - "/opt/homebrew/sbin" + - "/usr/local/bin" + - "/System/Cryptexes/App/usr/bin" + - "/usr/bin" + - "/bin" + - "/usr/sbin" + - "/sbin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin" + - "/Library/Apple/usr/bin" + - "~/.dotnet/tools" + - "/Users/graf/Library/Application Support/Code/User/globalStorage/github.copilot-chat/debugCommand" + - "/Users/graf/Library/Application Support/Code/User/globalStorage/github.copilot-chat/copilotCli" + - "/Users/graf/.nvm/versions/node/v20.19.5/bin" + - "/opt/homebrew/opt/openjdk@17/bin" + - "/Users/graf/.sdkman/candidates/java/current/bin" + - "/Users/graf/Library/Python/3.9/bin" + - "/Users/graf/Library/Python/3.x/bin" + - "/Users/graf/.cargo/bin" + - "Unknown command" + - " bin To see a list of supported npm commands, run" + - " npm help" + - "/Users/graf/.npm-global/bin" + - "/Users/graf/.vscode/extensions/ms-python.debugpy-2025.18.0-darwin-arm64/bundled/scripts/noConfigScripts" + - "Unknown command" + - " \"bin\"\n\nTo see a list of supported npm commands, run" + - "\n npm help" + - "/Users/graf/.npm-global/bin" + - + kind: "find-v1" + backtrace: + - "/opt/homebrew/share/cmake/Modules/CMakeFindBinUtils.cmake:238 (find_program)" + - "/opt/homebrew/share/cmake/Modules/CMakeDetermineCXXCompiler.cmake:206 (include)" + - "CMakeLists.txt:2 (project)" + mode: "program" + variable: "CMAKE_STRIP" + description: "Path to a program." + settings: + SearchFramework: "FIRST" + SearchAppBundle: "FIRST" + 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/" + - "/Users/graf/.nvm/versions/node/v20.19.5/bin/" + - "/opt/homebrew/opt/openjdk@17/bin/" + - "/Users/graf/Library/Python/3.9/bin/" + - "/Users/graf/Library/Python/3.x/bin/" + - "/Users/graf/Library/Application Support/Code/User/globalStorage/github.copilot-chat/debugCommand/" + - "/Users/graf/Library/Application Support/Code/User/globalStorage/github.copilot-chat/copilotCli/" + - "/opt/homebrew/bin/" + - "/opt/homebrew/sbin/" + - "/usr/local/bin/" + - "/System/Cryptexes/App/usr/bin/" + - "/bin/" + - "/usr/sbin/" + - "/sbin/" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin/" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin/" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin/" + - "/Library/Apple/usr/bin/" + - "/Users/graf/.dotnet/tools/" + - "/Users/graf/.sdkman/candidates/java/current/bin/" + - "/Users/graf/.cargo/bin/" + - "/Users/graf/Documents/GitHub/qubic-core/core/build/Unknown command/" + - "/Users/graf/Documents/GitHub/qubic-core/core/build/ bin To see a list of supported npm commands, run/" + - "/Users/graf/Documents/GitHub/qubic-core/core/build/ npm help/" + - "/Users/graf/.npm-global/bin/" + - "/Users/graf/.vscode/extensions/ms-python.debugpy-2025.18.0-darwin-arm64/bundled/scripts/noConfigScripts/" + - "/Users/graf/Documents/GitHub/qubic-core/core/build/ \"bin\"\n\nTo see a list of supported npm commands, run/" + - "/Users/graf/Documents/GitHub/qubic-core/core/build/\n npm help/" + found: "/usr/bin/strip" + search_context: + ENV{PATH}: + - "/Users/graf/.nvm/versions/node/v20.19.5/bin" + - "/opt/homebrew/opt/openjdk@17/bin" + - "/Users/graf/Library/Python/3.9/bin" + - "/Users/graf/Library/Python/3.x/bin" + - "/Users/graf/Library/Application Support/Code/User/globalStorage/github.copilot-chat/debugCommand" + - "/Users/graf/Library/Application Support/Code/User/globalStorage/github.copilot-chat/copilotCli" + - "/opt/homebrew/bin" + - "/opt/homebrew/bin" + - "/opt/homebrew/sbin" + - "/usr/local/bin" + - "/System/Cryptexes/App/usr/bin" + - "/usr/bin" + - "/bin" + - "/usr/sbin" + - "/sbin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin" + - "/Library/Apple/usr/bin" + - "~/.dotnet/tools" + - "/Users/graf/Library/Application Support/Code/User/globalStorage/github.copilot-chat/debugCommand" + - "/Users/graf/Library/Application Support/Code/User/globalStorage/github.copilot-chat/copilotCli" + - "/Users/graf/.nvm/versions/node/v20.19.5/bin" + - "/opt/homebrew/opt/openjdk@17/bin" + - "/Users/graf/.sdkman/candidates/java/current/bin" + - "/Users/graf/Library/Python/3.9/bin" + - "/Users/graf/Library/Python/3.x/bin" + - "/Users/graf/.cargo/bin" + - "Unknown command" + - " bin To see a list of supported npm commands, run" + - " npm help" + - "/Users/graf/.npm-global/bin" + - "/Users/graf/.vscode/extensions/ms-python.debugpy-2025.18.0-darwin-arm64/bundled/scripts/noConfigScripts" + - "Unknown command" + - " \"bin\"\n\nTo see a list of supported npm commands, run" + - "\n npm help" + - "/Users/graf/.npm-global/bin" + - + kind: "find-v1" + backtrace: + - "/opt/homebrew/share/cmake/Modules/CMakeFindBinUtils.cmake:238 (find_program)" + - "/opt/homebrew/share/cmake/Modules/CMakeDetermineCXXCompiler.cmake:206 (include)" + - "CMakeLists.txt:2 (project)" + mode: "program" + variable: "CMAKE_LINKER" + description: "Path to a program." + settings: + SearchFramework: "FIRST" + SearchAppBundle: "FIRST" + 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/" + - "/Users/graf/.nvm/versions/node/v20.19.5/bin/" + - "/opt/homebrew/opt/openjdk@17/bin/" + - "/Users/graf/Library/Python/3.9/bin/" + - "/Users/graf/Library/Python/3.x/bin/" + - "/Users/graf/Library/Application Support/Code/User/globalStorage/github.copilot-chat/debugCommand/" + - "/Users/graf/Library/Application Support/Code/User/globalStorage/github.copilot-chat/copilotCli/" + - "/opt/homebrew/bin/" + - "/opt/homebrew/sbin/" + - "/usr/local/bin/" + - "/System/Cryptexes/App/usr/bin/" + - "/bin/" + - "/usr/sbin/" + - "/sbin/" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin/" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin/" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin/" + - "/Library/Apple/usr/bin/" + - "/Users/graf/.dotnet/tools/" + - "/Users/graf/.sdkman/candidates/java/current/bin/" + - "/Users/graf/.cargo/bin/" + - "/Users/graf/Documents/GitHub/qubic-core/core/build/Unknown command/" + - "/Users/graf/Documents/GitHub/qubic-core/core/build/ bin To see a list of supported npm commands, run/" + - "/Users/graf/Documents/GitHub/qubic-core/core/build/ npm help/" + - "/Users/graf/.npm-global/bin/" + - "/Users/graf/.vscode/extensions/ms-python.debugpy-2025.18.0-darwin-arm64/bundled/scripts/noConfigScripts/" + - "/Users/graf/Documents/GitHub/qubic-core/core/build/ \"bin\"\n\nTo see a list of supported npm commands, run/" + - "/Users/graf/Documents/GitHub/qubic-core/core/build/\n npm help/" + found: "/usr/bin/ld" + search_context: + ENV{PATH}: + - "/Users/graf/.nvm/versions/node/v20.19.5/bin" + - "/opt/homebrew/opt/openjdk@17/bin" + - "/Users/graf/Library/Python/3.9/bin" + - "/Users/graf/Library/Python/3.x/bin" + - "/Users/graf/Library/Application Support/Code/User/globalStorage/github.copilot-chat/debugCommand" + - "/Users/graf/Library/Application Support/Code/User/globalStorage/github.copilot-chat/copilotCli" + - "/opt/homebrew/bin" + - "/opt/homebrew/bin" + - "/opt/homebrew/sbin" + - "/usr/local/bin" + - "/System/Cryptexes/App/usr/bin" + - "/usr/bin" + - "/bin" + - "/usr/sbin" + - "/sbin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin" + - "/Library/Apple/usr/bin" + - "~/.dotnet/tools" + - "/Users/graf/Library/Application Support/Code/User/globalStorage/github.copilot-chat/debugCommand" + - "/Users/graf/Library/Application Support/Code/User/globalStorage/github.copilot-chat/copilotCli" + - "/Users/graf/.nvm/versions/node/v20.19.5/bin" + - "/opt/homebrew/opt/openjdk@17/bin" + - "/Users/graf/.sdkman/candidates/java/current/bin" + - "/Users/graf/Library/Python/3.9/bin" + - "/Users/graf/Library/Python/3.x/bin" + - "/Users/graf/.cargo/bin" + - "Unknown command" + - " bin To see a list of supported npm commands, run" + - " npm help" + - "/Users/graf/.npm-global/bin" + - "/Users/graf/.vscode/extensions/ms-python.debugpy-2025.18.0-darwin-arm64/bundled/scripts/noConfigScripts" + - "Unknown command" + - " \"bin\"\n\nTo see a list of supported npm commands, run" + - "\n npm help" + - "/Users/graf/.npm-global/bin" + - + kind: "find-v1" + backtrace: + - "/opt/homebrew/share/cmake/Modules/CMakeFindBinUtils.cmake:238 (find_program)" + - "/opt/homebrew/share/cmake/Modules/CMakeDetermineCXXCompiler.cmake:206 (include)" + - "CMakeLists.txt:2 (project)" + mode: "program" + variable: "CMAKE_NM" + description: "Path to a program." + settings: + SearchFramework: "FIRST" + SearchAppBundle: "FIRST" + 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/" + - "/Users/graf/.nvm/versions/node/v20.19.5/bin/" + - "/opt/homebrew/opt/openjdk@17/bin/" + - "/Users/graf/Library/Python/3.9/bin/" + - "/Users/graf/Library/Python/3.x/bin/" + - "/Users/graf/Library/Application Support/Code/User/globalStorage/github.copilot-chat/debugCommand/" + - "/Users/graf/Library/Application Support/Code/User/globalStorage/github.copilot-chat/copilotCli/" + - "/opt/homebrew/bin/" + - "/opt/homebrew/sbin/" + - "/usr/local/bin/" + - "/System/Cryptexes/App/usr/bin/" + - "/bin/" + - "/usr/sbin/" + - "/sbin/" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin/" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin/" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin/" + - "/Library/Apple/usr/bin/" + - "/Users/graf/.dotnet/tools/" + - "/Users/graf/.sdkman/candidates/java/current/bin/" + - "/Users/graf/.cargo/bin/" + - "/Users/graf/Documents/GitHub/qubic-core/core/build/Unknown command/" + - "/Users/graf/Documents/GitHub/qubic-core/core/build/ bin To see a list of supported npm commands, run/" + - "/Users/graf/Documents/GitHub/qubic-core/core/build/ npm help/" + - "/Users/graf/.npm-global/bin/" + - "/Users/graf/.vscode/extensions/ms-python.debugpy-2025.18.0-darwin-arm64/bundled/scripts/noConfigScripts/" + - "/Users/graf/Documents/GitHub/qubic-core/core/build/ \"bin\"\n\nTo see a list of supported npm commands, run/" + - "/Users/graf/Documents/GitHub/qubic-core/core/build/\n npm help/" + found: "/usr/bin/nm" + search_context: + ENV{PATH}: + - "/Users/graf/.nvm/versions/node/v20.19.5/bin" + - "/opt/homebrew/opt/openjdk@17/bin" + - "/Users/graf/Library/Python/3.9/bin" + - "/Users/graf/Library/Python/3.x/bin" + - "/Users/graf/Library/Application Support/Code/User/globalStorage/github.copilot-chat/debugCommand" + - "/Users/graf/Library/Application Support/Code/User/globalStorage/github.copilot-chat/copilotCli" + - "/opt/homebrew/bin" + - "/opt/homebrew/bin" + - "/opt/homebrew/sbin" + - "/usr/local/bin" + - "/System/Cryptexes/App/usr/bin" + - "/usr/bin" + - "/bin" + - "/usr/sbin" + - "/sbin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin" + - "/Library/Apple/usr/bin" + - "~/.dotnet/tools" + - "/Users/graf/Library/Application Support/Code/User/globalStorage/github.copilot-chat/debugCommand" + - "/Users/graf/Library/Application Support/Code/User/globalStorage/github.copilot-chat/copilotCli" + - "/Users/graf/.nvm/versions/node/v20.19.5/bin" + - "/opt/homebrew/opt/openjdk@17/bin" + - "/Users/graf/.sdkman/candidates/java/current/bin" + - "/Users/graf/Library/Python/3.9/bin" + - "/Users/graf/Library/Python/3.x/bin" + - "/Users/graf/.cargo/bin" + - "Unknown command" + - " bin To see a list of supported npm commands, run" + - " npm help" + - "/Users/graf/.npm-global/bin" + - "/Users/graf/.vscode/extensions/ms-python.debugpy-2025.18.0-darwin-arm64/bundled/scripts/noConfigScripts" + - "Unknown command" + - " \"bin\"\n\nTo see a list of supported npm commands, run" + - "\n npm help" + - "/Users/graf/.npm-global/bin" + - + kind: "find-v1" + backtrace: + - "/opt/homebrew/share/cmake/Modules/CMakeFindBinUtils.cmake:238 (find_program)" + - "/opt/homebrew/share/cmake/Modules/CMakeDetermineCXXCompiler.cmake:206 (include)" + - "CMakeLists.txt:2 (project)" + mode: "program" + variable: "CMAKE_OBJDUMP" + description: "Path to a program." + settings: + SearchFramework: "FIRST" + SearchAppBundle: "FIRST" + 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/" + - "/Users/graf/.nvm/versions/node/v20.19.5/bin/" + - "/opt/homebrew/opt/openjdk@17/bin/" + - "/Users/graf/Library/Python/3.9/bin/" + - "/Users/graf/Library/Python/3.x/bin/" + - "/Users/graf/Library/Application Support/Code/User/globalStorage/github.copilot-chat/debugCommand/" + - "/Users/graf/Library/Application Support/Code/User/globalStorage/github.copilot-chat/copilotCli/" + - "/opt/homebrew/bin/" + - "/opt/homebrew/sbin/" + - "/usr/local/bin/" + - "/System/Cryptexes/App/usr/bin/" + - "/bin/" + - "/usr/sbin/" + - "/sbin/" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin/" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin/" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin/" + - "/Library/Apple/usr/bin/" + - "/Users/graf/.dotnet/tools/" + - "/Users/graf/.sdkman/candidates/java/current/bin/" + - "/Users/graf/.cargo/bin/" + - "/Users/graf/Documents/GitHub/qubic-core/core/build/Unknown command/" + - "/Users/graf/Documents/GitHub/qubic-core/core/build/ bin To see a list of supported npm commands, run/" + - "/Users/graf/Documents/GitHub/qubic-core/core/build/ npm help/" + - "/Users/graf/.npm-global/bin/" + - "/Users/graf/.vscode/extensions/ms-python.debugpy-2025.18.0-darwin-arm64/bundled/scripts/noConfigScripts/" + - "/Users/graf/Documents/GitHub/qubic-core/core/build/ \"bin\"\n\nTo see a list of supported npm commands, run/" + - "/Users/graf/Documents/GitHub/qubic-core/core/build/\n npm help/" + found: "/usr/bin/objdump" + search_context: + ENV{PATH}: + - "/Users/graf/.nvm/versions/node/v20.19.5/bin" + - "/opt/homebrew/opt/openjdk@17/bin" + - "/Users/graf/Library/Python/3.9/bin" + - "/Users/graf/Library/Python/3.x/bin" + - "/Users/graf/Library/Application Support/Code/User/globalStorage/github.copilot-chat/debugCommand" + - "/Users/graf/Library/Application Support/Code/User/globalStorage/github.copilot-chat/copilotCli" + - "/opt/homebrew/bin" + - "/opt/homebrew/bin" + - "/opt/homebrew/sbin" + - "/usr/local/bin" + - "/System/Cryptexes/App/usr/bin" + - "/usr/bin" + - "/bin" + - "/usr/sbin" + - "/sbin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin" + - "/Library/Apple/usr/bin" + - "~/.dotnet/tools" + - "/Users/graf/Library/Application Support/Code/User/globalStorage/github.copilot-chat/debugCommand" + - "/Users/graf/Library/Application Support/Code/User/globalStorage/github.copilot-chat/copilotCli" + - "/Users/graf/.nvm/versions/node/v20.19.5/bin" + - "/opt/homebrew/opt/openjdk@17/bin" + - "/Users/graf/.sdkman/candidates/java/current/bin" + - "/Users/graf/Library/Python/3.9/bin" + - "/Users/graf/Library/Python/3.x/bin" + - "/Users/graf/.cargo/bin" + - "Unknown command" + - " bin To see a list of supported npm commands, run" + - " npm help" + - "/Users/graf/.npm-global/bin" + - "/Users/graf/.vscode/extensions/ms-python.debugpy-2025.18.0-darwin-arm64/bundled/scripts/noConfigScripts" + - "Unknown command" + - " \"bin\"\n\nTo see a list of supported npm commands, run" + - "\n npm help" + - "/Users/graf/.npm-global/bin" + - + kind: "find-v1" + backtrace: + - "/opt/homebrew/share/cmake/Modules/CMakeFindBinUtils.cmake:238 (find_program)" + - "/opt/homebrew/share/cmake/Modules/CMakeDetermineCXXCompiler.cmake:206 (include)" + - "CMakeLists.txt:2 (project)" + mode: "program" + variable: "CMAKE_OBJCOPY" + description: "Path to a program." + settings: + SearchFramework: "FIRST" + SearchAppBundle: "FIRST" + 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/" + - "/Users/graf/.nvm/versions/node/v20.19.5/bin/" + - "/opt/homebrew/opt/openjdk@17/bin/" + - "/Users/graf/Library/Python/3.9/bin/" + - "/Users/graf/Library/Python/3.x/bin/" + - "/Users/graf/Library/Application Support/Code/User/globalStorage/github.copilot-chat/debugCommand/" + - "/Users/graf/Library/Application Support/Code/User/globalStorage/github.copilot-chat/copilotCli/" + - "/opt/homebrew/bin/" + - "/opt/homebrew/sbin/" + - "/usr/local/bin/" + - "/System/Cryptexes/App/usr/bin/" + - "/bin/" + - "/usr/sbin/" + - "/sbin/" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin/" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin/" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin/" + - "/Library/Apple/usr/bin/" + - "/Users/graf/.dotnet/tools/" + - "/Users/graf/.sdkman/candidates/java/current/bin/" + - "/Users/graf/.cargo/bin/" + - "/Users/graf/Documents/GitHub/qubic-core/core/build/Unknown command/" + - "/Users/graf/Documents/GitHub/qubic-core/core/build/ bin To see a list of supported npm commands, run/" + - "/Users/graf/Documents/GitHub/qubic-core/core/build/ npm help/" + - "/Users/graf/.npm-global/bin/" + - "/Users/graf/.vscode/extensions/ms-python.debugpy-2025.18.0-darwin-arm64/bundled/scripts/noConfigScripts/" + - "/Users/graf/Documents/GitHub/qubic-core/core/build/ \"bin\"\n\nTo see a list of supported npm commands, run/" + - "/Users/graf/Documents/GitHub/qubic-core/core/build/\n npm help/" + searched_directories: + - "/usr/bin/objcopy" + - "/Users/graf/.nvm/versions/node/v20.19.5/bin/objcopy" + - "/opt/homebrew/opt/openjdk@17/bin/objcopy" + - "/Users/graf/Library/Python/3.9/bin/objcopy" + - "/Users/graf/Library/Python/3.x/bin/objcopy" + - "/Users/graf/Library/Application Support/Code/User/globalStorage/github.copilot-chat/debugCommand/objcopy" + - "/Users/graf/Library/Application Support/Code/User/globalStorage/github.copilot-chat/copilotCli/objcopy" + - "/opt/homebrew/bin/objcopy" + - "/opt/homebrew/sbin/objcopy" + - "/usr/local/bin/objcopy" + - "/System/Cryptexes/App/usr/bin/objcopy" + - "/bin/objcopy" + - "/usr/sbin/objcopy" + - "/sbin/objcopy" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin/objcopy" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin/objcopy" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin/objcopy" + - "/Library/Apple/usr/bin/objcopy" + - "/Users/graf/.dotnet/tools/objcopy" + - "/Users/graf/.sdkman/candidates/java/current/bin/objcopy" + - "/Users/graf/.cargo/bin/objcopy" + - "/Users/graf/Documents/GitHub/qubic-core/core/build/Unknown command/objcopy" + - "/Users/graf/Documents/GitHub/qubic-core/core/build/ bin To see a list of supported npm commands, run/objcopy" + - "/Users/graf/Documents/GitHub/qubic-core/core/build/ npm help/objcopy" + - "/Users/graf/.npm-global/bin/objcopy" + - "/Users/graf/.vscode/extensions/ms-python.debugpy-2025.18.0-darwin-arm64/bundled/scripts/noConfigScripts/objcopy" + - "/Users/graf/Documents/GitHub/qubic-core/core/build/ \"bin\"\n\nTo see a list of supported npm commands, run/objcopy" + - "/Users/graf/Documents/GitHub/qubic-core/core/build/\n npm help/objcopy" + found: false + search_context: + ENV{PATH}: + - "/Users/graf/.nvm/versions/node/v20.19.5/bin" + - "/opt/homebrew/opt/openjdk@17/bin" + - "/Users/graf/Library/Python/3.9/bin" + - "/Users/graf/Library/Python/3.x/bin" + - "/Users/graf/Library/Application Support/Code/User/globalStorage/github.copilot-chat/debugCommand" + - "/Users/graf/Library/Application Support/Code/User/globalStorage/github.copilot-chat/copilotCli" + - "/opt/homebrew/bin" + - "/opt/homebrew/bin" + - "/opt/homebrew/sbin" + - "/usr/local/bin" + - "/System/Cryptexes/App/usr/bin" + - "/usr/bin" + - "/bin" + - "/usr/sbin" + - "/sbin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin" + - "/Library/Apple/usr/bin" + - "~/.dotnet/tools" + - "/Users/graf/Library/Application Support/Code/User/globalStorage/github.copilot-chat/debugCommand" + - "/Users/graf/Library/Application Support/Code/User/globalStorage/github.copilot-chat/copilotCli" + - "/Users/graf/.nvm/versions/node/v20.19.5/bin" + - "/opt/homebrew/opt/openjdk@17/bin" + - "/Users/graf/.sdkman/candidates/java/current/bin" + - "/Users/graf/Library/Python/3.9/bin" + - "/Users/graf/Library/Python/3.x/bin" + - "/Users/graf/.cargo/bin" + - "Unknown command" + - " bin To see a list of supported npm commands, run" + - " npm help" + - "/Users/graf/.npm-global/bin" + - "/Users/graf/.vscode/extensions/ms-python.debugpy-2025.18.0-darwin-arm64/bundled/scripts/noConfigScripts" + - "Unknown command" + - " \"bin\"\n\nTo see a list of supported npm commands, run" + - "\n npm help" + - "/Users/graf/.npm-global/bin" + - + kind: "find-v1" + backtrace: + - "/opt/homebrew/share/cmake/Modules/CMakeFindBinUtils.cmake:238 (find_program)" + - "/opt/homebrew/share/cmake/Modules/CMakeDetermineCXXCompiler.cmake:206 (include)" + - "CMakeLists.txt:2 (project)" + mode: "program" + variable: "CMAKE_READELF" + description: "Path to a program." + settings: + SearchFramework: "FIRST" + SearchAppBundle: "FIRST" + 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/" + - "/Users/graf/.nvm/versions/node/v20.19.5/bin/" + - "/opt/homebrew/opt/openjdk@17/bin/" + - "/Users/graf/Library/Python/3.9/bin/" + - "/Users/graf/Library/Python/3.x/bin/" + - "/Users/graf/Library/Application Support/Code/User/globalStorage/github.copilot-chat/debugCommand/" + - "/Users/graf/Library/Application Support/Code/User/globalStorage/github.copilot-chat/copilotCli/" + - "/opt/homebrew/bin/" + - "/opt/homebrew/sbin/" + - "/usr/local/bin/" + - "/System/Cryptexes/App/usr/bin/" + - "/bin/" + - "/usr/sbin/" + - "/sbin/" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin/" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin/" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin/" + - "/Library/Apple/usr/bin/" + - "/Users/graf/.dotnet/tools/" + - "/Users/graf/.sdkman/candidates/java/current/bin/" + - "/Users/graf/.cargo/bin/" + - "/Users/graf/Documents/GitHub/qubic-core/core/build/Unknown command/" + - "/Users/graf/Documents/GitHub/qubic-core/core/build/ bin To see a list of supported npm commands, run/" + - "/Users/graf/Documents/GitHub/qubic-core/core/build/ npm help/" + - "/Users/graf/.npm-global/bin/" + - "/Users/graf/.vscode/extensions/ms-python.debugpy-2025.18.0-darwin-arm64/bundled/scripts/noConfigScripts/" + - "/Users/graf/Documents/GitHub/qubic-core/core/build/ \"bin\"\n\nTo see a list of supported npm commands, run/" + - "/Users/graf/Documents/GitHub/qubic-core/core/build/\n npm help/" + searched_directories: + - "/usr/bin/readelf" + - "/Users/graf/.nvm/versions/node/v20.19.5/bin/readelf" + - "/opt/homebrew/opt/openjdk@17/bin/readelf" + - "/Users/graf/Library/Python/3.9/bin/readelf" + - "/Users/graf/Library/Python/3.x/bin/readelf" + - "/Users/graf/Library/Application Support/Code/User/globalStorage/github.copilot-chat/debugCommand/readelf" + - "/Users/graf/Library/Application Support/Code/User/globalStorage/github.copilot-chat/copilotCli/readelf" + - "/opt/homebrew/bin/readelf" + - "/opt/homebrew/sbin/readelf" + - "/usr/local/bin/readelf" + - "/System/Cryptexes/App/usr/bin/readelf" + - "/bin/readelf" + - "/usr/sbin/readelf" + - "/sbin/readelf" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin/readelf" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin/readelf" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin/readelf" + - "/Library/Apple/usr/bin/readelf" + - "/Users/graf/.dotnet/tools/readelf" + - "/Users/graf/.sdkman/candidates/java/current/bin/readelf" + - "/Users/graf/.cargo/bin/readelf" + - "/Users/graf/Documents/GitHub/qubic-core/core/build/Unknown command/readelf" + - "/Users/graf/Documents/GitHub/qubic-core/core/build/ bin To see a list of supported npm commands, run/readelf" + - "/Users/graf/Documents/GitHub/qubic-core/core/build/ npm help/readelf" + - "/Users/graf/.npm-global/bin/readelf" + - "/Users/graf/.vscode/extensions/ms-python.debugpy-2025.18.0-darwin-arm64/bundled/scripts/noConfigScripts/readelf" + - "/Users/graf/Documents/GitHub/qubic-core/core/build/ \"bin\"\n\nTo see a list of supported npm commands, run/readelf" + - "/Users/graf/Documents/GitHub/qubic-core/core/build/\n npm help/readelf" + found: false + search_context: + ENV{PATH}: + - "/Users/graf/.nvm/versions/node/v20.19.5/bin" + - "/opt/homebrew/opt/openjdk@17/bin" + - "/Users/graf/Library/Python/3.9/bin" + - "/Users/graf/Library/Python/3.x/bin" + - "/Users/graf/Library/Application Support/Code/User/globalStorage/github.copilot-chat/debugCommand" + - "/Users/graf/Library/Application Support/Code/User/globalStorage/github.copilot-chat/copilotCli" + - "/opt/homebrew/bin" + - "/opt/homebrew/bin" + - "/opt/homebrew/sbin" + - "/usr/local/bin" + - "/System/Cryptexes/App/usr/bin" + - "/usr/bin" + - "/bin" + - "/usr/sbin" + - "/sbin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin" + - "/Library/Apple/usr/bin" + - "~/.dotnet/tools" + - "/Users/graf/Library/Application Support/Code/User/globalStorage/github.copilot-chat/debugCommand" + - "/Users/graf/Library/Application Support/Code/User/globalStorage/github.copilot-chat/copilotCli" + - "/Users/graf/.nvm/versions/node/v20.19.5/bin" + - "/opt/homebrew/opt/openjdk@17/bin" + - "/Users/graf/.sdkman/candidates/java/current/bin" + - "/Users/graf/Library/Python/3.9/bin" + - "/Users/graf/Library/Python/3.x/bin" + - "/Users/graf/.cargo/bin" + - "Unknown command" + - " bin To see a list of supported npm commands, run" + - " npm help" + - "/Users/graf/.npm-global/bin" + - "/Users/graf/.vscode/extensions/ms-python.debugpy-2025.18.0-darwin-arm64/bundled/scripts/noConfigScripts" + - "Unknown command" + - " \"bin\"\n\nTo see a list of supported npm commands, run" + - "\n npm help" + - "/Users/graf/.npm-global/bin" + - + kind: "find-v1" + backtrace: + - "/opt/homebrew/share/cmake/Modules/CMakeFindBinUtils.cmake:238 (find_program)" + - "/opt/homebrew/share/cmake/Modules/CMakeDetermineCXXCompiler.cmake:206 (include)" + - "CMakeLists.txt:2 (project)" + mode: "program" + variable: "CMAKE_DLLTOOL" + description: "Path to a program." + settings: + SearchFramework: "FIRST" + SearchAppBundle: "FIRST" + 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/" + - "/Users/graf/.nvm/versions/node/v20.19.5/bin/" + - "/opt/homebrew/opt/openjdk@17/bin/" + - "/Users/graf/Library/Python/3.9/bin/" + - "/Users/graf/Library/Python/3.x/bin/" + - "/Users/graf/Library/Application Support/Code/User/globalStorage/github.copilot-chat/debugCommand/" + - "/Users/graf/Library/Application Support/Code/User/globalStorage/github.copilot-chat/copilotCli/" + - "/opt/homebrew/bin/" + - "/opt/homebrew/sbin/" + - "/usr/local/bin/" + - "/System/Cryptexes/App/usr/bin/" + - "/bin/" + - "/usr/sbin/" + - "/sbin/" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin/" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin/" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin/" + - "/Library/Apple/usr/bin/" + - "/Users/graf/.dotnet/tools/" + - "/Users/graf/.sdkman/candidates/java/current/bin/" + - "/Users/graf/.cargo/bin/" + - "/Users/graf/Documents/GitHub/qubic-core/core/build/Unknown command/" + - "/Users/graf/Documents/GitHub/qubic-core/core/build/ bin To see a list of supported npm commands, run/" + - "/Users/graf/Documents/GitHub/qubic-core/core/build/ npm help/" + - "/Users/graf/.npm-global/bin/" + - "/Users/graf/.vscode/extensions/ms-python.debugpy-2025.18.0-darwin-arm64/bundled/scripts/noConfigScripts/" + - "/Users/graf/Documents/GitHub/qubic-core/core/build/ \"bin\"\n\nTo see a list of supported npm commands, run/" + - "/Users/graf/Documents/GitHub/qubic-core/core/build/\n npm help/" + searched_directories: + - "/usr/bin/dlltool" + - "/Users/graf/.nvm/versions/node/v20.19.5/bin/dlltool" + - "/opt/homebrew/opt/openjdk@17/bin/dlltool" + - "/Users/graf/Library/Python/3.9/bin/dlltool" + - "/Users/graf/Library/Python/3.x/bin/dlltool" + - "/Users/graf/Library/Application Support/Code/User/globalStorage/github.copilot-chat/debugCommand/dlltool" + - "/Users/graf/Library/Application Support/Code/User/globalStorage/github.copilot-chat/copilotCli/dlltool" + - "/opt/homebrew/bin/dlltool" + - "/opt/homebrew/sbin/dlltool" + - "/usr/local/bin/dlltool" + - "/System/Cryptexes/App/usr/bin/dlltool" + - "/bin/dlltool" + - "/usr/sbin/dlltool" + - "/sbin/dlltool" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin/dlltool" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin/dlltool" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin/dlltool" + - "/Library/Apple/usr/bin/dlltool" + - "/Users/graf/.dotnet/tools/dlltool" + - "/Users/graf/.sdkman/candidates/java/current/bin/dlltool" + - "/Users/graf/.cargo/bin/dlltool" + - "/Users/graf/Documents/GitHub/qubic-core/core/build/Unknown command/dlltool" + - "/Users/graf/Documents/GitHub/qubic-core/core/build/ bin To see a list of supported npm commands, run/dlltool" + - "/Users/graf/Documents/GitHub/qubic-core/core/build/ npm help/dlltool" + - "/Users/graf/.npm-global/bin/dlltool" + - "/Users/graf/.vscode/extensions/ms-python.debugpy-2025.18.0-darwin-arm64/bundled/scripts/noConfigScripts/dlltool" + - "/Users/graf/Documents/GitHub/qubic-core/core/build/ \"bin\"\n\nTo see a list of supported npm commands, run/dlltool" + - "/Users/graf/Documents/GitHub/qubic-core/core/build/\n npm help/dlltool" + found: false + search_context: + ENV{PATH}: + - "/Users/graf/.nvm/versions/node/v20.19.5/bin" + - "/opt/homebrew/opt/openjdk@17/bin" + - "/Users/graf/Library/Python/3.9/bin" + - "/Users/graf/Library/Python/3.x/bin" + - "/Users/graf/Library/Application Support/Code/User/globalStorage/github.copilot-chat/debugCommand" + - "/Users/graf/Library/Application Support/Code/User/globalStorage/github.copilot-chat/copilotCli" + - "/opt/homebrew/bin" + - "/opt/homebrew/bin" + - "/opt/homebrew/sbin" + - "/usr/local/bin" + - "/System/Cryptexes/App/usr/bin" + - "/usr/bin" + - "/bin" + - "/usr/sbin" + - "/sbin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin" + - "/Library/Apple/usr/bin" + - "~/.dotnet/tools" + - "/Users/graf/Library/Application Support/Code/User/globalStorage/github.copilot-chat/debugCommand" + - "/Users/graf/Library/Application Support/Code/User/globalStorage/github.copilot-chat/copilotCli" + - "/Users/graf/.nvm/versions/node/v20.19.5/bin" + - "/opt/homebrew/opt/openjdk@17/bin" + - "/Users/graf/.sdkman/candidates/java/current/bin" + - "/Users/graf/Library/Python/3.9/bin" + - "/Users/graf/Library/Python/3.x/bin" + - "/Users/graf/.cargo/bin" + - "Unknown command" + - " bin To see a list of supported npm commands, run" + - " npm help" + - "/Users/graf/.npm-global/bin" + - "/Users/graf/.vscode/extensions/ms-python.debugpy-2025.18.0-darwin-arm64/bundled/scripts/noConfigScripts" + - "Unknown command" + - " \"bin\"\n\nTo see a list of supported npm commands, run" + - "\n npm help" + - "/Users/graf/.npm-global/bin" + - + kind: "find-v1" + backtrace: + - "/opt/homebrew/share/cmake/Modules/CMakeFindBinUtils.cmake:238 (find_program)" + - "/opt/homebrew/share/cmake/Modules/CMakeDetermineCXXCompiler.cmake:206 (include)" + - "CMakeLists.txt:2 (project)" + mode: "program" + variable: "CMAKE_ADDR2LINE" + description: "Path to a program." + settings: + SearchFramework: "FIRST" + SearchAppBundle: "FIRST" + 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/" + - "/Users/graf/.nvm/versions/node/v20.19.5/bin/" + - "/opt/homebrew/opt/openjdk@17/bin/" + - "/Users/graf/Library/Python/3.9/bin/" + - "/Users/graf/Library/Python/3.x/bin/" + - "/Users/graf/Library/Application Support/Code/User/globalStorage/github.copilot-chat/debugCommand/" + - "/Users/graf/Library/Application Support/Code/User/globalStorage/github.copilot-chat/copilotCli/" + - "/opt/homebrew/bin/" + - "/opt/homebrew/sbin/" + - "/usr/local/bin/" + - "/System/Cryptexes/App/usr/bin/" + - "/bin/" + - "/usr/sbin/" + - "/sbin/" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin/" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin/" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin/" + - "/Library/Apple/usr/bin/" + - "/Users/graf/.dotnet/tools/" + - "/Users/graf/.sdkman/candidates/java/current/bin/" + - "/Users/graf/.cargo/bin/" + - "/Users/graf/Documents/GitHub/qubic-core/core/build/Unknown command/" + - "/Users/graf/Documents/GitHub/qubic-core/core/build/ bin To see a list of supported npm commands, run/" + - "/Users/graf/Documents/GitHub/qubic-core/core/build/ npm help/" + - "/Users/graf/.npm-global/bin/" + - "/Users/graf/.vscode/extensions/ms-python.debugpy-2025.18.0-darwin-arm64/bundled/scripts/noConfigScripts/" + - "/Users/graf/Documents/GitHub/qubic-core/core/build/ \"bin\"\n\nTo see a list of supported npm commands, run/" + - "/Users/graf/Documents/GitHub/qubic-core/core/build/\n npm help/" + searched_directories: + - "/usr/bin/addr2line" + - "/Users/graf/.nvm/versions/node/v20.19.5/bin/addr2line" + - "/opt/homebrew/opt/openjdk@17/bin/addr2line" + - "/Users/graf/Library/Python/3.9/bin/addr2line" + - "/Users/graf/Library/Python/3.x/bin/addr2line" + - "/Users/graf/Library/Application Support/Code/User/globalStorage/github.copilot-chat/debugCommand/addr2line" + - "/Users/graf/Library/Application Support/Code/User/globalStorage/github.copilot-chat/copilotCli/addr2line" + - "/opt/homebrew/bin/addr2line" + - "/opt/homebrew/sbin/addr2line" + - "/usr/local/bin/addr2line" + - "/System/Cryptexes/App/usr/bin/addr2line" + - "/bin/addr2line" + - "/usr/sbin/addr2line" + - "/sbin/addr2line" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin/addr2line" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin/addr2line" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin/addr2line" + - "/Library/Apple/usr/bin/addr2line" + - "/Users/graf/.dotnet/tools/addr2line" + - "/Users/graf/.sdkman/candidates/java/current/bin/addr2line" + - "/Users/graf/.cargo/bin/addr2line" + - "/Users/graf/Documents/GitHub/qubic-core/core/build/Unknown command/addr2line" + - "/Users/graf/Documents/GitHub/qubic-core/core/build/ bin To see a list of supported npm commands, run/addr2line" + - "/Users/graf/Documents/GitHub/qubic-core/core/build/ npm help/addr2line" + - "/Users/graf/.npm-global/bin/addr2line" + - "/Users/graf/.vscode/extensions/ms-python.debugpy-2025.18.0-darwin-arm64/bundled/scripts/noConfigScripts/addr2line" + - "/Users/graf/Documents/GitHub/qubic-core/core/build/ \"bin\"\n\nTo see a list of supported npm commands, run/addr2line" + - "/Users/graf/Documents/GitHub/qubic-core/core/build/\n npm help/addr2line" + found: false + search_context: + ENV{PATH}: + - "/Users/graf/.nvm/versions/node/v20.19.5/bin" + - "/opt/homebrew/opt/openjdk@17/bin" + - "/Users/graf/Library/Python/3.9/bin" + - "/Users/graf/Library/Python/3.x/bin" + - "/Users/graf/Library/Application Support/Code/User/globalStorage/github.copilot-chat/debugCommand" + - "/Users/graf/Library/Application Support/Code/User/globalStorage/github.copilot-chat/copilotCli" + - "/opt/homebrew/bin" + - "/opt/homebrew/bin" + - "/opt/homebrew/sbin" + - "/usr/local/bin" + - "/System/Cryptexes/App/usr/bin" + - "/usr/bin" + - "/bin" + - "/usr/sbin" + - "/sbin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin" + - "/Library/Apple/usr/bin" + - "~/.dotnet/tools" + - "/Users/graf/Library/Application Support/Code/User/globalStorage/github.copilot-chat/debugCommand" + - "/Users/graf/Library/Application Support/Code/User/globalStorage/github.copilot-chat/copilotCli" + - "/Users/graf/.nvm/versions/node/v20.19.5/bin" + - "/opt/homebrew/opt/openjdk@17/bin" + - "/Users/graf/.sdkman/candidates/java/current/bin" + - "/Users/graf/Library/Python/3.9/bin" + - "/Users/graf/Library/Python/3.x/bin" + - "/Users/graf/.cargo/bin" + - "Unknown command" + - " bin To see a list of supported npm commands, run" + - " npm help" + - "/Users/graf/.npm-global/bin" + - "/Users/graf/.vscode/extensions/ms-python.debugpy-2025.18.0-darwin-arm64/bundled/scripts/noConfigScripts" + - "Unknown command" + - " \"bin\"\n\nTo see a list of supported npm commands, run" + - "\n npm help" + - "/Users/graf/.npm-global/bin" + - + kind: "find-v1" + backtrace: + - "/opt/homebrew/share/cmake/Modules/CMakeFindBinUtils.cmake:238 (find_program)" + - "/opt/homebrew/share/cmake/Modules/CMakeDetermineCXXCompiler.cmake:206 (include)" + - "CMakeLists.txt:2 (project)" + mode: "program" + variable: "CMAKE_TAPI" + description: "Path to a program." + settings: + SearchFramework: "FIRST" + SearchAppBundle: "FIRST" + 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/" + - "/Users/graf/.nvm/versions/node/v20.19.5/bin/" + - "/opt/homebrew/opt/openjdk@17/bin/" + - "/Users/graf/Library/Python/3.9/bin/" + - "/Users/graf/Library/Python/3.x/bin/" + - "/Users/graf/Library/Application Support/Code/User/globalStorage/github.copilot-chat/debugCommand/" + - "/Users/graf/Library/Application Support/Code/User/globalStorage/github.copilot-chat/copilotCli/" + - "/opt/homebrew/bin/" + - "/opt/homebrew/sbin/" + - "/usr/local/bin/" + - "/System/Cryptexes/App/usr/bin/" + - "/bin/" + - "/usr/sbin/" + - "/sbin/" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin/" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin/" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin/" + - "/Library/Apple/usr/bin/" + - "/Users/graf/.dotnet/tools/" + - "/Users/graf/.sdkman/candidates/java/current/bin/" + - "/Users/graf/.cargo/bin/" + - "/Users/graf/Documents/GitHub/qubic-core/core/build/Unknown command/" + - "/Users/graf/Documents/GitHub/qubic-core/core/build/ bin To see a list of supported npm commands, run/" + - "/Users/graf/Documents/GitHub/qubic-core/core/build/ npm help/" + - "/Users/graf/.npm-global/bin/" + - "/Users/graf/.vscode/extensions/ms-python.debugpy-2025.18.0-darwin-arm64/bundled/scripts/noConfigScripts/" + - "/Users/graf/Documents/GitHub/qubic-core/core/build/ \"bin\"\n\nTo see a list of supported npm commands, run/" + - "/Users/graf/Documents/GitHub/qubic-core/core/build/\n npm help/" + searched_directories: + - "/usr/bin/tapi" + - "/Users/graf/.nvm/versions/node/v20.19.5/bin/tapi" + - "/opt/homebrew/opt/openjdk@17/bin/tapi" + - "/Users/graf/Library/Python/3.9/bin/tapi" + - "/Users/graf/Library/Python/3.x/bin/tapi" + - "/Users/graf/Library/Application Support/Code/User/globalStorage/github.copilot-chat/debugCommand/tapi" + - "/Users/graf/Library/Application Support/Code/User/globalStorage/github.copilot-chat/copilotCli/tapi" + - "/opt/homebrew/bin/tapi" + - "/opt/homebrew/sbin/tapi" + - "/usr/local/bin/tapi" + - "/System/Cryptexes/App/usr/bin/tapi" + - "/bin/tapi" + - "/usr/sbin/tapi" + - "/sbin/tapi" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin/tapi" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin/tapi" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin/tapi" + - "/Library/Apple/usr/bin/tapi" + - "/Users/graf/.dotnet/tools/tapi" + - "/Users/graf/.sdkman/candidates/java/current/bin/tapi" + - "/Users/graf/.cargo/bin/tapi" + - "/Users/graf/Documents/GitHub/qubic-core/core/build/Unknown command/tapi" + - "/Users/graf/Documents/GitHub/qubic-core/core/build/ bin To see a list of supported npm commands, run/tapi" + - "/Users/graf/Documents/GitHub/qubic-core/core/build/ npm help/tapi" + - "/Users/graf/.npm-global/bin/tapi" + - "/Users/graf/.vscode/extensions/ms-python.debugpy-2025.18.0-darwin-arm64/bundled/scripts/noConfigScripts/tapi" + - "/Users/graf/Documents/GitHub/qubic-core/core/build/ \"bin\"\n\nTo see a list of supported npm commands, run/tapi" + - "/Users/graf/Documents/GitHub/qubic-core/core/build/\n npm help/tapi" + found: false + search_context: + ENV{PATH}: + - "/Users/graf/.nvm/versions/node/v20.19.5/bin" + - "/opt/homebrew/opt/openjdk@17/bin" + - "/Users/graf/Library/Python/3.9/bin" + - "/Users/graf/Library/Python/3.x/bin" + - "/Users/graf/Library/Application Support/Code/User/globalStorage/github.copilot-chat/debugCommand" + - "/Users/graf/Library/Application Support/Code/User/globalStorage/github.copilot-chat/copilotCli" + - "/opt/homebrew/bin" + - "/opt/homebrew/bin" + - "/opt/homebrew/sbin" + - "/usr/local/bin" + - "/System/Cryptexes/App/usr/bin" + - "/usr/bin" + - "/bin" + - "/usr/sbin" + - "/sbin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin" + - "/Library/Apple/usr/bin" + - "~/.dotnet/tools" + - "/Users/graf/Library/Application Support/Code/User/globalStorage/github.copilot-chat/debugCommand" + - "/Users/graf/Library/Application Support/Code/User/globalStorage/github.copilot-chat/copilotCli" + - "/Users/graf/.nvm/versions/node/v20.19.5/bin" + - "/opt/homebrew/opt/openjdk@17/bin" + - "/Users/graf/.sdkman/candidates/java/current/bin" + - "/Users/graf/Library/Python/3.9/bin" + - "/Users/graf/Library/Python/3.x/bin" + - "/Users/graf/.cargo/bin" + - "Unknown command" + - " bin To see a list of supported npm commands, run" + - " npm help" + - "/Users/graf/.npm-global/bin" + - "/Users/graf/.vscode/extensions/ms-python.debugpy-2025.18.0-darwin-arm64/bundled/scripts/noConfigScripts" + - "Unknown command" + - " \"bin\"\n\nTo see a list of supported npm commands, run" + - "\n npm help" + - "/Users/graf/.npm-global/bin" + - + kind: "find-v1" + backtrace: + - "/opt/homebrew/share/cmake/Modules/Platform/Darwin.cmake:76 (find_program)" + - "/opt/homebrew/share/cmake/Modules/CMakeSystemSpecificInformation.cmake:32 (include)" + - "CMakeLists.txt:2 (project)" + mode: "program" + variable: "CMAKE_INSTALL_NAME_TOOL" + description: "Path to a program." + settings: + SearchFramework: "FIRST" + SearchAppBundle: "FIRST" + 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: + - "install_name_tool" + candidate_directories: + - "/Users/graf/.nvm/versions/node/v20.19.5/bin/" + - "/opt/homebrew/opt/openjdk@17/bin/" + - "/Users/graf/Library/Python/3.9/bin/" + - "/Users/graf/Library/Python/3.x/bin/" + - "/Users/graf/Library/Application Support/Code/User/globalStorage/github.copilot-chat/debugCommand/" + - "/Users/graf/Library/Application Support/Code/User/globalStorage/github.copilot-chat/copilotCli/" + - "/opt/homebrew/bin/" + - "/opt/homebrew/sbin/" + - "/usr/local/bin/" + - "/System/Cryptexes/App/usr/bin/" + - "/usr/bin/" + - "/bin/" + - "/usr/sbin/" + - "/sbin/" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin/" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin/" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin/" + - "/Library/Apple/usr/bin/" + - "/Users/graf/.dotnet/tools/" + - "/Users/graf/.sdkman/candidates/java/current/bin/" + - "/Users/graf/.cargo/bin/" + - "/Users/graf/Documents/GitHub/qubic-core/core/build/Unknown command/" + - "/Users/graf/Documents/GitHub/qubic-core/core/build/ bin To see a list of supported npm commands, run/" + - "/Users/graf/Documents/GitHub/qubic-core/core/build/ npm help/" + - "/Users/graf/.npm-global/bin/" + - "/Users/graf/.vscode/extensions/ms-python.debugpy-2025.18.0-darwin-arm64/bundled/scripts/noConfigScripts/" + - "/Users/graf/Documents/GitHub/qubic-core/core/build/ \"bin\"\n\nTo see a list of supported npm commands, run/" + - "/Users/graf/Documents/GitHub/qubic-core/core/build/\n npm help/" + searched_directories: + - "/Users/graf/.nvm/versions/node/v20.19.5/bin/install_name_tool" + - "/opt/homebrew/opt/openjdk@17/bin/install_name_tool" + - "/Users/graf/Library/Python/3.9/bin/install_name_tool" + - "/Users/graf/Library/Python/3.x/bin/install_name_tool" + - "/Users/graf/Library/Application Support/Code/User/globalStorage/github.copilot-chat/debugCommand/install_name_tool" + - "/Users/graf/Library/Application Support/Code/User/globalStorage/github.copilot-chat/copilotCli/install_name_tool" + - "/opt/homebrew/bin/install_name_tool" + - "/opt/homebrew/sbin/install_name_tool" + - "/usr/local/bin/install_name_tool" + - "/System/Cryptexes/App/usr/bin/install_name_tool" + found: "/usr/bin/install_name_tool" + search_context: + ENV{PATH}: + - "/Users/graf/.nvm/versions/node/v20.19.5/bin" + - "/opt/homebrew/opt/openjdk@17/bin" + - "/Users/graf/Library/Python/3.9/bin" + - "/Users/graf/Library/Python/3.x/bin" + - "/Users/graf/Library/Application Support/Code/User/globalStorage/github.copilot-chat/debugCommand" + - "/Users/graf/Library/Application Support/Code/User/globalStorage/github.copilot-chat/copilotCli" + - "/opt/homebrew/bin" + - "/opt/homebrew/bin" + - "/opt/homebrew/sbin" + - "/usr/local/bin" + - "/System/Cryptexes/App/usr/bin" + - "/usr/bin" + - "/bin" + - "/usr/sbin" + - "/sbin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin" + - "/Library/Apple/usr/bin" + - "~/.dotnet/tools" + - "/Users/graf/Library/Application Support/Code/User/globalStorage/github.copilot-chat/debugCommand" + - "/Users/graf/Library/Application Support/Code/User/globalStorage/github.copilot-chat/copilotCli" + - "/Users/graf/.nvm/versions/node/v20.19.5/bin" + - "/opt/homebrew/opt/openjdk@17/bin" + - "/Users/graf/.sdkman/candidates/java/current/bin" + - "/Users/graf/Library/Python/3.9/bin" + - "/Users/graf/Library/Python/3.x/bin" + - "/Users/graf/.cargo/bin" + - "Unknown command" + - " bin To see a list of supported npm commands, run" + - " npm help" + - "/Users/graf/.npm-global/bin" + - "/Users/graf/.vscode/extensions/ms-python.debugpy-2025.18.0-darwin-arm64/bundled/scripts/noConfigScripts" + - "Unknown command" + - " \"bin\"\n\nTo see a list of supported npm commands, run" + - "\n npm help" + - "/Users/graf/.npm-global/bin" + CMAKE_INSTALL_PREFIX: "/usr/local" + - + kind: "try_compile-v1" + backtrace: + - "/opt/homebrew/share/cmake/Modules/CMakeDetermineCompilerABI.cmake:83 (try_compile)" + - "/opt/homebrew/share/cmake/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "CMakeLists.txt:2 (project)" + checks: + - "Detecting CXX compiler ABI info" + directories: + source: "/Users/graf/Documents/GitHub/qubic-core/core/build/CMakeFiles/CMakeScratch/TryCompile-8d9Xe7" + binary: "/Users/graf/Documents/GitHub/qubic-core/core/build/CMakeFiles/CMakeScratch/TryCompile-8d9Xe7" + cmakeVariables: + CMAKE_CXX_FLAGS: "" + CMAKE_CXX_FLAGS_DEBUG: "-g" + CMAKE_CXX_SCAN_FOR_MODULES: "OFF" + CMAKE_EXE_LINKER_FLAGS: "" + CMAKE_OSX_ARCHITECTURES: "" + CMAKE_OSX_DEPLOYMENT_TARGET: "" + CMAKE_OSX_SYSROOT: "" + buildResult: + variable: "CMAKE_CXX_ABI_COMPILED" + cached: true + stdout: | + Change Dir: '/Users/graf/Documents/GitHub/qubic-core/core/build/CMakeFiles/CMakeScratch/TryCompile-8d9Xe7' + + Run Build Command(s): /opt/homebrew/bin/cmake -E env VERBOSE=1 /usr/bin/make -f Makefile cmTC_97b76/fast + /Library/Developer/CommandLineTools/usr/bin/make -f CMakeFiles/cmTC_97b76.dir/build.make CMakeFiles/cmTC_97b76.dir/build + Building CXX object CMakeFiles/cmTC_97b76.dir/CMakeCXXCompilerABI.cpp.o + /usr/bin/c++ -arch arm64 -v -Wl,-v -MD -MT CMakeFiles/cmTC_97b76.dir/CMakeCXXCompilerABI.cpp.o -MF CMakeFiles/cmTC_97b76.dir/CMakeCXXCompilerABI.cpp.o.d -o CMakeFiles/cmTC_97b76.dir/CMakeCXXCompilerABI.cpp.o -c /opt/homebrew/share/cmake/Modules/CMakeCXXCompilerABI.cpp + Apple clang version 17.0.0 (clang-1700.0.13.5) + Target: arm64-apple-darwin24.3.0 + Thread model: posix + InstalledDir: /Library/Developer/CommandLineTools/usr/bin + clang++: warning: -Wl,-v: 'linker' input unused [-Wunused-command-line-argument] + ignoring nonexistent directory "/Library/Developer/CommandLineTools/usr/bin/../include/c++/v1" + "/Library/Developer/CommandLineTools/usr/bin/clang" -cc1 -triple arm64-apple-macosx15.0.0 -Wundef-prefix=TARGET_OS_ -Wdeprecated-objc-isa-usage -Werror=deprecated-objc-isa-usage -Werror=implicit-function-declaration -emit-obj -disable-free -clear-ast-before-backend -disable-llvm-verifier -discard-value-names -main-file-name CMakeCXXCompilerABI.cpp -mrelocation-model pic -pic-level 2 -mframe-pointer=non-leaf -fno-strict-return -ffp-contract=on -fno-rounding-math -funwind-tables=1 -fobjc-msgsend-selector-stubs -target-sdk-version=15.5 -fvisibility-inlines-hidden-static-local-var -fdefine-target-os-macros -fno-assume-unique-vtables -fno-modulemap-allow-subdirectory-search -target-cpu apple-m1 -target-feature +zcm -target-feature +zcz -target-feature +v8.5a -target-feature +aes -target-feature +altnzcv -target-feature +ccdp -target-feature +complxnum -target-feature +crc -target-feature +dotprod -target-feature +fp-armv8 -target-feature +fp16fml -target-feature +fptoint -target-feature +fullfp16 -target-feature +jsconv -target-feature +lse -target-feature +neon -target-feature +pauth -target-feature +perfmon -target-feature +predres -target-feature +ras -target-feature +rcpc -target-feature +rdm -target-feature +sb -target-feature +sha2 -target-feature +sha3 -target-feature +specrestrict -target-feature +ssbs -target-abi darwinpcs -debugger-tuning=lldb -fdebug-compilation-dir=/Users/graf/Documents/GitHub/qubic-core/core/build/CMakeFiles/CMakeScratch/TryCompile-8d9Xe7 -target-linker-version 1167.5 -v -fcoverage-compilation-dir=/Users/graf/Documents/GitHub/qubic-core/core/build/CMakeFiles/CMakeScratch/TryCompile-8d9Xe7 -resource-dir /Library/Developer/CommandLineTools/usr/lib/clang/17 -dependency-file CMakeFiles/cmTC_97b76.dir/CMakeCXXCompilerABI.cpp.o.d -skip-unused-modulemap-deps -MT CMakeFiles/cmTC_97b76.dir/CMakeCXXCompilerABI.cpp.o -sys-header-deps -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -I/usr/local/include -internal-isystem /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1 -internal-isystem /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/local/include -internal-isystem /Library/Developer/CommandLineTools/usr/lib/clang/17/include -internal-externc-isystem /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include -internal-externc-isystem /Library/Developer/CommandLineTools/usr/include -Wno-reorder-init-list -Wno-implicit-int-float-conversion -Wno-c99-designator -Wno-final-dtor-non-final-class -Wno-extra-semi-stmt -Wno-misleading-indentation -Wno-quoted-include-in-framework-header -Wno-implicit-fallthrough -Wno-enum-enum-conversion -Wno-enum-float-conversion -Wno-elaborated-enum-base -Wno-reserved-identifier -Wno-gnu-folding-constant -fdeprecated-macro -ferror-limit 19 -stack-protector 1 -fstack-check -mdarwin-stkchk-strong-link -fblocks -fencode-extended-block-signature -fregister-global-dtors-with-atexit -fgnuc-version=4.2.1 -fno-cxx-modules -fskip-odr-check-in-gmf -fcxx-exceptions -fexceptions -fmax-type-align=16 -fcommon -clang-vendor-feature=+disableNonDependentMemberExprInCurrentInstantiation -fno-odr-hash-protocols -clang-vendor-feature=+enableAggressiveVLAFolding -clang-vendor-feature=+revert09abecef7bbf -clang-vendor-feature=+thisNoAlignAttr -clang-vendor-feature=+thisNoNullAttr -clang-vendor-feature=+disableAtImportPrivateFrameworkInImplementationError -D__GCC_HAVE_DWARF2_CFI_ASM=1 -o CMakeFiles/cmTC_97b76.dir/CMakeCXXCompilerABI.cpp.o -x c++ /opt/homebrew/share/cmake/Modules/CMakeCXXCompilerABI.cpp + clang -cc1 version 17.0.0 (clang-1700.0.13.5) default target arm64-apple-darwin24.3.0 + ignoring nonexistent directory "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/local/include" + ignoring nonexistent directory "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/System/Library/SubFrameworks" + ignoring nonexistent directory "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/Library/Frameworks" + #include "..." search starts here: + #include <...> search starts here: + /usr/local/include + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1 + /Library/Developer/CommandLineTools/usr/lib/clang/17/include + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include + /Library/Developer/CommandLineTools/usr/include + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/System/Library/Frameworks (framework directory) + End of search list. + Linking CXX executable cmTC_97b76 + /opt/homebrew/bin/cmake -E cmake_link_script CMakeFiles/cmTC_97b76.dir/link.txt --verbose=1 + Apple clang version 17.0.0 (clang-1700.0.13.5) + Target: arm64-apple-darwin24.3.0 + Thread model: posix + InstalledDir: /Library/Developer/CommandLineTools/usr/bin + "/Library/Developer/CommandLineTools/usr/bin/ld" -demangle -lto_library /Library/Developer/CommandLineTools/usr/lib/libLTO.dylib -dynamic -arch arm64 -platform_version macos 15.0.0 15.5 -syslibroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -mllvm -enable-linkonceodr-outlining -o cmTC_97b76 -L/usr/local/lib -search_paths_first -headerpad_max_install_names -v CMakeFiles/cmTC_97b76.dir/CMakeCXXCompilerABI.cpp.o -lc++ -lSystem /Library/Developer/CommandLineTools/usr/lib/clang/17/lib/darwin/libclang_rt.osx.a + @(#)PROGRAM:ld PROJECT:ld-1167.5 + BUILD 01:45:05 Apr 30 2025 + configured to support archs: armv6 armv7 armv7s arm64 arm64e arm64_32 i386 x86_64 x86_64h armv6m armv7k armv7m armv7em + will use ld-classic for: armv6 armv7 armv7s i386 armv6m armv7k armv7m armv7em + LTO support using: LLVM version 17.0.0 (static support for 29, runtime is 29) + TAPI support using: Apple TAPI version 17.0.0 (tapi-1700.0.3.5) + Library search paths: + /usr/local/lib + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/lib + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/lib/swift + Framework search paths: + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/System/Library/Frameworks + /usr/bin/c++ -arch arm64 -Wl,-search_paths_first -Wl,-headerpad_max_install_names -v -Wl,-v CMakeFiles/cmTC_97b76.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_97b76 + + exitCode: 0 + - + kind: "message-v1" + backtrace: + - "/opt/homebrew/share/cmake/Modules/CMakeDetermineCompilerABI.cmake:122 (message)" + - "/opt/homebrew/share/cmake/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "CMakeLists.txt:2 (project)" + message: | + Effective list of requested architectures (possibly empty) : "" + Effective list of architectures found in the ABI info binary: "arm64" + - + kind: "message-v1" + backtrace: + - "/opt/homebrew/share/cmake/Modules/CMakeDetermineCompilerABI.cmake:217 (message)" + - "/opt/homebrew/share/cmake/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "CMakeLists.txt:2 (project)" + message: | + Parsed CXX implicit include dir info: rv=done + found start of include info + found start of implicit include info + add: [/usr/local/include] + add: [/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1] + add: [/Library/Developer/CommandLineTools/usr/lib/clang/17/include] + add: [/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include] + add: [/Library/Developer/CommandLineTools/usr/include] + end of search list found + collapse include dir [/usr/local/include] ==> [/usr/local/include] + collapse include dir [/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1] ==> [/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1] + collapse include dir [/Library/Developer/CommandLineTools/usr/lib/clang/17/include] ==> [/Library/Developer/CommandLineTools/usr/lib/clang/17/include] + collapse include dir [/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include] ==> [/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include] + collapse include dir [/Library/Developer/CommandLineTools/usr/include] ==> [/Library/Developer/CommandLineTools/usr/include] + implicit include dirs: [/usr/local/include;/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1;/Library/Developer/CommandLineTools/usr/lib/clang/17/include;/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include;/Library/Developer/CommandLineTools/usr/include] + + + - + kind: "message-v1" + backtrace: + - "/opt/homebrew/share/cmake/Modules/CMakeDetermineCompilerABI.cmake:253 (message)" + - "/opt/homebrew/share/cmake/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "CMakeLists.txt:2 (project)" + message: | + Parsed CXX 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: '/Users/graf/Documents/GitHub/qubic-core/core/build/CMakeFiles/CMakeScratch/TryCompile-8d9Xe7'] + ignore line: [] + ignore line: [Run Build Command(s): /opt/homebrew/bin/cmake -E env VERBOSE=1 /usr/bin/make -f Makefile cmTC_97b76/fast] + ignore line: [/Library/Developer/CommandLineTools/usr/bin/make -f CMakeFiles/cmTC_97b76.dir/build.make CMakeFiles/cmTC_97b76.dir/build] + ignore line: [Building CXX object CMakeFiles/cmTC_97b76.dir/CMakeCXXCompilerABI.cpp.o] + ignore line: [/usr/bin/c++ -arch arm64 -v -Wl -v -MD -MT CMakeFiles/cmTC_97b76.dir/CMakeCXXCompilerABI.cpp.o -MF CMakeFiles/cmTC_97b76.dir/CMakeCXXCompilerABI.cpp.o.d -o CMakeFiles/cmTC_97b76.dir/CMakeCXXCompilerABI.cpp.o -c /opt/homebrew/share/cmake/Modules/CMakeCXXCompilerABI.cpp] + ignore line: [Apple clang version 17.0.0 (clang-1700.0.13.5)] + ignore line: [Target: arm64-apple-darwin24.3.0] + ignore line: [Thread model: posix] + ignore line: [InstalledDir: /Library/Developer/CommandLineTools/usr/bin] + ignore line: [clang++: warning: -Wl -v: 'linker' input unused [-Wunused-command-line-argument]] + ignore line: [ignoring nonexistent directory "/Library/Developer/CommandLineTools/usr/bin/../include/c++/v1"] + ignore line: [ "/Library/Developer/CommandLineTools/usr/bin/clang" -cc1 -triple arm64-apple-macosx15.0.0 -Wundef-prefix=TARGET_OS_ -Wdeprecated-objc-isa-usage -Werror=deprecated-objc-isa-usage -Werror=implicit-function-declaration -emit-obj -disable-free -clear-ast-before-backend -disable-llvm-verifier -discard-value-names -main-file-name CMakeCXXCompilerABI.cpp -mrelocation-model pic -pic-level 2 -mframe-pointer=non-leaf -fno-strict-return -ffp-contract=on -fno-rounding-math -funwind-tables=1 -fobjc-msgsend-selector-stubs -target-sdk-version=15.5 -fvisibility-inlines-hidden-static-local-var -fdefine-target-os-macros -fno-assume-unique-vtables -fno-modulemap-allow-subdirectory-search -target-cpu apple-m1 -target-feature +zcm -target-feature +zcz -target-feature +v8.5a -target-feature +aes -target-feature +altnzcv -target-feature +ccdp -target-feature +complxnum -target-feature +crc -target-feature +dotprod -target-feature +fp-armv8 -target-feature +fp16fml -target-feature +fptoint -target-feature +fullfp16 -target-feature +jsconv -target-feature +lse -target-feature +neon -target-feature +pauth -target-feature +perfmon -target-feature +predres -target-feature +ras -target-feature +rcpc -target-feature +rdm -target-feature +sb -target-feature +sha2 -target-feature +sha3 -target-feature +specrestrict -target-feature +ssbs -target-abi darwinpcs -debugger-tuning=lldb -fdebug-compilation-dir=/Users/graf/Documents/GitHub/qubic-core/core/build/CMakeFiles/CMakeScratch/TryCompile-8d9Xe7 -target-linker-version 1167.5 -v -fcoverage-compilation-dir=/Users/graf/Documents/GitHub/qubic-core/core/build/CMakeFiles/CMakeScratch/TryCompile-8d9Xe7 -resource-dir /Library/Developer/CommandLineTools/usr/lib/clang/17 -dependency-file CMakeFiles/cmTC_97b76.dir/CMakeCXXCompilerABI.cpp.o.d -skip-unused-modulemap-deps -MT CMakeFiles/cmTC_97b76.dir/CMakeCXXCompilerABI.cpp.o -sys-header-deps -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -I/usr/local/include -internal-isystem /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1 -internal-isystem /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/local/include -internal-isystem /Library/Developer/CommandLineTools/usr/lib/clang/17/include -internal-externc-isystem /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include -internal-externc-isystem /Library/Developer/CommandLineTools/usr/include -Wno-reorder-init-list -Wno-implicit-int-float-conversion -Wno-c99-designator -Wno-final-dtor-non-final-class -Wno-extra-semi-stmt -Wno-misleading-indentation -Wno-quoted-include-in-framework-header -Wno-implicit-fallthrough -Wno-enum-enum-conversion -Wno-enum-float-conversion -Wno-elaborated-enum-base -Wno-reserved-identifier -Wno-gnu-folding-constant -fdeprecated-macro -ferror-limit 19 -stack-protector 1 -fstack-check -mdarwin-stkchk-strong-link -fblocks -fencode-extended-block-signature -fregister-global-dtors-with-atexit -fgnuc-version=4.2.1 -fno-cxx-modules -fskip-odr-check-in-gmf -fcxx-exceptions -fexceptions -fmax-type-align=16 -fcommon -clang-vendor-feature=+disableNonDependentMemberExprInCurrentInstantiation -fno-odr-hash-protocols -clang-vendor-feature=+enableAggressiveVLAFolding -clang-vendor-feature=+revert09abecef7bbf -clang-vendor-feature=+thisNoAlignAttr -clang-vendor-feature=+thisNoNullAttr -clang-vendor-feature=+disableAtImportPrivateFrameworkInImplementationError -D__GCC_HAVE_DWARF2_CFI_ASM=1 -o CMakeFiles/cmTC_97b76.dir/CMakeCXXCompilerABI.cpp.o -x c++ /opt/homebrew/share/cmake/Modules/CMakeCXXCompilerABI.cpp] + ignore line: [clang -cc1 version 17.0.0 (clang-1700.0.13.5) default target arm64-apple-darwin24.3.0] + ignore line: [ignoring nonexistent directory "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/local/include"] + ignore line: [ignoring nonexistent directory "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/System/Library/SubFrameworks"] + ignore line: [ignoring nonexistent directory "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/Library/Frameworks"] + ignore line: [#include "..." search starts here:] + ignore line: [#include <...> search starts here:] + ignore line: [ /usr/local/include] + ignore line: [ /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1] + ignore line: [ /Library/Developer/CommandLineTools/usr/lib/clang/17/include] + ignore line: [ /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include] + ignore line: [ /Library/Developer/CommandLineTools/usr/include] + ignore line: [ /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/System/Library/Frameworks (framework directory)] + ignore line: [End of search list.] + ignore line: [Linking CXX executable cmTC_97b76] + ignore line: [/opt/homebrew/bin/cmake -E cmake_link_script CMakeFiles/cmTC_97b76.dir/link.txt --verbose=1] + ignore line: [Apple clang version 17.0.0 (clang-1700.0.13.5)] + ignore line: [Target: arm64-apple-darwin24.3.0] + ignore line: [Thread model: posix] + ignore line: [InstalledDir: /Library/Developer/CommandLineTools/usr/bin] + link line: [ "/Library/Developer/CommandLineTools/usr/bin/ld" -demangle -lto_library /Library/Developer/CommandLineTools/usr/lib/libLTO.dylib -dynamic -arch arm64 -platform_version macos 15.0.0 15.5 -syslibroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -mllvm -enable-linkonceodr-outlining -o cmTC_97b76 -L/usr/local/lib -search_paths_first -headerpad_max_install_names -v CMakeFiles/cmTC_97b76.dir/CMakeCXXCompilerABI.cpp.o -lc++ -lSystem /Library/Developer/CommandLineTools/usr/lib/clang/17/lib/darwin/libclang_rt.osx.a] + arg [/Library/Developer/CommandLineTools/usr/bin/ld] ==> ignore + arg [-demangle] ==> ignore + arg [-lto_library] ==> ignore, skip following value + arg [/Library/Developer/CommandLineTools/usr/lib/libLTO.dylib] ==> skip value of -lto_library + arg [-dynamic] ==> ignore + arg [-arch] ==> ignore + arg [arm64] ==> ignore + arg [-platform_version] ==> ignore + arg [macos] ==> ignore + arg [15.0.0] ==> ignore + arg [15.5] ==> ignore + arg [-syslibroot] ==> ignore + arg [/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk] ==> ignore + arg [-mllvm] ==> ignore + arg [-enable-linkonceodr-outlining] ==> ignore + arg [-o] ==> ignore + arg [cmTC_97b76] ==> ignore + arg [-L/usr/local/lib] ==> dir [/usr/local/lib] + arg [-search_paths_first] ==> ignore + arg [-headerpad_max_install_names] ==> ignore + arg [-v] ==> ignore + arg [CMakeFiles/cmTC_97b76.dir/CMakeCXXCompilerABI.cpp.o] ==> ignore + arg [-lc++] ==> lib [c++] + arg [-lSystem] ==> lib [System] + arg [/Library/Developer/CommandLineTools/usr/lib/clang/17/lib/darwin/libclang_rt.osx.a] ==> lib [/Library/Developer/CommandLineTools/usr/lib/clang/17/lib/darwin/libclang_rt.osx.a] + linker tool for 'CXX': /Library/Developer/CommandLineTools/usr/bin/ld + Library search paths: [;/usr/local/lib;/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/lib;/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/lib/swift] + Framework search paths: [;/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/System/Library/Frameworks] + remove lib [System] + remove lib [/Library/Developer/CommandLineTools/usr/lib/clang/17/lib/darwin/libclang_rt.osx.a] + collapse library dir [/usr/local/lib] ==> [/usr/local/lib] + collapse library dir [/usr/local/lib] ==> [/usr/local/lib] + collapse library dir [/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/lib] ==> [/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/lib] + collapse library dir [/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/lib/swift] ==> [/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/lib/swift] + collapse framework dir [/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/System/Library/Frameworks] ==> [/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/System/Library/Frameworks] + implicit libs: [c++] + implicit objs: [] + implicit dirs: [/usr/local/lib;/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/lib;/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/lib/swift] + implicit fwks: [/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/System/Library/Frameworks] + + + - + kind: "message-v1" + backtrace: + - "/opt/homebrew/share/cmake/Modules/Internal/CMakeDetermineLinkerId.cmake:36 (message)" + - "/opt/homebrew/share/cmake/Modules/CMakeDetermineCompilerABI.cmake:299 (cmake_determine_linker_id)" + - "/opt/homebrew/share/cmake/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "CMakeLists.txt:2 (project)" + message: | + Running the CXX compiler's linker: "/Library/Developer/CommandLineTools/usr/bin/ld" "-v" + @(#)PROGRAM:ld PROJECT:ld-1167.5 + BUILD 01:45:05 Apr 30 2025 + configured to support archs: armv6 armv7 armv7s arm64 arm64e arm64_32 i386 x86_64 x86_64h armv6m armv7k armv7m armv7em + will use ld-classic for: armv6 armv7 armv7s i386 armv6m armv7k armv7m armv7em + LTO support using: LLVM version 17.0.0 (static support for 29, runtime is 29) + TAPI support using: Apple TAPI version 17.0.0 (tapi-1700.0.3.5) + - + kind: "find-v1" + backtrace: + - "/opt/homebrew/share/cmake/Modules/CMakeDetermineCompiler.cmake:54 (find_program)" + - "/opt/homebrew/share/cmake/Modules/CMakeDetermineCCompiler.cmake:64 (_cmake_find_compiler)" + - "lib/platform_common/CMakeLists.txt:4 (project)" + mode: "program" + variable: "CMAKE_C_COMPILER" + description: "C compiler" + settings: + SearchFramework: "FIRST" + SearchAppBundle: "FIRST" + 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/bin/" + found: "/usr/bin/cc" + search_context: + ENV{PATH}: + - "/Users/graf/.nvm/versions/node/v20.19.5/bin" + - "/opt/homebrew/opt/openjdk@17/bin" + - "/Users/graf/Library/Python/3.9/bin" + - "/Users/graf/Library/Python/3.x/bin" + - "/Users/graf/Library/Application Support/Code/User/globalStorage/github.copilot-chat/debugCommand" + - "/Users/graf/Library/Application Support/Code/User/globalStorage/github.copilot-chat/copilotCli" + - "/opt/homebrew/bin" + - "/opt/homebrew/bin" + - "/opt/homebrew/sbin" + - "/usr/local/bin" + - "/System/Cryptexes/App/usr/bin" + - "/usr/bin" + - "/bin" + - "/usr/sbin" + - "/sbin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin" + - "/Library/Apple/usr/bin" + - "~/.dotnet/tools" + - "/Users/graf/Library/Application Support/Code/User/globalStorage/github.copilot-chat/debugCommand" + - "/Users/graf/Library/Application Support/Code/User/globalStorage/github.copilot-chat/copilotCli" + - "/Users/graf/.nvm/versions/node/v20.19.5/bin" + - "/opt/homebrew/opt/openjdk@17/bin" + - "/Users/graf/.sdkman/candidates/java/current/bin" + - "/Users/graf/Library/Python/3.9/bin" + - "/Users/graf/Library/Python/3.x/bin" + - "/Users/graf/.cargo/bin" + - "Unknown command" + - " bin To see a list of supported npm commands, run" + - " npm help" + - "/Users/graf/.npm-global/bin" + - "/Users/graf/.vscode/extensions/ms-python.debugpy-2025.18.0-darwin-arm64/bundled/scripts/noConfigScripts" + - "Unknown command" + - " \"bin\"\n\nTo see a list of supported npm commands, run" + - "\n npm help" + - "/Users/graf/.npm-global/bin" + CMAKE_INSTALL_PREFIX: "/usr/local" + CMAKE_SYSTEM_PREFIX_PATH: + - "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr" + - "/opt/homebrew" + - "/usr/local" + - "/usr" + - "/" + - "/opt/homebrew" + - "/usr/local" + - "/usr/X11R6" + - "/usr/pkg" + - "/opt" + - "/sw" + - "/opt/local" + CMAKE_SYSTEM_APPBUNDLE_PATH: + - "/Users/graf/Applications" + - "/Applications" + - + kind: "find-v1" + backtrace: + - "/opt/homebrew/share/cmake/Modules/CMakeDetermineCompilerId.cmake:462 (find_file)" + - "/opt/homebrew/share/cmake/Modules/CMakeDetermineCompilerId.cmake:500 (CMAKE_DETERMINE_COMPILER_ID_WRITE)" + - "/opt/homebrew/share/cmake/Modules/CMakeDetermineCompilerId.cmake:8 (CMAKE_DETERMINE_COMPILER_ID_BUILD)" + - "/opt/homebrew/share/cmake/Modules/CMakeDetermineCompilerId.cmake:64 (__determine_compiler_id_test)" + - "/opt/homebrew/share/cmake/Modules/CMakeDetermineCCompiler.cmake:122 (CMAKE_DETERMINE_COMPILER_ID)" + - "lib/platform_common/CMakeLists.txt:4 (project)" + mode: "file" + variable: "src_in" + description: "Path to a file." + settings: + SearchFramework: "FIRST" + SearchAppBundle: "FIRST" + 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: + - "/opt/homebrew/share/cmake/Modules/" + - "/Users/graf/Documents/GitHub/qubic-core/core/cmake/" + found: "/opt/homebrew/share/cmake/Modules/CMakeCCompilerId.c.in" + search_context: + ENV{PATH}: + - "/Users/graf/.nvm/versions/node/v20.19.5/bin" + - "/opt/homebrew/opt/openjdk@17/bin" + - "/Users/graf/Library/Python/3.9/bin" + - "/Users/graf/Library/Python/3.x/bin" + - "/Users/graf/Library/Application Support/Code/User/globalStorage/github.copilot-chat/debugCommand" + - "/Users/graf/Library/Application Support/Code/User/globalStorage/github.copilot-chat/copilotCli" + - "/opt/homebrew/bin" + - "/opt/homebrew/bin" + - "/opt/homebrew/sbin" + - "/usr/local/bin" + - "/System/Cryptexes/App/usr/bin" + - "/usr/bin" + - "/bin" + - "/usr/sbin" + - "/sbin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin" + - "/Library/Apple/usr/bin" + - "~/.dotnet/tools" + - "/Users/graf/Library/Application Support/Code/User/globalStorage/github.copilot-chat/debugCommand" + - "/Users/graf/Library/Application Support/Code/User/globalStorage/github.copilot-chat/copilotCli" + - "/Users/graf/.nvm/versions/node/v20.19.5/bin" + - "/opt/homebrew/opt/openjdk@17/bin" + - "/Users/graf/.sdkman/candidates/java/current/bin" + - "/Users/graf/Library/Python/3.9/bin" + - "/Users/graf/Library/Python/3.x/bin" + - "/Users/graf/.cargo/bin" + - "Unknown command" + - " bin To see a list of supported npm commands, run" + - " npm help" + - "/Users/graf/.npm-global/bin" + - "/Users/graf/.vscode/extensions/ms-python.debugpy-2025.18.0-darwin-arm64/bundled/scripts/noConfigScripts" + - "Unknown command" + - " \"bin\"\n\nTo see a list of supported npm commands, run" + - "\n npm help" + - "/Users/graf/.npm-global/bin" + CMAKE_INSTALL_PREFIX: "/usr/local" + CMAKE_SYSTEM_PREFIX_PATH: + - "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr" + - "/opt/homebrew" + - "/usr/local" + - "/usr" + - "/" + - "/opt/homebrew" + - "/usr/local" + - "/usr/X11R6" + - "/usr/pkg" + - "/opt" + - "/sw" + - "/opt/local" + CMAKE_SYSTEM_INCLUDE_PATH: + - "/usr/include/X11" + CMAKE_SYSTEM_FRAMEWORK_PATH: + - "~/Library/Frameworks" + - "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/Library/Frameworks" + - "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/Network/Library/Frameworks" + - "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/System/Library/Frameworks" + - "/Library/Developer/CommandLineTools/Library/Frameworks" + - "/Library/Developer/CommandLineTools/Library/Frameworks" + - "/Library/Frameworks" + - "/Network/Library/Frameworks" + - "/System/Library/Frameworks" + - + kind: "message-v1" + backtrace: + - "/opt/homebrew/share/cmake/Modules/CMakeDetermineCompilerId.cmake:17 (message)" + - "/opt/homebrew/share/cmake/Modules/CMakeDetermineCompilerId.cmake:64 (__determine_compiler_id_test)" + - "/opt/homebrew/share/cmake/Modules/CMakeDetermineCCompiler.cmake:122 (CMAKE_DETERMINE_COMPILER_ID)" + - "lib/platform_common/CMakeLists.txt:4 (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 AppleClang, found in: + /Users/graf/Documents/GitHub/qubic-core/core/build/CMakeFiles/4.1.1/CompilerIdC/a.out + + - + kind: "message-v1" + backtrace: + - "/opt/homebrew/share/cmake/Modules/CMakeDetermineCompilerId.cmake:290 (message)" + - "/opt/homebrew/share/cmake/Modules/CMakeDetermineCCompiler.cmake:122 (CMAKE_DETERMINE_COMPILER_ID)" + - "lib/platform_common/CMakeLists.txt:4 (project)" + message: | + Detecting C compiler apple sysroot: "/usr/bin/cc" "-E" "apple-sdk.c" + # 1 "apple-sdk.c" + # 1 "" 1 + # 1 "" 3 + # 465 "" 3 + # 1 "" 1 + # 1 "" 2 + # 1 "apple-sdk.c" 2 + # 1 "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/AvailabilityMacros.h" 1 3 4 + # 89 "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/AvailabilityMacros.h" 3 4 + # 1 "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/AvailabilityVersions.h" 1 3 4 + # 90 "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/AvailabilityMacros.h" 2 3 4 + # 1 "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/TargetConditionals.h" 1 3 4 + # 91 "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/AvailabilityMacros.h" 2 3 4 + # 207 "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/AvailabilityMacros.h" 3 4 + # 1 "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/Availability.h" 1 3 4 + # 196 "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/Availability.h" 3 4 + # 1 "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/AvailabilityVersions.h" 1 3 4 + # 197 "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/Availability.h" 2 3 4 + # 1 "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/AvailabilityInternal.h" 1 3 4 + # 33 "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/AvailabilityInternal.h" 3 4 + # 1 "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/AvailabilityVersions.h" 1 3 4 + # 34 "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/AvailabilityInternal.h" 2 3 4 + # 198 "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/Availability.h" 2 3 4 + # 1 "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/AvailabilityInternalLegacy.h" 1 3 4 + # 34 "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/AvailabilityInternalLegacy.h" 3 4 + # 1 "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/AvailabilityInternal.h" 1 3 4 + # 35 "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/AvailabilityInternalLegacy.h" 2 3 4 + # 199 "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/Availability.h" 2 3 4 + # 208 "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/AvailabilityMacros.h" 2 3 4 + # 2 "apple-sdk.c" 2 + + + Found apple sysroot: /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk + - + kind: "try_compile-v1" + backtrace: + - "/opt/homebrew/share/cmake/Modules/CMakeDetermineCompilerABI.cmake:83 (try_compile)" + - "/opt/homebrew/share/cmake/Modules/CMakeTestCCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "lib/platform_common/CMakeLists.txt:4 (project)" + checks: + - "Detecting C compiler ABI info" + directories: + source: "/Users/graf/Documents/GitHub/qubic-core/core/build/CMakeFiles/CMakeScratch/TryCompile-qTCSla" + binary: "/Users/graf/Documents/GitHub/qubic-core/core/build/CMakeFiles/CMakeScratch/TryCompile-qTCSla" + cmakeVariables: + CMAKE_C_FLAGS: "" + CMAKE_C_FLAGS_DEBUG: "" + CMAKE_EXE_LINKER_FLAGS: "" + CMAKE_MODULE_PATH: "/Users/graf/Documents/GitHub/qubic-core/core/cmake" + CMAKE_OSX_ARCHITECTURES: "" + CMAKE_OSX_DEPLOYMENT_TARGET: "" + CMAKE_OSX_SYSROOT: "" + buildResult: + variable: "CMAKE_C_ABI_COMPILED" + cached: true + stdout: | + Change Dir: '/Users/graf/Documents/GitHub/qubic-core/core/build/CMakeFiles/CMakeScratch/TryCompile-qTCSla' + + Run Build Command(s): /opt/homebrew/bin/cmake -E env VERBOSE=1 /usr/bin/make -f Makefile cmTC_75d2f/fast + /Library/Developer/CommandLineTools/usr/bin/make -f CMakeFiles/cmTC_75d2f.dir/build.make CMakeFiles/cmTC_75d2f.dir/build + Building C object CMakeFiles/cmTC_75d2f.dir/CMakeCCompilerABI.c.o + /usr/bin/cc -arch arm64 -v -Wl,-v -MD -MT CMakeFiles/cmTC_75d2f.dir/CMakeCCompilerABI.c.o -MF CMakeFiles/cmTC_75d2f.dir/CMakeCCompilerABI.c.o.d -o CMakeFiles/cmTC_75d2f.dir/CMakeCCompilerABI.c.o -c /opt/homebrew/share/cmake/Modules/CMakeCCompilerABI.c + Apple clang version 17.0.0 (clang-1700.0.13.5) + Target: arm64-apple-darwin24.3.0 + Thread model: posix + InstalledDir: /Library/Developer/CommandLineTools/usr/bin + clang: warning: -Wl,-v: 'linker' input unused [-Wunused-command-line-argument] + "/Library/Developer/CommandLineTools/usr/bin/clang" -cc1 -triple arm64-apple-macosx15.0.0 -Wundef-prefix=TARGET_OS_ -Wdeprecated-objc-isa-usage -Werror=deprecated-objc-isa-usage -Werror=implicit-function-declaration -emit-obj -disable-free -clear-ast-before-backend -disable-llvm-verifier -discard-value-names -main-file-name CMakeCCompilerABI.c -mrelocation-model pic -pic-level 2 -mframe-pointer=non-leaf -fno-strict-return -ffp-contract=on -fno-rounding-math -funwind-tables=1 -fobjc-msgsend-selector-stubs -target-sdk-version=15.5 -fvisibility-inlines-hidden-static-local-var -fdefine-target-os-macros -fno-assume-unique-vtables -fno-modulemap-allow-subdirectory-search -target-cpu apple-m1 -target-feature +zcm -target-feature +zcz -target-feature +v8.5a -target-feature +aes -target-feature +altnzcv -target-feature +ccdp -target-feature +complxnum -target-feature +crc -target-feature +dotprod -target-feature +fp-armv8 -target-feature +fp16fml -target-feature +fptoint -target-feature +fullfp16 -target-feature +jsconv -target-feature +lse -target-feature +neon -target-feature +pauth -target-feature +perfmon -target-feature +predres -target-feature +ras -target-feature +rcpc -target-feature +rdm -target-feature +sb -target-feature +sha2 -target-feature +sha3 -target-feature +specrestrict -target-feature +ssbs -target-abi darwinpcs -debugger-tuning=lldb -fdebug-compilation-dir=/Users/graf/Documents/GitHub/qubic-core/core/build/CMakeFiles/CMakeScratch/TryCompile-qTCSla -target-linker-version 1167.5 -v -fcoverage-compilation-dir=/Users/graf/Documents/GitHub/qubic-core/core/build/CMakeFiles/CMakeScratch/TryCompile-qTCSla -resource-dir /Library/Developer/CommandLineTools/usr/lib/clang/17 -dependency-file CMakeFiles/cmTC_75d2f.dir/CMakeCCompilerABI.c.o.d -skip-unused-modulemap-deps -MT CMakeFiles/cmTC_75d2f.dir/CMakeCCompilerABI.c.o -sys-header-deps -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -I/usr/local/include -internal-isystem /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/local/include -internal-isystem /Library/Developer/CommandLineTools/usr/lib/clang/17/include -internal-externc-isystem /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include -internal-externc-isystem /Library/Developer/CommandLineTools/usr/include -Wno-reorder-init-list -Wno-implicit-int-float-conversion -Wno-c99-designator -Wno-final-dtor-non-final-class -Wno-extra-semi-stmt -Wno-misleading-indentation -Wno-quoted-include-in-framework-header -Wno-implicit-fallthrough -Wno-enum-enum-conversion -Wno-enum-float-conversion -Wno-elaborated-enum-base -Wno-reserved-identifier -Wno-gnu-folding-constant -ferror-limit 19 -stack-protector 1 -fstack-check -mdarwin-stkchk-strong-link -fblocks -fencode-extended-block-signature -fregister-global-dtors-with-atexit -fgnuc-version=4.2.1 -fskip-odr-check-in-gmf -fmax-type-align=16 -fcommon -clang-vendor-feature=+disableNonDependentMemberExprInCurrentInstantiation -fno-odr-hash-protocols -clang-vendor-feature=+enableAggressiveVLAFolding -clang-vendor-feature=+revert09abecef7bbf -clang-vendor-feature=+thisNoAlignAttr -clang-vendor-feature=+thisNoNullAttr -clang-vendor-feature=+disableAtImportPrivateFrameworkInImplementationError -D__GCC_HAVE_DWARF2_CFI_ASM=1 -o CMakeFiles/cmTC_75d2f.dir/CMakeCCompilerABI.c.o -x c /opt/homebrew/share/cmake/Modules/CMakeCCompilerABI.c + clang -cc1 version 17.0.0 (clang-1700.0.13.5) default target arm64-apple-darwin24.3.0 + ignoring nonexistent directory "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/local/include" + ignoring nonexistent directory "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/System/Library/SubFrameworks" + ignoring nonexistent directory "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/Library/Frameworks" + #include "..." search starts here: + #include <...> search starts here: + /usr/local/include + /Library/Developer/CommandLineTools/usr/lib/clang/17/include + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include + /Library/Developer/CommandLineTools/usr/include + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/System/Library/Frameworks (framework directory) + End of search list. + Linking C executable cmTC_75d2f + /opt/homebrew/bin/cmake -E cmake_link_script CMakeFiles/cmTC_75d2f.dir/link.txt --verbose=1 + Apple clang version 17.0.0 (clang-1700.0.13.5) + Target: arm64-apple-darwin24.3.0 + Thread model: posix + InstalledDir: /Library/Developer/CommandLineTools/usr/bin + "/Library/Developer/CommandLineTools/usr/bin/ld" -demangle -lto_library /Library/Developer/CommandLineTools/usr/lib/libLTO.dylib -dynamic -arch arm64 -platform_version macos 15.0.0 15.5 -syslibroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -mllvm -enable-linkonceodr-outlining -o cmTC_75d2f -L/usr/local/lib -search_paths_first -headerpad_max_install_names -v CMakeFiles/cmTC_75d2f.dir/CMakeCCompilerABI.c.o -lSystem /Library/Developer/CommandLineTools/usr/lib/clang/17/lib/darwin/libclang_rt.osx.a + @(#)PROGRAM:ld PROJECT:ld-1167.5 + BUILD 01:45:05 Apr 30 2025 + configured to support archs: armv6 armv7 armv7s arm64 arm64e arm64_32 i386 x86_64 x86_64h armv6m armv7k armv7m armv7em + will use ld-classic for: armv6 armv7 armv7s i386 armv6m armv7k armv7m armv7em + LTO support using: LLVM version 17.0.0 (static support for 29, runtime is 29) + TAPI support using: Apple TAPI version 17.0.0 (tapi-1700.0.3.5) + Library search paths: + /usr/local/lib + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/lib + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/lib/swift + Framework search paths: + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/System/Library/Frameworks + /usr/bin/cc -arch arm64 -Wl,-search_paths_first -Wl,-headerpad_max_install_names -v -Wl,-v CMakeFiles/cmTC_75d2f.dir/CMakeCCompilerABI.c.o -o cmTC_75d2f + + exitCode: 0 + - + kind: "message-v1" + backtrace: + - "/opt/homebrew/share/cmake/Modules/CMakeDetermineCompilerABI.cmake:122 (message)" + - "/opt/homebrew/share/cmake/Modules/CMakeTestCCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "lib/platform_common/CMakeLists.txt:4 (project)" + message: | + Effective list of requested architectures (possibly empty) : "" + Effective list of architectures found in the ABI info binary: "arm64" + - + kind: "message-v1" + backtrace: + - "/opt/homebrew/share/cmake/Modules/CMakeDetermineCompilerABI.cmake:217 (message)" + - "/opt/homebrew/share/cmake/Modules/CMakeTestCCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "lib/platform_common/CMakeLists.txt:4 (project)" + message: | + Parsed C implicit include dir info: rv=done + found start of include info + found start of implicit include info + add: [/usr/local/include] + add: [/Library/Developer/CommandLineTools/usr/lib/clang/17/include] + add: [/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include] + add: [/Library/Developer/CommandLineTools/usr/include] + end of search list found + collapse include dir [/usr/local/include] ==> [/usr/local/include] + collapse include dir [/Library/Developer/CommandLineTools/usr/lib/clang/17/include] ==> [/Library/Developer/CommandLineTools/usr/lib/clang/17/include] + collapse include dir [/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include] ==> [/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include] + collapse include dir [/Library/Developer/CommandLineTools/usr/include] ==> [/Library/Developer/CommandLineTools/usr/include] + implicit include dirs: [/usr/local/include;/Library/Developer/CommandLineTools/usr/lib/clang/17/include;/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include;/Library/Developer/CommandLineTools/usr/include] + + + - + kind: "message-v1" + backtrace: + - "/opt/homebrew/share/cmake/Modules/CMakeDetermineCompilerABI.cmake:253 (message)" + - "/opt/homebrew/share/cmake/Modules/CMakeTestCCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "lib/platform_common/CMakeLists.txt:4 (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: '/Users/graf/Documents/GitHub/qubic-core/core/build/CMakeFiles/CMakeScratch/TryCompile-qTCSla'] + ignore line: [] + ignore line: [Run Build Command(s): /opt/homebrew/bin/cmake -E env VERBOSE=1 /usr/bin/make -f Makefile cmTC_75d2f/fast] + ignore line: [/Library/Developer/CommandLineTools/usr/bin/make -f CMakeFiles/cmTC_75d2f.dir/build.make CMakeFiles/cmTC_75d2f.dir/build] + ignore line: [Building C object CMakeFiles/cmTC_75d2f.dir/CMakeCCompilerABI.c.o] + ignore line: [/usr/bin/cc -arch arm64 -v -Wl -v -MD -MT CMakeFiles/cmTC_75d2f.dir/CMakeCCompilerABI.c.o -MF CMakeFiles/cmTC_75d2f.dir/CMakeCCompilerABI.c.o.d -o CMakeFiles/cmTC_75d2f.dir/CMakeCCompilerABI.c.o -c /opt/homebrew/share/cmake/Modules/CMakeCCompilerABI.c] + ignore line: [Apple clang version 17.0.0 (clang-1700.0.13.5)] + ignore line: [Target: arm64-apple-darwin24.3.0] + ignore line: [Thread model: posix] + ignore line: [InstalledDir: /Library/Developer/CommandLineTools/usr/bin] + ignore line: [clang: warning: -Wl -v: 'linker' input unused [-Wunused-command-line-argument]] + ignore line: [ "/Library/Developer/CommandLineTools/usr/bin/clang" -cc1 -triple arm64-apple-macosx15.0.0 -Wundef-prefix=TARGET_OS_ -Wdeprecated-objc-isa-usage -Werror=deprecated-objc-isa-usage -Werror=implicit-function-declaration -emit-obj -disable-free -clear-ast-before-backend -disable-llvm-verifier -discard-value-names -main-file-name CMakeCCompilerABI.c -mrelocation-model pic -pic-level 2 -mframe-pointer=non-leaf -fno-strict-return -ffp-contract=on -fno-rounding-math -funwind-tables=1 -fobjc-msgsend-selector-stubs -target-sdk-version=15.5 -fvisibility-inlines-hidden-static-local-var -fdefine-target-os-macros -fno-assume-unique-vtables -fno-modulemap-allow-subdirectory-search -target-cpu apple-m1 -target-feature +zcm -target-feature +zcz -target-feature +v8.5a -target-feature +aes -target-feature +altnzcv -target-feature +ccdp -target-feature +complxnum -target-feature +crc -target-feature +dotprod -target-feature +fp-armv8 -target-feature +fp16fml -target-feature +fptoint -target-feature +fullfp16 -target-feature +jsconv -target-feature +lse -target-feature +neon -target-feature +pauth -target-feature +perfmon -target-feature +predres -target-feature +ras -target-feature +rcpc -target-feature +rdm -target-feature +sb -target-feature +sha2 -target-feature +sha3 -target-feature +specrestrict -target-feature +ssbs -target-abi darwinpcs -debugger-tuning=lldb -fdebug-compilation-dir=/Users/graf/Documents/GitHub/qubic-core/core/build/CMakeFiles/CMakeScratch/TryCompile-qTCSla -target-linker-version 1167.5 -v -fcoverage-compilation-dir=/Users/graf/Documents/GitHub/qubic-core/core/build/CMakeFiles/CMakeScratch/TryCompile-qTCSla -resource-dir /Library/Developer/CommandLineTools/usr/lib/clang/17 -dependency-file CMakeFiles/cmTC_75d2f.dir/CMakeCCompilerABI.c.o.d -skip-unused-modulemap-deps -MT CMakeFiles/cmTC_75d2f.dir/CMakeCCompilerABI.c.o -sys-header-deps -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -I/usr/local/include -internal-isystem /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/local/include -internal-isystem /Library/Developer/CommandLineTools/usr/lib/clang/17/include -internal-externc-isystem /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include -internal-externc-isystem /Library/Developer/CommandLineTools/usr/include -Wno-reorder-init-list -Wno-implicit-int-float-conversion -Wno-c99-designator -Wno-final-dtor-non-final-class -Wno-extra-semi-stmt -Wno-misleading-indentation -Wno-quoted-include-in-framework-header -Wno-implicit-fallthrough -Wno-enum-enum-conversion -Wno-enum-float-conversion -Wno-elaborated-enum-base -Wno-reserved-identifier -Wno-gnu-folding-constant -ferror-limit 19 -stack-protector 1 -fstack-check -mdarwin-stkchk-strong-link -fblocks -fencode-extended-block-signature -fregister-global-dtors-with-atexit -fgnuc-version=4.2.1 -fskip-odr-check-in-gmf -fmax-type-align=16 -fcommon -clang-vendor-feature=+disableNonDependentMemberExprInCurrentInstantiation -fno-odr-hash-protocols -clang-vendor-feature=+enableAggressiveVLAFolding -clang-vendor-feature=+revert09abecef7bbf -clang-vendor-feature=+thisNoAlignAttr -clang-vendor-feature=+thisNoNullAttr -clang-vendor-feature=+disableAtImportPrivateFrameworkInImplementationError -D__GCC_HAVE_DWARF2_CFI_ASM=1 -o CMakeFiles/cmTC_75d2f.dir/CMakeCCompilerABI.c.o -x c /opt/homebrew/share/cmake/Modules/CMakeCCompilerABI.c] + ignore line: [clang -cc1 version 17.0.0 (clang-1700.0.13.5) default target arm64-apple-darwin24.3.0] + ignore line: [ignoring nonexistent directory "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/local/include"] + ignore line: [ignoring nonexistent directory "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/System/Library/SubFrameworks"] + ignore line: [ignoring nonexistent directory "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/Library/Frameworks"] + ignore line: [#include "..." search starts here:] + ignore line: [#include <...> search starts here:] + ignore line: [ /usr/local/include] + ignore line: [ /Library/Developer/CommandLineTools/usr/lib/clang/17/include] + ignore line: [ /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include] + ignore line: [ /Library/Developer/CommandLineTools/usr/include] + ignore line: [ /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/System/Library/Frameworks (framework directory)] + ignore line: [End of search list.] + ignore line: [Linking C executable cmTC_75d2f] + ignore line: [/opt/homebrew/bin/cmake -E cmake_link_script CMakeFiles/cmTC_75d2f.dir/link.txt --verbose=1] + ignore line: [Apple clang version 17.0.0 (clang-1700.0.13.5)] + ignore line: [Target: arm64-apple-darwin24.3.0] + ignore line: [Thread model: posix] + ignore line: [InstalledDir: /Library/Developer/CommandLineTools/usr/bin] + link line: [ "/Library/Developer/CommandLineTools/usr/bin/ld" -demangle -lto_library /Library/Developer/CommandLineTools/usr/lib/libLTO.dylib -dynamic -arch arm64 -platform_version macos 15.0.0 15.5 -syslibroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -mllvm -enable-linkonceodr-outlining -o cmTC_75d2f -L/usr/local/lib -search_paths_first -headerpad_max_install_names -v CMakeFiles/cmTC_75d2f.dir/CMakeCCompilerABI.c.o -lSystem /Library/Developer/CommandLineTools/usr/lib/clang/17/lib/darwin/libclang_rt.osx.a] + arg [/Library/Developer/CommandLineTools/usr/bin/ld] ==> ignore + arg [-demangle] ==> ignore + arg [-lto_library] ==> ignore, skip following value + arg [/Library/Developer/CommandLineTools/usr/lib/libLTO.dylib] ==> skip value of -lto_library + arg [-dynamic] ==> ignore + arg [-arch] ==> ignore + arg [arm64] ==> ignore + arg [-platform_version] ==> ignore + arg [macos] ==> ignore + arg [15.0.0] ==> ignore + arg [15.5] ==> ignore + arg [-syslibroot] ==> ignore + arg [/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk] ==> ignore + arg [-mllvm] ==> ignore + arg [-enable-linkonceodr-outlining] ==> ignore + arg [-o] ==> ignore + arg [cmTC_75d2f] ==> ignore + arg [-L/usr/local/lib] ==> dir [/usr/local/lib] + arg [-search_paths_first] ==> ignore + arg [-headerpad_max_install_names] ==> ignore + arg [-v] ==> ignore + arg [CMakeFiles/cmTC_75d2f.dir/CMakeCCompilerABI.c.o] ==> ignore + arg [-lSystem] ==> lib [System] + arg [/Library/Developer/CommandLineTools/usr/lib/clang/17/lib/darwin/libclang_rt.osx.a] ==> lib [/Library/Developer/CommandLineTools/usr/lib/clang/17/lib/darwin/libclang_rt.osx.a] + linker tool for 'C': /Library/Developer/CommandLineTools/usr/bin/ld + Library search paths: [;/usr/local/lib;/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/lib;/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/lib/swift] + Framework search paths: [;/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/System/Library/Frameworks] + remove lib [System] + remove lib [/Library/Developer/CommandLineTools/usr/lib/clang/17/lib/darwin/libclang_rt.osx.a] + collapse library dir [/usr/local/lib] ==> [/usr/local/lib] + collapse library dir [/usr/local/lib] ==> [/usr/local/lib] + collapse library dir [/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/lib] ==> [/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/lib] + collapse library dir [/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/lib/swift] ==> [/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/lib/swift] + collapse framework dir [/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/System/Library/Frameworks] ==> [/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/System/Library/Frameworks] + implicit libs: [] + implicit objs: [] + implicit dirs: [/usr/local/lib;/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/lib;/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/lib/swift] + implicit fwks: [/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/System/Library/Frameworks] + + + - + kind: "message-v1" + backtrace: + - "/opt/homebrew/share/cmake/Modules/Internal/CMakeDetermineLinkerId.cmake:36 (message)" + - "/opt/homebrew/share/cmake/Modules/CMakeDetermineCompilerABI.cmake:299 (cmake_determine_linker_id)" + - "/opt/homebrew/share/cmake/Modules/CMakeTestCCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "lib/platform_common/CMakeLists.txt:4 (project)" + message: | + Running the C compiler's linker: "/Library/Developer/CommandLineTools/usr/bin/ld" "-v" + @(#)PROGRAM:ld PROJECT:ld-1167.5 + BUILD 01:45:05 Apr 30 2025 + configured to support archs: armv6 armv7 armv7s arm64 arm64e arm64_32 i386 x86_64 x86_64h armv6m armv7k armv7m armv7em + will use ld-classic for: armv6 armv7 armv7s i386 armv6m armv7k armv7m armv7em + LTO support using: LLVM version 17.0.0 (static support for 29, runtime is 29) + TAPI support using: Apple TAPI version 17.0.0 (tapi-1700.0.3.5) + - + kind: "find-v1" + backtrace: + - "/opt/homebrew/share/cmake/Modules/FindGit.cmake:86 (find_program)" + - "/opt/homebrew/share/cmake/Modules/FetchContent.cmake:1874 (find_package)" + - "/opt/homebrew/share/cmake/Modules/FetchContent.cmake:1609 (__FetchContent_populateSubbuild)" + - "/opt/homebrew/share/cmake/Modules/FetchContent.cmake:2145:EVAL:2 (__FetchContent_doPopulation)" + - "/opt/homebrew/share/cmake/Modules/FetchContent.cmake:2145 (cmake_language)" + - "/opt/homebrew/share/cmake/Modules/FetchContent.cmake:2384 (__FetchContent_Populate)" + - "test/CMakeLists.txt:16 (FetchContent_MakeAvailable)" + mode: "program" + variable: "GIT_EXECUTABLE" + description: "Git command line client" + settings: + SearchFramework: "FIRST" + SearchAppBundle: "FIRST" + 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: + - "git" + candidate_directories: + - "/Users/graf/.nvm/versions/node/v20.19.5/bin/" + - "/opt/homebrew/opt/openjdk@17/bin/" + - "/Users/graf/Library/Python/3.9/bin/" + - "/Users/graf/Library/Python/3.x/bin/" + - "/Users/graf/Library/Application Support/Code/User/globalStorage/github.copilot-chat/debugCommand/" + - "/Users/graf/Library/Application Support/Code/User/globalStorage/github.copilot-chat/copilotCli/" + - "/opt/homebrew/bin/" + - "/opt/homebrew/sbin/" + - "/usr/local/bin/" + - "/System/Cryptexes/App/usr/bin/" + - "/usr/bin/" + - "/bin/" + - "/usr/sbin/" + - "/sbin/" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin/" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin/" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin/" + - "/Library/Apple/usr/bin/" + - "/Users/graf/.dotnet/tools/" + - "/Users/graf/.sdkman/candidates/java/current/bin/" + - "/Users/graf/.cargo/bin/" + - "/Users/graf/Documents/GitHub/qubic-core/core/build/Unknown command/" + - "/Users/graf/Documents/GitHub/qubic-core/core/build/ bin To see a list of supported npm commands, run/" + - "/Users/graf/Documents/GitHub/qubic-core/core/build/ npm help/" + - "/Users/graf/.npm-global/bin/" + - "/Users/graf/.vscode/extensions/ms-python.debugpy-2025.18.0-darwin-arm64/bundled/scripts/noConfigScripts/" + - "/Users/graf/Documents/GitHub/qubic-core/core/build/ \"bin\"\n\nTo see a list of supported npm commands, run/" + - "/Users/graf/Documents/GitHub/qubic-core/core/build/\n npm help/" + - "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/bin/" + - "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/sbin/" + - "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/" + - "/opt/homebrew/bin/" + - "/opt/homebrew/sbin/" + - "/opt/homebrew/" + - "/usr/local/bin/" + - "/usr/local/sbin/" + - "/usr/local/" + - "/usr/bin/" + - "/usr/sbin/" + - "/usr/" + - "/bin/" + - "/sbin/" + - "/usr/X11R6/bin/" + - "/usr/X11R6/sbin/" + - "/usr/X11R6/" + - "/usr/pkg/bin/" + - "/usr/pkg/sbin/" + - "/usr/pkg/" + - "/opt/bin/" + - "/opt/sbin/" + - "/opt/" + - "/sw/bin/" + - "/sw/sbin/" + - "/sw/" + - "/opt/local/bin/" + - "/opt/local/sbin/" + - "/opt/local/" + - "/Users/graf/Applications/" + - "/Applications/" + searched_directories: + - "/Users/graf/.nvm/versions/node/v20.19.5/bin/git" + - "/opt/homebrew/opt/openjdk@17/bin/git" + - "/Users/graf/Library/Python/3.9/bin/git" + - "/Users/graf/Library/Python/3.x/bin/git" + - "/Users/graf/Library/Application Support/Code/User/globalStorage/github.copilot-chat/debugCommand/git" + - "/Users/graf/Library/Application Support/Code/User/globalStorage/github.copilot-chat/copilotCli/git" + - "/opt/homebrew/bin/git" + - "/opt/homebrew/sbin/git" + - "/usr/local/bin/git" + - "/System/Cryptexes/App/usr/bin/git" + found: "/usr/bin/git" + search_context: + ENV{PATH}: + - "/Users/graf/.nvm/versions/node/v20.19.5/bin" + - "/opt/homebrew/opt/openjdk@17/bin" + - "/Users/graf/Library/Python/3.9/bin" + - "/Users/graf/Library/Python/3.x/bin" + - "/Users/graf/Library/Application Support/Code/User/globalStorage/github.copilot-chat/debugCommand" + - "/Users/graf/Library/Application Support/Code/User/globalStorage/github.copilot-chat/copilotCli" + - "/opt/homebrew/bin" + - "/opt/homebrew/bin" + - "/opt/homebrew/sbin" + - "/usr/local/bin" + - "/System/Cryptexes/App/usr/bin" + - "/usr/bin" + - "/bin" + - "/usr/sbin" + - "/sbin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin" + - "/Library/Apple/usr/bin" + - "~/.dotnet/tools" + - "/Users/graf/Library/Application Support/Code/User/globalStorage/github.copilot-chat/debugCommand" + - "/Users/graf/Library/Application Support/Code/User/globalStorage/github.copilot-chat/copilotCli" + - "/Users/graf/.nvm/versions/node/v20.19.5/bin" + - "/opt/homebrew/opt/openjdk@17/bin" + - "/Users/graf/.sdkman/candidates/java/current/bin" + - "/Users/graf/Library/Python/3.9/bin" + - "/Users/graf/Library/Python/3.x/bin" + - "/Users/graf/.cargo/bin" + - "Unknown command" + - " bin To see a list of supported npm commands, run" + - " npm help" + - "/Users/graf/.npm-global/bin" + - "/Users/graf/.vscode/extensions/ms-python.debugpy-2025.18.0-darwin-arm64/bundled/scripts/noConfigScripts" + - "Unknown command" + - " \"bin\"\n\nTo see a list of supported npm commands, run" + - "\n npm help" + - "/Users/graf/.npm-global/bin" + CMAKE_INSTALL_PREFIX: "/usr/local" + CMAKE_SYSTEM_PREFIX_PATH: + - "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr" + - "/opt/homebrew" + - "/usr/local" + - "/usr" + - "/" + - "/opt/homebrew" + - "/usr/local" + - "/usr/X11R6" + - "/usr/pkg" + - "/opt" + - "/sw" + - "/opt/local" + CMAKE_SYSTEM_APPBUNDLE_PATH: + - "/Users/graf/Applications" + - "/Applications" + - + kind: "try_compile-v1" + backtrace: + - "/opt/homebrew/share/cmake/Modules/Internal/CheckSourceCompiles.cmake:104 (try_compile)" + - "/opt/homebrew/share/cmake/Modules/CheckCSourceCompiles.cmake:103 (cmake_check_source_compiles)" + - "/opt/homebrew/share/cmake/Modules/FindThreads.cmake:97 (check_c_source_compiles)" + - "/opt/homebrew/share/cmake/Modules/FindThreads.cmake:163 (_threads_check_libc)" + - "build/_deps/googletest-src/googletest/cmake/internal_utils.cmake:66 (find_package)" + - "build/_deps/googletest-src/googletest/CMakeLists.txt:83 (config_compiler_and_linker)" + checks: + - "Performing Test CMAKE_HAVE_LIBC_PTHREAD" + directories: + source: "/Users/graf/Documents/GitHub/qubic-core/core/build/CMakeFiles/CMakeScratch/TryCompile-r0kzSB" + binary: "/Users/graf/Documents/GitHub/qubic-core/core/build/CMakeFiles/CMakeScratch/TryCompile-r0kzSB" + cmakeVariables: + CMAKE_C_FLAGS: "" + CMAKE_C_FLAGS_DEBUG: "" + CMAKE_EXE_LINKER_FLAGS: "" + CMAKE_MODULE_PATH: "/Users/graf/Documents/GitHub/qubic-core/core/cmake" + CMAKE_OSX_ARCHITECTURES: "" + CMAKE_OSX_DEPLOYMENT_TARGET: "" + CMAKE_OSX_SYSROOT: "" + buildResult: + variable: "CMAKE_HAVE_LIBC_PTHREAD" + cached: true + stdout: | + Change Dir: '/Users/graf/Documents/GitHub/qubic-core/core/build/CMakeFiles/CMakeScratch/TryCompile-r0kzSB' + + Run Build Command(s): /opt/homebrew/bin/cmake -E env VERBOSE=1 /usr/bin/make -f Makefile cmTC_e7cbe/fast + /Library/Developer/CommandLineTools/usr/bin/make -f CMakeFiles/cmTC_e7cbe.dir/build.make CMakeFiles/cmTC_e7cbe.dir/build + Building C object CMakeFiles/cmTC_e7cbe.dir/src.c.o + /usr/bin/cc -DCMAKE_HAVE_LIBC_PTHREAD -arch arm64 -MD -MT CMakeFiles/cmTC_e7cbe.dir/src.c.o -MF CMakeFiles/cmTC_e7cbe.dir/src.c.o.d -o CMakeFiles/cmTC_e7cbe.dir/src.c.o -c /Users/graf/Documents/GitHub/qubic-core/core/build/CMakeFiles/CMakeScratch/TryCompile-r0kzSB/src.c + Linking C executable cmTC_e7cbe + /opt/homebrew/bin/cmake -E cmake_link_script CMakeFiles/cmTC_e7cbe.dir/link.txt --verbose=1 + /usr/bin/cc -arch arm64 -Wl,-search_paths_first -Wl,-headerpad_max_install_names CMakeFiles/cmTC_e7cbe.dir/src.c.o -o cmTC_e7cbe + + exitCode: 0 + - + kind: "find-v1" + backtrace: + - "/opt/homebrew/share/cmake/Modules/CMakeDetermineCompiler.cmake:54 (find_program)" + - "/opt/homebrew/share/cmake/Modules/CMakeDetermineASMCompiler.cmake:61 (_cmake_find_compiler)" + - "/opt/homebrew/share/cmake/Modules/CMakeDetermineASM_MASMCompiler.cmake:17 (include)" + - "src/CMakeLists.txt:2 (project)" + mode: "program" + variable: "CMAKE_ASM_MASM_COMPILER" + description: "ASM_MASM compiler" + settings: + SearchFramework: "FIRST" + SearchAppBundle: "FIRST" + 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: + - "ml" + candidate_directories: + - "/usr/bin/" + searched_directories: + - "/usr/bin/ml" + found: false + search_context: + ENV{PATH}: + - "/Users/graf/.nvm/versions/node/v20.19.5/bin" + - "/opt/homebrew/opt/openjdk@17/bin" + - "/Users/graf/Library/Python/3.9/bin" + - "/Users/graf/Library/Python/3.x/bin" + - "/Users/graf/Library/Application Support/Code/User/globalStorage/github.copilot-chat/debugCommand" + - "/Users/graf/Library/Application Support/Code/User/globalStorage/github.copilot-chat/copilotCli" + - "/opt/homebrew/bin" + - "/opt/homebrew/bin" + - "/opt/homebrew/sbin" + - "/usr/local/bin" + - "/System/Cryptexes/App/usr/bin" + - "/usr/bin" + - "/bin" + - "/usr/sbin" + - "/sbin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin" + - "/Library/Apple/usr/bin" + - "~/.dotnet/tools" + - "/Users/graf/Library/Application Support/Code/User/globalStorage/github.copilot-chat/debugCommand" + - "/Users/graf/Library/Application Support/Code/User/globalStorage/github.copilot-chat/copilotCli" + - "/Users/graf/.nvm/versions/node/v20.19.5/bin" + - "/opt/homebrew/opt/openjdk@17/bin" + - "/Users/graf/.sdkman/candidates/java/current/bin" + - "/Users/graf/Library/Python/3.9/bin" + - "/Users/graf/Library/Python/3.x/bin" + - "/Users/graf/.cargo/bin" + - "Unknown command" + - " bin To see a list of supported npm commands, run" + - " npm help" + - "/Users/graf/.npm-global/bin" + - "/Users/graf/.vscode/extensions/ms-python.debugpy-2025.18.0-darwin-arm64/bundled/scripts/noConfigScripts" + - "Unknown command" + - " \"bin\"\n\nTo see a list of supported npm commands, run" + - "\n npm help" + - "/Users/graf/.npm-global/bin" + CMAKE_INSTALL_PREFIX: "/usr/local" + CMAKE_SYSTEM_PREFIX_PATH: + - "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr" + - "/opt/homebrew" + - "/usr/local" + - "/usr" + - "/" + - "/opt/homebrew" + - "/usr/local" + - "/usr/X11R6" + - "/usr/pkg" + - "/opt" + - "/sw" + - "/opt/local" + CMAKE_SYSTEM_APPBUNDLE_PATH: + - "/Users/graf/Applications" + - "/Applications" + - + kind: "message-v1" + backtrace: + - "/opt/homebrew/share/cmake/Modules/CMakeDetermineCompilerId.cmake:1303 (message)" + - "/opt/homebrew/share/cmake/Modules/CMakeDetermineASMCompiler.cmake:170 (CMAKE_DETERMINE_COMPILER_ID_VENDOR)" + - "/opt/homebrew/share/cmake/Modules/CMakeDetermineASM_MASMCompiler.cmake:17 (include)" + - "src/CMakeLists.txt:2 (project)" + message: | + Checking whether the ASM_MASM compiler is GNU using "--version" did not match "(GNU assembler)|(GCC)|(Free Software Foundation)": + - + kind: "message-v1" + backtrace: + - "/opt/homebrew/share/cmake/Modules/CMakeDetermineCompilerId.cmake:1303 (message)" + - "/opt/homebrew/share/cmake/Modules/CMakeDetermineASMCompiler.cmake:170 (CMAKE_DETERMINE_COMPILER_ID_VENDOR)" + - "/opt/homebrew/share/cmake/Modules/CMakeDetermineASM_MASMCompiler.cmake:17 (include)" + - "src/CMakeLists.txt:2 (project)" + message: | + Checking whether the ASM_MASM compiler is AppleClang using "--version" did not match "(Apple (clang|LLVM) version)": + - + kind: "message-v1" + backtrace: + - "/opt/homebrew/share/cmake/Modules/CMakeDetermineCompilerId.cmake:1303 (message)" + - "/opt/homebrew/share/cmake/Modules/CMakeDetermineASMCompiler.cmake:170 (CMAKE_DETERMINE_COMPILER_ID_VENDOR)" + - "/opt/homebrew/share/cmake/Modules/CMakeDetermineASM_MASMCompiler.cmake:17 (include)" + - "src/CMakeLists.txt:2 (project)" + message: | + Checking whether the ASM_MASM compiler is Clang using "--version" did not match "(clang version)": + - + kind: "message-v1" + backtrace: + - "/opt/homebrew/share/cmake/Modules/CMakeDetermineCompilerId.cmake:1303 (message)" + - "/opt/homebrew/share/cmake/Modules/CMakeDetermineASMCompiler.cmake:170 (CMAKE_DETERMINE_COMPILER_ID_VENDOR)" + - "/opt/homebrew/share/cmake/Modules/CMakeDetermineASM_MASMCompiler.cmake:17 (include)" + - "src/CMakeLists.txt:2 (project)" + message: | + Checking whether the ASM_MASM compiler is ARMClang using "--version" did not match "armclang": + - + kind: "message-v1" + backtrace: + - "/opt/homebrew/share/cmake/Modules/CMakeDetermineCompilerId.cmake:1303 (message)" + - "/opt/homebrew/share/cmake/Modules/CMakeDetermineASMCompiler.cmake:170 (CMAKE_DETERMINE_COMPILER_ID_VENDOR)" + - "/opt/homebrew/share/cmake/Modules/CMakeDetermineASM_MASMCompiler.cmake:17 (include)" + - "src/CMakeLists.txt:2 (project)" + message: | + Checking whether the ASM_MASM compiler is OrangeC using "--version" did not match "occ \\(OrangeC\\) Version": + - + kind: "message-v1" + backtrace: + - "/opt/homebrew/share/cmake/Modules/CMakeDetermineCompilerId.cmake:1303 (message)" + - "/opt/homebrew/share/cmake/Modules/CMakeDetermineASMCompiler.cmake:170 (CMAKE_DETERMINE_COMPILER_ID_VENDOR)" + - "/opt/homebrew/share/cmake/Modules/CMakeDetermineASM_MASMCompiler.cmake:17 (include)" + - "src/CMakeLists.txt:2 (project)" + message: | + Checking whether the ASM_MASM compiler is HP using "-V" did not match "HP C": + - + kind: "message-v1" + backtrace: + - "/opt/homebrew/share/cmake/Modules/CMakeDetermineCompilerId.cmake:1303 (message)" + - "/opt/homebrew/share/cmake/Modules/CMakeDetermineASMCompiler.cmake:170 (CMAKE_DETERMINE_COMPILER_ID_VENDOR)" + - "/opt/homebrew/share/cmake/Modules/CMakeDetermineASM_MASMCompiler.cmake:17 (include)" + - "src/CMakeLists.txt:2 (project)" + message: | + Checking whether the ASM_MASM compiler is Intel using "--version" did not match "(ICC)": + - + kind: "message-v1" + backtrace: + - "/opt/homebrew/share/cmake/Modules/CMakeDetermineCompilerId.cmake:1303 (message)" + - "/opt/homebrew/share/cmake/Modules/CMakeDetermineASMCompiler.cmake:170 (CMAKE_DETERMINE_COMPILER_ID_VENDOR)" + - "/opt/homebrew/share/cmake/Modules/CMakeDetermineASM_MASMCompiler.cmake:17 (include)" + - "src/CMakeLists.txt:2 (project)" + message: | + Checking whether the ASM_MASM compiler is IntelLLVM using "--version" did not match "(Intel[^ + ]+oneAPI)": + - + kind: "message-v1" + backtrace: + - "/opt/homebrew/share/cmake/Modules/CMakeDetermineCompilerId.cmake:1303 (message)" + - "/opt/homebrew/share/cmake/Modules/CMakeDetermineASMCompiler.cmake:170 (CMAKE_DETERMINE_COMPILER_ID_VENDOR)" + - "/opt/homebrew/share/cmake/Modules/CMakeDetermineASM_MASMCompiler.cmake:17 (include)" + - "src/CMakeLists.txt:2 (project)" + message: | + Checking whether the ASM_MASM compiler is SunPro using "-V" did not match "Sun C": + - + kind: "message-v1" + backtrace: + - "/opt/homebrew/share/cmake/Modules/CMakeDetermineCompilerId.cmake:1303 (message)" + - "/opt/homebrew/share/cmake/Modules/CMakeDetermineASMCompiler.cmake:170 (CMAKE_DETERMINE_COMPILER_ID_VENDOR)" + - "/opt/homebrew/share/cmake/Modules/CMakeDetermineASM_MASMCompiler.cmake:17 (include)" + - "src/CMakeLists.txt:2 (project)" + message: | + Checking whether the ASM_MASM compiler is XL using "-qversion" did not match "XL C": + - + kind: "message-v1" + backtrace: + - "/opt/homebrew/share/cmake/Modules/CMakeDetermineCompilerId.cmake:1303 (message)" + - "/opt/homebrew/share/cmake/Modules/CMakeDetermineASMCompiler.cmake:170 (CMAKE_DETERMINE_COMPILER_ID_VENDOR)" + - "/opt/homebrew/share/cmake/Modules/CMakeDetermineASM_MASMCompiler.cmake:17 (include)" + - "src/CMakeLists.txt:2 (project)" + message: | + Checking whether the ASM_MASM compiler is MSVC using "-?" did not match "Microsoft": + - + kind: "message-v1" + backtrace: + - "/opt/homebrew/share/cmake/Modules/CMakeDetermineCompilerId.cmake:1303 (message)" + - "/opt/homebrew/share/cmake/Modules/CMakeDetermineASMCompiler.cmake:170 (CMAKE_DETERMINE_COMPILER_ID_VENDOR)" + - "/opt/homebrew/share/cmake/Modules/CMakeDetermineASM_MASMCompiler.cmake:17 (include)" + - "src/CMakeLists.txt:2 (project)" + message: | + Checking whether the ASM_MASM compiler is TI using "-h" did not match "Texas Instruments": + - + kind: "message-v1" + backtrace: + - "/opt/homebrew/share/cmake/Modules/CMakeDetermineCompilerId.cmake:1303 (message)" + - "/opt/homebrew/share/cmake/Modules/CMakeDetermineASMCompiler.cmake:170 (CMAKE_DETERMINE_COMPILER_ID_VENDOR)" + - "/opt/homebrew/share/cmake/Modules/CMakeDetermineASM_MASMCompiler.cmake:17 (include)" + - "src/CMakeLists.txt:2 (project)" + message: | + Checking whether the ASM_MASM compiler is TIClang using "--version" did not match "(TI (.*) Clang Compiler)": + - + kind: "message-v1" + backtrace: + - "/opt/homebrew/share/cmake/Modules/CMakeDetermineCompilerId.cmake:1303 (message)" + - "/opt/homebrew/share/cmake/Modules/CMakeDetermineASMCompiler.cmake:170 (CMAKE_DETERMINE_COMPILER_ID_VENDOR)" + - "/opt/homebrew/share/cmake/Modules/CMakeDetermineASM_MASMCompiler.cmake:17 (include)" + - "src/CMakeLists.txt:2 (project)" + message: | + Checking whether the ASM_MASM compiler is IAR using "" did not match "IAR Assembler": + - + kind: "message-v1" + backtrace: + - "/opt/homebrew/share/cmake/Modules/CMakeDetermineCompilerId.cmake:1303 (message)" + - "/opt/homebrew/share/cmake/Modules/CMakeDetermineASMCompiler.cmake:170 (CMAKE_DETERMINE_COMPILER_ID_VENDOR)" + - "/opt/homebrew/share/cmake/Modules/CMakeDetermineASM_MASMCompiler.cmake:17 (include)" + - "src/CMakeLists.txt:2 (project)" + message: | + Checking whether the ASM_MASM compiler is Diab using "-V" did not match "Wind River Systems": + - + kind: "message-v1" + backtrace: + - "/opt/homebrew/share/cmake/Modules/CMakeDetermineCompilerId.cmake:1303 (message)" + - "/opt/homebrew/share/cmake/Modules/CMakeDetermineASMCompiler.cmake:170 (CMAKE_DETERMINE_COMPILER_ID_VENDOR)" + - "/opt/homebrew/share/cmake/Modules/CMakeDetermineASM_MASMCompiler.cmake:17 (include)" + - "src/CMakeLists.txt:2 (project)" + message: | + Checking whether the ASM_MASM compiler is ARMCC using "" did not match "(ARM Compiler)|(ARM Assembler)|(Arm Compiler)": + - + kind: "message-v1" + backtrace: + - "/opt/homebrew/share/cmake/Modules/CMakeDetermineCompilerId.cmake:1303 (message)" + - "/opt/homebrew/share/cmake/Modules/CMakeDetermineASMCompiler.cmake:170 (CMAKE_DETERMINE_COMPILER_ID_VENDOR)" + - "/opt/homebrew/share/cmake/Modules/CMakeDetermineASM_MASMCompiler.cmake:17 (include)" + - "src/CMakeLists.txt:2 (project)" + message: | + Checking whether the ASM_MASM compiler is NASM using "-v" did not match "(NASM version)": + - + kind: "message-v1" + backtrace: + - "/opt/homebrew/share/cmake/Modules/CMakeDetermineCompilerId.cmake:1303 (message)" + - "/opt/homebrew/share/cmake/Modules/CMakeDetermineASMCompiler.cmake:170 (CMAKE_DETERMINE_COMPILER_ID_VENDOR)" + - "/opt/homebrew/share/cmake/Modules/CMakeDetermineASM_MASMCompiler.cmake:17 (include)" + - "src/CMakeLists.txt:2 (project)" + message: | + Checking whether the ASM_MASM compiler is YASM using "--version" did not match "(yasm)": + - + kind: "message-v1" + backtrace: + - "/opt/homebrew/share/cmake/Modules/CMakeDetermineCompilerId.cmake:1303 (message)" + - "/opt/homebrew/share/cmake/Modules/CMakeDetermineASMCompiler.cmake:170 (CMAKE_DETERMINE_COMPILER_ID_VENDOR)" + - "/opt/homebrew/share/cmake/Modules/CMakeDetermineASM_MASMCompiler.cmake:17 (include)" + - "src/CMakeLists.txt:2 (project)" + message: | + Checking whether the ASM_MASM compiler is ADSP using "-version" did not match "Analog Devices": + - + kind: "message-v1" + backtrace: + - "/opt/homebrew/share/cmake/Modules/CMakeDetermineCompilerId.cmake:1303 (message)" + - "/opt/homebrew/share/cmake/Modules/CMakeDetermineASMCompiler.cmake:170 (CMAKE_DETERMINE_COMPILER_ID_VENDOR)" + - "/opt/homebrew/share/cmake/Modules/CMakeDetermineASM_MASMCompiler.cmake:17 (include)" + - "src/CMakeLists.txt:2 (project)" + message: | + Checking whether the ASM_MASM compiler is QCC using "-V" did not match "gcc_nto": + - + kind: "message-v1" + backtrace: + - "/opt/homebrew/share/cmake/Modules/CMakeDetermineCompilerId.cmake:1303 (message)" + - "/opt/homebrew/share/cmake/Modules/CMakeDetermineASMCompiler.cmake:170 (CMAKE_DETERMINE_COMPILER_ID_VENDOR)" + - "/opt/homebrew/share/cmake/Modules/CMakeDetermineASM_MASMCompiler.cmake:17 (include)" + - "src/CMakeLists.txt:2 (project)" + message: | + Checking whether the ASM_MASM compiler is Tasking using "--version" did not match "TASKING": + - + kind: "message-v1" + backtrace: + - "/opt/homebrew/share/cmake/Modules/CMakeDetermineCompilerId.cmake:1303 (message)" + - "/opt/homebrew/share/cmake/Modules/CMakeDetermineASMCompiler.cmake:170 (CMAKE_DETERMINE_COMPILER_ID_VENDOR)" + - "/opt/homebrew/share/cmake/Modules/CMakeDetermineASM_MASMCompiler.cmake:17 (include)" + - "src/CMakeLists.txt:2 (project)" + message: | + Checking whether the ASM_MASM compiler is Renesas using "-v" did not match "(RX Family C/C\\+\\+ Compiler)|(RL78 Family Compiler)|(RH850 Family Compiler)": +... diff --git a/build/CMakeFiles/CMakeDirectoryInformation.cmake b/build/CMakeFiles/CMakeDirectoryInformation.cmake new file mode 100644 index 000000000..e2771e437 --- /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 "/Users/graf/Documents/GitHub/qubic-core/core") +set(CMAKE_RELATIVE_PATH_TOP_BINARY "/Users/graf/Documents/GitHub/qubic-core/core/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 000000000..3fcc1b5e9 --- /dev/null +++ b/build/CMakeFiles/InstallScripts.json @@ -0,0 +1,15 @@ +{ + "InstallScripts" : + [ + "/Users/graf/Documents/GitHub/qubic-core/core/build/cmake_install.cmake", + "/Users/graf/Documents/GitHub/qubic-core/core/build/lib/platform_common/cmake_install.cmake", + "/Users/graf/Documents/GitHub/qubic-core/core/build/lib/platform_efi/cmake_install.cmake", + "/Users/graf/Documents/GitHub/qubic-core/core/build/lib/platform_os/cmake_install.cmake", + "/Users/graf/Documents/GitHub/qubic-core/core/build/test/cmake_install.cmake", + "/Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-build/cmake_install.cmake", + "/Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-build/googlemock/cmake_install.cmake", + "/Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-build/googletest/cmake_install.cmake", + "/Users/graf/Documents/GitHub/qubic-core/core/build/src/cmake_install.cmake" + ], + "Parallel" : false +} diff --git a/build/CMakeFiles/Makefile.cmake b/build/CMakeFiles/Makefile.cmake new file mode 100644 index 000000000..7fcb21d01 --- /dev/null +++ b/build/CMakeFiles/Makefile.cmake @@ -0,0 +1,217 @@ +# 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" + "/Users/graf/Documents/GitHub/qubic-core/core/CMakeLists.txt" + "CMakeFiles/4.1.1/CMakeASM_MASMCompiler.cmake" + "CMakeFiles/4.1.1/CMakeCCompiler.cmake" + "CMakeFiles/4.1.1/CMakeCXXCompiler.cmake" + "CMakeFiles/4.1.1/CMakeSystem.cmake" + "_deps/googletest-src/CMakeLists.txt" + "_deps/googletest-src/googlemock/CMakeLists.txt" + "_deps/googletest-src/googlemock/cmake/gmock.pc.in" + "_deps/googletest-src/googlemock/cmake/gmock_main.pc.in" + "_deps/googletest-src/googletest/CMakeLists.txt" + "_deps/googletest-src/googletest/cmake/Config.cmake.in" + "_deps/googletest-src/googletest/cmake/gtest.pc.in" + "_deps/googletest-src/googletest/cmake/gtest_main.pc.in" + "_deps/googletest-src/googletest/cmake/internal_utils.cmake" + "/Users/graf/Documents/GitHub/qubic-core/core/cmake/CompilerSetup.cmake" + "/Users/graf/Documents/GitHub/qubic-core/core/lib/platform_common/CMakeLists.txt" + "/Users/graf/Documents/GitHub/qubic-core/core/lib/platform_efi/CMakeLists.txt" + "/Users/graf/Documents/GitHub/qubic-core/core/lib/platform_os/CMakeLists.txt" + "/Users/graf/Documents/GitHub/qubic-core/core/src/CMakeLists.txt" + "/Users/graf/Documents/GitHub/qubic-core/core/test/CMakeLists.txt" + "/opt/homebrew/share/cmake/Modules/BasicConfigVersion-AnyNewerVersion.cmake.in" + "/opt/homebrew/share/cmake/Modules/CMakeASMCompiler.cmake.in" + "/opt/homebrew/share/cmake/Modules/CMakeASMInformation.cmake" + "/opt/homebrew/share/cmake/Modules/CMakeASM_MASMInformation.cmake" + "/opt/homebrew/share/cmake/Modules/CMakeCCompiler.cmake.in" + "/opt/homebrew/share/cmake/Modules/CMakeCCompilerABI.c" + "/opt/homebrew/share/cmake/Modules/CMakeCInformation.cmake" + "/opt/homebrew/share/cmake/Modules/CMakeCXXCompiler.cmake.in" + "/opt/homebrew/share/cmake/Modules/CMakeCXXCompilerABI.cpp" + "/opt/homebrew/share/cmake/Modules/CMakeCXXInformation.cmake" + "/opt/homebrew/share/cmake/Modules/CMakeCommonLanguageInclude.cmake" + "/opt/homebrew/share/cmake/Modules/CMakeCompilerIdDetection.cmake" + "/opt/homebrew/share/cmake/Modules/CMakeDependentOption.cmake" + "/opt/homebrew/share/cmake/Modules/CMakeDetermineASMCompiler.cmake" + "/opt/homebrew/share/cmake/Modules/CMakeDetermineASM_MASMCompiler.cmake" + "/opt/homebrew/share/cmake/Modules/CMakeDetermineCCompiler.cmake" + "/opt/homebrew/share/cmake/Modules/CMakeDetermineCXXCompiler.cmake" + "/opt/homebrew/share/cmake/Modules/CMakeDetermineCompiler.cmake" + "/opt/homebrew/share/cmake/Modules/CMakeDetermineCompilerABI.cmake" + "/opt/homebrew/share/cmake/Modules/CMakeDetermineCompilerId.cmake" + "/opt/homebrew/share/cmake/Modules/CMakeDetermineCompilerSupport.cmake" + "/opt/homebrew/share/cmake/Modules/CMakeDetermineSystem.cmake" + "/opt/homebrew/share/cmake/Modules/CMakeFindBinUtils.cmake" + "/opt/homebrew/share/cmake/Modules/CMakeGenericSystem.cmake" + "/opt/homebrew/share/cmake/Modules/CMakeInitializeConfigs.cmake" + "/opt/homebrew/share/cmake/Modules/CMakeLanguageInformation.cmake" + "/opt/homebrew/share/cmake/Modules/CMakePackageConfigHelpers.cmake" + "/opt/homebrew/share/cmake/Modules/CMakeParseImplicitIncludeInfo.cmake" + "/opt/homebrew/share/cmake/Modules/CMakeParseImplicitLinkInfo.cmake" + "/opt/homebrew/share/cmake/Modules/CMakeParseLibraryArchitecture.cmake" + "/opt/homebrew/share/cmake/Modules/CMakeSystem.cmake.in" + "/opt/homebrew/share/cmake/Modules/CMakeSystemSpecificInformation.cmake" + "/opt/homebrew/share/cmake/Modules/CMakeSystemSpecificInitialize.cmake" + "/opt/homebrew/share/cmake/Modules/CMakeTestASMCompiler.cmake" + "/opt/homebrew/share/cmake/Modules/CMakeTestASM_MASMCompiler.cmake" + "/opt/homebrew/share/cmake/Modules/CMakeTestCCompiler.cmake" + "/opt/homebrew/share/cmake/Modules/CMakeTestCXXCompiler.cmake" + "/opt/homebrew/share/cmake/Modules/CMakeTestCompilerCommon.cmake" + "/opt/homebrew/share/cmake/Modules/CMakeUnixFindMake.cmake" + "/opt/homebrew/share/cmake/Modules/CheckCSourceCompiles.cmake" + "/opt/homebrew/share/cmake/Modules/CheckIncludeFile.cmake" + "/opt/homebrew/share/cmake/Modules/CheckLibraryExists.cmake" + "/opt/homebrew/share/cmake/Modules/Compiler/ADSP-DetermineCompiler.cmake" + "/opt/homebrew/share/cmake/Modules/Compiler/ARMCC-DetermineCompiler.cmake" + "/opt/homebrew/share/cmake/Modules/Compiler/ARMClang-DetermineCompiler.cmake" + "/opt/homebrew/share/cmake/Modules/Compiler/AppleClang-C.cmake" + "/opt/homebrew/share/cmake/Modules/Compiler/AppleClang-CXX.cmake" + "/opt/homebrew/share/cmake/Modules/Compiler/AppleClang-DetermineCompiler.cmake" + "/opt/homebrew/share/cmake/Modules/Compiler/Borland-DetermineCompiler.cmake" + "/opt/homebrew/share/cmake/Modules/Compiler/Bruce-C-DetermineCompiler.cmake" + "/opt/homebrew/share/cmake/Modules/Compiler/CMakeCommonCompilerMacros.cmake" + "/opt/homebrew/share/cmake/Modules/Compiler/Clang-DetermineCompiler.cmake" + "/opt/homebrew/share/cmake/Modules/Compiler/Clang-DetermineCompilerInternal.cmake" + "/opt/homebrew/share/cmake/Modules/Compiler/Clang.cmake" + "/opt/homebrew/share/cmake/Modules/Compiler/Compaq-C-DetermineCompiler.cmake" + "/opt/homebrew/share/cmake/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake" + "/opt/homebrew/share/cmake/Modules/Compiler/Cray-DetermineCompiler.cmake" + "/opt/homebrew/share/cmake/Modules/Compiler/CrayClang-DetermineCompiler.cmake" + "/opt/homebrew/share/cmake/Modules/Compiler/Diab-DetermineCompiler.cmake" + "/opt/homebrew/share/cmake/Modules/Compiler/Embarcadero-DetermineCompiler.cmake" + "/opt/homebrew/share/cmake/Modules/Compiler/Fujitsu-DetermineCompiler.cmake" + "/opt/homebrew/share/cmake/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake" + "/opt/homebrew/share/cmake/Modules/Compiler/GHS-DetermineCompiler.cmake" + "/opt/homebrew/share/cmake/Modules/Compiler/GNU-C-DetermineCompiler.cmake" + "/opt/homebrew/share/cmake/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake" + "/opt/homebrew/share/cmake/Modules/Compiler/GNU.cmake" + "/opt/homebrew/share/cmake/Modules/Compiler/HP-C-DetermineCompiler.cmake" + "/opt/homebrew/share/cmake/Modules/Compiler/HP-CXX-DetermineCompiler.cmake" + "/opt/homebrew/share/cmake/Modules/Compiler/IAR-DetermineCompiler.cmake" + "/opt/homebrew/share/cmake/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake" + "/opt/homebrew/share/cmake/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake" + "/opt/homebrew/share/cmake/Modules/Compiler/IBMClang-C-DetermineCompiler.cmake" + "/opt/homebrew/share/cmake/Modules/Compiler/IBMClang-CXX-DetermineCompiler.cmake" + "/opt/homebrew/share/cmake/Modules/Compiler/Intel-DetermineCompiler.cmake" + "/opt/homebrew/share/cmake/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake" + "/opt/homebrew/share/cmake/Modules/Compiler/LCC-C-DetermineCompiler.cmake" + "/opt/homebrew/share/cmake/Modules/Compiler/LCC-CXX-DetermineCompiler.cmake" + "/opt/homebrew/share/cmake/Modules/Compiler/MSVC-DetermineCompiler.cmake" + "/opt/homebrew/share/cmake/Modules/Compiler/NVHPC-DetermineCompiler.cmake" + "/opt/homebrew/share/cmake/Modules/Compiler/NVIDIA-DetermineCompiler.cmake" + "/opt/homebrew/share/cmake/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake" + "/opt/homebrew/share/cmake/Modules/Compiler/OrangeC-DetermineCompiler.cmake" + "/opt/homebrew/share/cmake/Modules/Compiler/PGI-DetermineCompiler.cmake" + "/opt/homebrew/share/cmake/Modules/Compiler/PathScale-DetermineCompiler.cmake" + "/opt/homebrew/share/cmake/Modules/Compiler/Renesas-DetermineCompiler.cmake" + "/opt/homebrew/share/cmake/Modules/Compiler/SCO-DetermineCompiler.cmake" + "/opt/homebrew/share/cmake/Modules/Compiler/SDCC-C-DetermineCompiler.cmake" + "/opt/homebrew/share/cmake/Modules/Compiler/SunPro-C-DetermineCompiler.cmake" + "/opt/homebrew/share/cmake/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake" + "/opt/homebrew/share/cmake/Modules/Compiler/TI-DetermineCompiler.cmake" + "/opt/homebrew/share/cmake/Modules/Compiler/TIClang-DetermineCompiler.cmake" + "/opt/homebrew/share/cmake/Modules/Compiler/Tasking-DetermineCompiler.cmake" + "/opt/homebrew/share/cmake/Modules/Compiler/TinyCC-C-DetermineCompiler.cmake" + "/opt/homebrew/share/cmake/Modules/Compiler/VisualAge-C-DetermineCompiler.cmake" + "/opt/homebrew/share/cmake/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake" + "/opt/homebrew/share/cmake/Modules/Compiler/Watcom-DetermineCompiler.cmake" + "/opt/homebrew/share/cmake/Modules/Compiler/XL-C-DetermineCompiler.cmake" + "/opt/homebrew/share/cmake/Modules/Compiler/XL-CXX-DetermineCompiler.cmake" + "/opt/homebrew/share/cmake/Modules/Compiler/XLClang-C-DetermineCompiler.cmake" + "/opt/homebrew/share/cmake/Modules/Compiler/XLClang-CXX-DetermineCompiler.cmake" + "/opt/homebrew/share/cmake/Modules/Compiler/zOS-C-DetermineCompiler.cmake" + "/opt/homebrew/share/cmake/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake" + "/opt/homebrew/share/cmake/Modules/ExternalProject/shared_internal_commands.cmake" + "/opt/homebrew/share/cmake/Modules/FetchContent.cmake" + "/opt/homebrew/share/cmake/Modules/FetchContent/CMakeLists.cmake.in" + "/opt/homebrew/share/cmake/Modules/FindGit.cmake" + "/opt/homebrew/share/cmake/Modules/FindPackageHandleStandardArgs.cmake" + "/opt/homebrew/share/cmake/Modules/FindPackageMessage.cmake" + "/opt/homebrew/share/cmake/Modules/FindThreads.cmake" + "/opt/homebrew/share/cmake/Modules/GNUInstallDirs.cmake" + "/opt/homebrew/share/cmake/Modules/GoogleTest.cmake" + "/opt/homebrew/share/cmake/Modules/Internal/CMakeASMLinkerInformation.cmake" + "/opt/homebrew/share/cmake/Modules/Internal/CMakeASM_MASMLinkerInformation.cmake" + "/opt/homebrew/share/cmake/Modules/Internal/CMakeCLinkerInformation.cmake" + "/opt/homebrew/share/cmake/Modules/Internal/CMakeCXXLinkerInformation.cmake" + "/opt/homebrew/share/cmake/Modules/Internal/CMakeCommonLinkerInformation.cmake" + "/opt/homebrew/share/cmake/Modules/Internal/CMakeDetermineLinkerId.cmake" + "/opt/homebrew/share/cmake/Modules/Internal/CMakeInspectASMLinker.cmake" + "/opt/homebrew/share/cmake/Modules/Internal/CMakeInspectASM_MASMLinker.cmake" + "/opt/homebrew/share/cmake/Modules/Internal/CMakeInspectCLinker.cmake" + "/opt/homebrew/share/cmake/Modules/Internal/CMakeInspectCXXLinker.cmake" + "/opt/homebrew/share/cmake/Modules/Internal/CheckSourceCompiles.cmake" + "/opt/homebrew/share/cmake/Modules/Internal/FeatureTesting.cmake" + "/opt/homebrew/share/cmake/Modules/Linker/AppleClang-C.cmake" + "/opt/homebrew/share/cmake/Modules/Linker/AppleClang-CXX.cmake" + "/opt/homebrew/share/cmake/Modules/Linker/AppleClang.cmake" + "/opt/homebrew/share/cmake/Modules/Platform/Apple-AppleClang-C.cmake" + "/opt/homebrew/share/cmake/Modules/Platform/Apple-AppleClang-CXX.cmake" + "/opt/homebrew/share/cmake/Modules/Platform/Apple-Clang-C.cmake" + "/opt/homebrew/share/cmake/Modules/Platform/Apple-Clang-CXX.cmake" + "/opt/homebrew/share/cmake/Modules/Platform/Apple-Clang.cmake" + "/opt/homebrew/share/cmake/Modules/Platform/Darwin-Determine-CXX.cmake" + "/opt/homebrew/share/cmake/Modules/Platform/Darwin-Initialize.cmake" + "/opt/homebrew/share/cmake/Modules/Platform/Darwin.cmake" + "/opt/homebrew/share/cmake/Modules/Platform/Linker/Apple-AppleClang-C.cmake" + "/opt/homebrew/share/cmake/Modules/Platform/Linker/Apple-AppleClang-CXX.cmake" + "/opt/homebrew/share/cmake/Modules/Platform/Linker/Apple-AppleClang.cmake" + "/opt/homebrew/share/cmake/Modules/Platform/UnixPaths.cmake" + "/opt/homebrew/share/cmake/Modules/WriteBasicConfigVersionFile.cmake" + ) + +# The corresponding makefile is: +set(CMAKE_MAKEFILE_OUTPUTS + "Makefile" + "CMakeFiles/cmake.check_cache" + ) + +# Byproducts of CMake generate step: +set(CMAKE_MAKEFILE_PRODUCTS + "CMakeFiles/4.1.1/CMakeSystem.cmake" + "CMakeFiles/4.1.1/CMakeCXXCompiler.cmake" + "CMakeFiles/4.1.1/CMakeCXXCompiler.cmake" + "CMakeFiles/4.1.1/CMakeCXXCompiler.cmake" + "CMakeFiles/CMakeDirectoryInformation.cmake" + "CMakeFiles/4.1.1/CMakeCCompiler.cmake" + "CMakeFiles/4.1.1/CMakeCCompiler.cmake" + "CMakeFiles/4.1.1/CMakeCCompiler.cmake" + "lib/platform_common/CMakeFiles/CMakeDirectoryInformation.cmake" + "lib/platform_efi/CMakeFiles/CMakeDirectoryInformation.cmake" + "lib/platform_os/CMakeFiles/CMakeDirectoryInformation.cmake" + "_deps/googletest-subbuild/CMakeLists.txt" + "test/CMakeFiles/CMakeDirectoryInformation.cmake" + "_deps/googletest-build/CMakeFiles/CMakeDirectoryInformation.cmake" + "_deps/googletest-build/googletest/generated/gmock.pc" + "_deps/googletest-build/googletest/generated/gmock_main.pc" + "_deps/googletest-build/googlemock/CMakeFiles/CMakeDirectoryInformation.cmake" + "_deps/googletest-build/googletest/generated/GTestConfigVersion.cmake" + "_deps/googletest-build/googletest/generated/GTestConfig.cmake" + "_deps/googletest-build/googletest/generated/gtest.pc" + "_deps/googletest-build/googletest/generated/gtest_main.pc" + "_deps/googletest-build/googletest/CMakeFiles/CMakeDirectoryInformation.cmake" + "CMakeFiles/4.1.1/CMakeASM_MASMCompiler.cmake" + "CMakeFiles/4.1.1/CMakeASM_MASMCompiler.cmake" + "src/CMakeFiles/CMakeDirectoryInformation.cmake" + ) + +# Dependency information for all targets: +set(CMAKE_DEPEND_INFO_FILES + "lib/platform_common/CMakeFiles/platform_common.dir/DependInfo.cmake" + "lib/platform_efi/CMakeFiles/platform_efi.dir/DependInfo.cmake" + "lib/platform_os/CMakeFiles/platform_os.dir/DependInfo.cmake" + "test/CMakeFiles/qubic_core_tests.dir/DependInfo.cmake" + "_deps/googletest-build/googlemock/CMakeFiles/gmock.dir/DependInfo.cmake" + "_deps/googletest-build/googlemock/CMakeFiles/gmock_main.dir/DependInfo.cmake" + "_deps/googletest-build/googletest/CMakeFiles/gtest.dir/DependInfo.cmake" + "_deps/googletest-build/googletest/CMakeFiles/gtest_main.dir/DependInfo.cmake" + "src/CMakeFiles/Qubic.dir/DependInfo.cmake" + ) diff --git a/build/CMakeFiles/Makefile2 b/build/CMakeFiles/Makefile2 new file mode 100644 index 000000000..7ec751abb --- /dev/null +++ b/build/CMakeFiles/Makefile2 @@ -0,0 +1,563 @@ +# 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 = /opt/homebrew/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/graf/Documents/GitHub/qubic-core/core + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/graf/Documents/GitHub/qubic-core/core/build + +#============================================================================= +# Directory level rules for the build root directory + +# The main recursive "all" target. +all: lib/platform_common/all +all: lib/platform_efi/all +all: lib/platform_os/all +all: test/all +all: src/all +.PHONY : all + +# The main recursive "codegen" target. +codegen: lib/platform_common/codegen +codegen: lib/platform_efi/codegen +codegen: lib/platform_os/codegen +codegen: test/codegen +codegen: src/codegen +.PHONY : codegen + +# The main recursive "preinstall" target. +preinstall: lib/platform_common/preinstall +preinstall: lib/platform_efi/preinstall +preinstall: lib/platform_os/preinstall +preinstall: test/preinstall +preinstall: src/preinstall +.PHONY : preinstall + +# The main recursive "clean" target. +clean: lib/platform_common/clean +clean: lib/platform_efi/clean +clean: lib/platform_os/clean +clean: test/clean +clean: src/clean +.PHONY : clean + +#============================================================================= +# Directory level rules for directory _deps/googletest-build + +# Recursive "all" directory target. +_deps/googletest-build/all: _deps/googletest-build/googlemock/all +.PHONY : _deps/googletest-build/all + +# Recursive "codegen" directory target. +_deps/googletest-build/codegen: _deps/googletest-build/googlemock/codegen +.PHONY : _deps/googletest-build/codegen + +# Recursive "preinstall" directory target. +_deps/googletest-build/preinstall: _deps/googletest-build/googlemock/preinstall +.PHONY : _deps/googletest-build/preinstall + +# Recursive "clean" directory target. +_deps/googletest-build/clean: _deps/googletest-build/googlemock/clean +.PHONY : _deps/googletest-build/clean + +#============================================================================= +# Directory level rules for directory _deps/googletest-build/googlemock + +# Recursive "all" directory target. +_deps/googletest-build/googlemock/all: _deps/googletest-build/googlemock/CMakeFiles/gmock.dir/all +_deps/googletest-build/googlemock/all: _deps/googletest-build/googlemock/CMakeFiles/gmock_main.dir/all +_deps/googletest-build/googlemock/all: _deps/googletest-build/googletest/all +.PHONY : _deps/googletest-build/googlemock/all + +# Recursive "codegen" directory target. +_deps/googletest-build/googlemock/codegen: _deps/googletest-build/googlemock/CMakeFiles/gmock.dir/codegen +_deps/googletest-build/googlemock/codegen: _deps/googletest-build/googlemock/CMakeFiles/gmock_main.dir/codegen +_deps/googletest-build/googlemock/codegen: _deps/googletest-build/googletest/codegen +.PHONY : _deps/googletest-build/googlemock/codegen + +# Recursive "preinstall" directory target. +_deps/googletest-build/googlemock/preinstall: _deps/googletest-build/googletest/preinstall +.PHONY : _deps/googletest-build/googlemock/preinstall + +# Recursive "clean" directory target. +_deps/googletest-build/googlemock/clean: _deps/googletest-build/googlemock/CMakeFiles/gmock.dir/clean +_deps/googletest-build/googlemock/clean: _deps/googletest-build/googlemock/CMakeFiles/gmock_main.dir/clean +_deps/googletest-build/googlemock/clean: _deps/googletest-build/googletest/clean +.PHONY : _deps/googletest-build/googlemock/clean + +#============================================================================= +# Directory level rules for directory _deps/googletest-build/googletest + +# Recursive "all" directory target. +_deps/googletest-build/googletest/all: _deps/googletest-build/googletest/CMakeFiles/gtest.dir/all +_deps/googletest-build/googletest/all: _deps/googletest-build/googletest/CMakeFiles/gtest_main.dir/all +.PHONY : _deps/googletest-build/googletest/all + +# Recursive "codegen" directory target. +_deps/googletest-build/googletest/codegen: _deps/googletest-build/googletest/CMakeFiles/gtest.dir/codegen +_deps/googletest-build/googletest/codegen: _deps/googletest-build/googletest/CMakeFiles/gtest_main.dir/codegen +.PHONY : _deps/googletest-build/googletest/codegen + +# Recursive "preinstall" directory target. +_deps/googletest-build/googletest/preinstall: +.PHONY : _deps/googletest-build/googletest/preinstall + +# Recursive "clean" directory target. +_deps/googletest-build/googletest/clean: _deps/googletest-build/googletest/CMakeFiles/gtest.dir/clean +_deps/googletest-build/googletest/clean: _deps/googletest-build/googletest/CMakeFiles/gtest_main.dir/clean +.PHONY : _deps/googletest-build/googletest/clean + +#============================================================================= +# Directory level rules for directory lib/platform_common + +# Recursive "all" directory target. +lib/platform_common/all: lib/platform_common/CMakeFiles/platform_common.dir/all +.PHONY : lib/platform_common/all + +# Recursive "codegen" directory target. +lib/platform_common/codegen: lib/platform_common/CMakeFiles/platform_common.dir/codegen +.PHONY : lib/platform_common/codegen + +# Recursive "preinstall" directory target. +lib/platform_common/preinstall: +.PHONY : lib/platform_common/preinstall + +# Recursive "clean" directory target. +lib/platform_common/clean: lib/platform_common/CMakeFiles/platform_common.dir/clean +.PHONY : lib/platform_common/clean + +#============================================================================= +# Directory level rules for directory lib/platform_efi + +# Recursive "all" directory target. +lib/platform_efi/all: lib/platform_efi/CMakeFiles/platform_efi.dir/all +.PHONY : lib/platform_efi/all + +# Recursive "codegen" directory target. +lib/platform_efi/codegen: lib/platform_efi/CMakeFiles/platform_efi.dir/codegen +.PHONY : lib/platform_efi/codegen + +# Recursive "preinstall" directory target. +lib/platform_efi/preinstall: +.PHONY : lib/platform_efi/preinstall + +# Recursive "clean" directory target. +lib/platform_efi/clean: lib/platform_efi/CMakeFiles/platform_efi.dir/clean +.PHONY : lib/platform_efi/clean + +#============================================================================= +# Directory level rules for directory lib/platform_os + +# Recursive "all" directory target. +lib/platform_os/all: lib/platform_os/CMakeFiles/platform_os.dir/all +.PHONY : lib/platform_os/all + +# Recursive "codegen" directory target. +lib/platform_os/codegen: lib/platform_os/CMakeFiles/platform_os.dir/codegen +.PHONY : lib/platform_os/codegen + +# Recursive "preinstall" directory target. +lib/platform_os/preinstall: +.PHONY : lib/platform_os/preinstall + +# Recursive "clean" directory target. +lib/platform_os/clean: lib/platform_os/CMakeFiles/platform_os.dir/clean +.PHONY : lib/platform_os/clean + +#============================================================================= +# Directory level rules for directory src + +# Recursive "all" directory target. +src/all: src/CMakeFiles/Qubic.dir/all +.PHONY : src/all + +# Recursive "codegen" directory target. +src/codegen: src/CMakeFiles/Qubic.dir/codegen +.PHONY : src/codegen + +# Recursive "preinstall" directory target. +src/preinstall: +.PHONY : src/preinstall + +# Recursive "clean" directory target. +src/clean: src/CMakeFiles/Qubic.dir/clean +.PHONY : src/clean + +#============================================================================= +# Directory level rules for directory test + +# Recursive "all" directory target. +test/all: test/CMakeFiles/qubic_core_tests.dir/all +test/all: _deps/googletest-build/all +.PHONY : test/all + +# Recursive "codegen" directory target. +test/codegen: test/CMakeFiles/qubic_core_tests.dir/codegen +test/codegen: _deps/googletest-build/codegen +.PHONY : test/codegen + +# Recursive "preinstall" directory target. +test/preinstall: _deps/googletest-build/preinstall +.PHONY : test/preinstall + +# Recursive "clean" directory target. +test/clean: test/CMakeFiles/qubic_core_tests.dir/clean +test/clean: _deps/googletest-build/clean +.PHONY : test/clean + +#============================================================================= +# Target rules for target lib/platform_common/CMakeFiles/platform_common.dir + +# All Build rule for target. +lib/platform_common/CMakeFiles/platform_common.dir/all: + $(MAKE) $(MAKESILENT) -f lib/platform_common/CMakeFiles/platform_common.dir/build.make lib/platform_common/CMakeFiles/platform_common.dir/depend + $(MAKE) $(MAKESILENT) -f lib/platform_common/CMakeFiles/platform_common.dir/build.make lib/platform_common/CMakeFiles/platform_common.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/graf/Documents/GitHub/qubic-core/core/build/CMakeFiles --progress-num=12,13,14 "Built target platform_common" +.PHONY : lib/platform_common/CMakeFiles/platform_common.dir/all + +# Build rule for subdir invocation for target. +lib/platform_common/CMakeFiles/platform_common.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/graf/Documents/GitHub/qubic-core/core/build/CMakeFiles 3 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 lib/platform_common/CMakeFiles/platform_common.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/graf/Documents/GitHub/qubic-core/core/build/CMakeFiles 0 +.PHONY : lib/platform_common/CMakeFiles/platform_common.dir/rule + +# Convenience name for target. +platform_common: lib/platform_common/CMakeFiles/platform_common.dir/rule +.PHONY : platform_common + +# codegen rule for target. +lib/platform_common/CMakeFiles/platform_common.dir/codegen: + $(MAKE) $(MAKESILENT) -f lib/platform_common/CMakeFiles/platform_common.dir/build.make lib/platform_common/CMakeFiles/platform_common.dir/codegen + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/graf/Documents/GitHub/qubic-core/core/build/CMakeFiles --progress-num=12,13,14 "Finished codegen for target platform_common" +.PHONY : lib/platform_common/CMakeFiles/platform_common.dir/codegen + +# clean rule for target. +lib/platform_common/CMakeFiles/platform_common.dir/clean: + $(MAKE) $(MAKESILENT) -f lib/platform_common/CMakeFiles/platform_common.dir/build.make lib/platform_common/CMakeFiles/platform_common.dir/clean +.PHONY : lib/platform_common/CMakeFiles/platform_common.dir/clean + +#============================================================================= +# Target rules for target lib/platform_efi/CMakeFiles/platform_efi.dir + +# All Build rule for target. +lib/platform_efi/CMakeFiles/platform_efi.dir/all: + $(MAKE) $(MAKESILENT) -f lib/platform_efi/CMakeFiles/platform_efi.dir/build.make lib/platform_efi/CMakeFiles/platform_efi.dir/depend + $(MAKE) $(MAKESILENT) -f lib/platform_efi/CMakeFiles/platform_efi.dir/build.make lib/platform_efi/CMakeFiles/platform_efi.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/graf/Documents/GitHub/qubic-core/core/build/CMakeFiles --progress-num=15,16,17,18,19 "Built target platform_efi" +.PHONY : lib/platform_efi/CMakeFiles/platform_efi.dir/all + +# Build rule for subdir invocation for target. +lib/platform_efi/CMakeFiles/platform_efi.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/graf/Documents/GitHub/qubic-core/core/build/CMakeFiles 5 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 lib/platform_efi/CMakeFiles/platform_efi.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/graf/Documents/GitHub/qubic-core/core/build/CMakeFiles 0 +.PHONY : lib/platform_efi/CMakeFiles/platform_efi.dir/rule + +# Convenience name for target. +platform_efi: lib/platform_efi/CMakeFiles/platform_efi.dir/rule +.PHONY : platform_efi + +# codegen rule for target. +lib/platform_efi/CMakeFiles/platform_efi.dir/codegen: + $(MAKE) $(MAKESILENT) -f lib/platform_efi/CMakeFiles/platform_efi.dir/build.make lib/platform_efi/CMakeFiles/platform_efi.dir/codegen + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/graf/Documents/GitHub/qubic-core/core/build/CMakeFiles --progress-num=15,16,17,18,19 "Finished codegen for target platform_efi" +.PHONY : lib/platform_efi/CMakeFiles/platform_efi.dir/codegen + +# clean rule for target. +lib/platform_efi/CMakeFiles/platform_efi.dir/clean: + $(MAKE) $(MAKESILENT) -f lib/platform_efi/CMakeFiles/platform_efi.dir/build.make lib/platform_efi/CMakeFiles/platform_efi.dir/clean +.PHONY : lib/platform_efi/CMakeFiles/platform_efi.dir/clean + +#============================================================================= +# Target rules for target lib/platform_os/CMakeFiles/platform_os.dir + +# All Build rule for target. +lib/platform_os/CMakeFiles/platform_os.dir/all: + $(MAKE) $(MAKESILENT) -f lib/platform_os/CMakeFiles/platform_os.dir/build.make lib/platform_os/CMakeFiles/platform_os.dir/depend + $(MAKE) $(MAKESILENT) -f lib/platform_os/CMakeFiles/platform_os.dir/build.make lib/platform_os/CMakeFiles/platform_os.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/graf/Documents/GitHub/qubic-core/core/build/CMakeFiles --progress-num=20,21,22 "Built target platform_os" +.PHONY : lib/platform_os/CMakeFiles/platform_os.dir/all + +# Build rule for subdir invocation for target. +lib/platform_os/CMakeFiles/platform_os.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/graf/Documents/GitHub/qubic-core/core/build/CMakeFiles 3 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 lib/platform_os/CMakeFiles/platform_os.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/graf/Documents/GitHub/qubic-core/core/build/CMakeFiles 0 +.PHONY : lib/platform_os/CMakeFiles/platform_os.dir/rule + +# Convenience name for target. +platform_os: lib/platform_os/CMakeFiles/platform_os.dir/rule +.PHONY : platform_os + +# codegen rule for target. +lib/platform_os/CMakeFiles/platform_os.dir/codegen: + $(MAKE) $(MAKESILENT) -f lib/platform_os/CMakeFiles/platform_os.dir/build.make lib/platform_os/CMakeFiles/platform_os.dir/codegen + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/graf/Documents/GitHub/qubic-core/core/build/CMakeFiles --progress-num=20,21,22 "Finished codegen for target platform_os" +.PHONY : lib/platform_os/CMakeFiles/platform_os.dir/codegen + +# clean rule for target. +lib/platform_os/CMakeFiles/platform_os.dir/clean: + $(MAKE) $(MAKESILENT) -f lib/platform_os/CMakeFiles/platform_os.dir/build.make lib/platform_os/CMakeFiles/platform_os.dir/clean +.PHONY : lib/platform_os/CMakeFiles/platform_os.dir/clean + +#============================================================================= +# Target rules for target test/CMakeFiles/qubic_core_tests.dir + +# All Build rule for target. +test/CMakeFiles/qubic_core_tests.dir/all: lib/platform_os/CMakeFiles/platform_os.dir/all +test/CMakeFiles/qubic_core_tests.dir/all: lib/platform_common/CMakeFiles/platform_common.dir/all +test/CMakeFiles/qubic_core_tests.dir/all: _deps/googletest-build/googletest/CMakeFiles/gtest.dir/all +test/CMakeFiles/qubic_core_tests.dir/all: _deps/googletest-build/googletest/CMakeFiles/gtest_main.dir/all + $(MAKE) $(MAKESILENT) -f test/CMakeFiles/qubic_core_tests.dir/build.make test/CMakeFiles/qubic_core_tests.dir/depend + $(MAKE) $(MAKESILENT) -f test/CMakeFiles/qubic_core_tests.dir/build.make test/CMakeFiles/qubic_core_tests.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/graf/Documents/GitHub/qubic-core/core/build/CMakeFiles --progress-num=23,24,25,26 "Built target qubic_core_tests" +.PHONY : test/CMakeFiles/qubic_core_tests.dir/all + +# Build rule for subdir invocation for target. +test/CMakeFiles/qubic_core_tests.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/graf/Documents/GitHub/qubic-core/core/build/CMakeFiles 14 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 test/CMakeFiles/qubic_core_tests.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/graf/Documents/GitHub/qubic-core/core/build/CMakeFiles 0 +.PHONY : test/CMakeFiles/qubic_core_tests.dir/rule + +# Convenience name for target. +qubic_core_tests: test/CMakeFiles/qubic_core_tests.dir/rule +.PHONY : qubic_core_tests + +# codegen rule for target. +test/CMakeFiles/qubic_core_tests.dir/codegen: + $(MAKE) $(MAKESILENT) -f test/CMakeFiles/qubic_core_tests.dir/build.make test/CMakeFiles/qubic_core_tests.dir/codegen + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/graf/Documents/GitHub/qubic-core/core/build/CMakeFiles --progress-num=23,24,25,26 "Finished codegen for target qubic_core_tests" +.PHONY : test/CMakeFiles/qubic_core_tests.dir/codegen + +# clean rule for target. +test/CMakeFiles/qubic_core_tests.dir/clean: + $(MAKE) $(MAKESILENT) -f test/CMakeFiles/qubic_core_tests.dir/build.make test/CMakeFiles/qubic_core_tests.dir/clean +.PHONY : test/CMakeFiles/qubic_core_tests.dir/clean + +#============================================================================= +# Target rules for target _deps/googletest-build/googlemock/CMakeFiles/gmock.dir + +# All Build rule for target. +_deps/googletest-build/googlemock/CMakeFiles/gmock.dir/all: _deps/googletest-build/googletest/CMakeFiles/gtest.dir/all + $(MAKE) $(MAKESILENT) -f _deps/googletest-build/googlemock/CMakeFiles/gmock.dir/build.make _deps/googletest-build/googlemock/CMakeFiles/gmock.dir/depend + $(MAKE) $(MAKESILENT) -f _deps/googletest-build/googlemock/CMakeFiles/gmock.dir/build.make _deps/googletest-build/googlemock/CMakeFiles/gmock.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/graf/Documents/GitHub/qubic-core/core/build/CMakeFiles --progress-num=4,5 "Built target gmock" +.PHONY : _deps/googletest-build/googlemock/CMakeFiles/gmock.dir/all + +# Build rule for subdir invocation for target. +_deps/googletest-build/googlemock/CMakeFiles/gmock.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/graf/Documents/GitHub/qubic-core/core/build/CMakeFiles 4 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/googletest-build/googlemock/CMakeFiles/gmock.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/graf/Documents/GitHub/qubic-core/core/build/CMakeFiles 0 +.PHONY : _deps/googletest-build/googlemock/CMakeFiles/gmock.dir/rule + +# Convenience name for target. +gmock: _deps/googletest-build/googlemock/CMakeFiles/gmock.dir/rule +.PHONY : gmock + +# codegen rule for target. +_deps/googletest-build/googlemock/CMakeFiles/gmock.dir/codegen: + $(MAKE) $(MAKESILENT) -f _deps/googletest-build/googlemock/CMakeFiles/gmock.dir/build.make _deps/googletest-build/googlemock/CMakeFiles/gmock.dir/codegen + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/graf/Documents/GitHub/qubic-core/core/build/CMakeFiles --progress-num=4,5 "Finished codegen for target gmock" +.PHONY : _deps/googletest-build/googlemock/CMakeFiles/gmock.dir/codegen + +# clean rule for target. +_deps/googletest-build/googlemock/CMakeFiles/gmock.dir/clean: + $(MAKE) $(MAKESILENT) -f _deps/googletest-build/googlemock/CMakeFiles/gmock.dir/build.make _deps/googletest-build/googlemock/CMakeFiles/gmock.dir/clean +.PHONY : _deps/googletest-build/googlemock/CMakeFiles/gmock.dir/clean + +#============================================================================= +# Target rules for target _deps/googletest-build/googlemock/CMakeFiles/gmock_main.dir + +# All Build rule for target. +_deps/googletest-build/googlemock/CMakeFiles/gmock_main.dir/all: _deps/googletest-build/googlemock/CMakeFiles/gmock.dir/all +_deps/googletest-build/googlemock/CMakeFiles/gmock_main.dir/all: _deps/googletest-build/googletest/CMakeFiles/gtest.dir/all + $(MAKE) $(MAKESILENT) -f _deps/googletest-build/googlemock/CMakeFiles/gmock_main.dir/build.make _deps/googletest-build/googlemock/CMakeFiles/gmock_main.dir/depend + $(MAKE) $(MAKESILENT) -f _deps/googletest-build/googlemock/CMakeFiles/gmock_main.dir/build.make _deps/googletest-build/googlemock/CMakeFiles/gmock_main.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/graf/Documents/GitHub/qubic-core/core/build/CMakeFiles --progress-num=6,7 "Built target gmock_main" +.PHONY : _deps/googletest-build/googlemock/CMakeFiles/gmock_main.dir/all + +# Build rule for subdir invocation for target. +_deps/googletest-build/googlemock/CMakeFiles/gmock_main.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/graf/Documents/GitHub/qubic-core/core/build/CMakeFiles 6 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/googletest-build/googlemock/CMakeFiles/gmock_main.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/graf/Documents/GitHub/qubic-core/core/build/CMakeFiles 0 +.PHONY : _deps/googletest-build/googlemock/CMakeFiles/gmock_main.dir/rule + +# Convenience name for target. +gmock_main: _deps/googletest-build/googlemock/CMakeFiles/gmock_main.dir/rule +.PHONY : gmock_main + +# codegen rule for target. +_deps/googletest-build/googlemock/CMakeFiles/gmock_main.dir/codegen: + $(MAKE) $(MAKESILENT) -f _deps/googletest-build/googlemock/CMakeFiles/gmock_main.dir/build.make _deps/googletest-build/googlemock/CMakeFiles/gmock_main.dir/codegen + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/graf/Documents/GitHub/qubic-core/core/build/CMakeFiles --progress-num=6,7 "Finished codegen for target gmock_main" +.PHONY : _deps/googletest-build/googlemock/CMakeFiles/gmock_main.dir/codegen + +# clean rule for target. +_deps/googletest-build/googlemock/CMakeFiles/gmock_main.dir/clean: + $(MAKE) $(MAKESILENT) -f _deps/googletest-build/googlemock/CMakeFiles/gmock_main.dir/build.make _deps/googletest-build/googlemock/CMakeFiles/gmock_main.dir/clean +.PHONY : _deps/googletest-build/googlemock/CMakeFiles/gmock_main.dir/clean + +#============================================================================= +# Target rules for target _deps/googletest-build/googletest/CMakeFiles/gtest.dir + +# All Build rule for target. +_deps/googletest-build/googletest/CMakeFiles/gtest.dir/all: + $(MAKE) $(MAKESILENT) -f _deps/googletest-build/googletest/CMakeFiles/gtest.dir/build.make _deps/googletest-build/googletest/CMakeFiles/gtest.dir/depend + $(MAKE) $(MAKESILENT) -f _deps/googletest-build/googletest/CMakeFiles/gtest.dir/build.make _deps/googletest-build/googletest/CMakeFiles/gtest.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/graf/Documents/GitHub/qubic-core/core/build/CMakeFiles --progress-num=8,9 "Built target gtest" +.PHONY : _deps/googletest-build/googletest/CMakeFiles/gtest.dir/all + +# Build rule for subdir invocation for target. +_deps/googletest-build/googletest/CMakeFiles/gtest.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/graf/Documents/GitHub/qubic-core/core/build/CMakeFiles 2 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/googletest-build/googletest/CMakeFiles/gtest.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/graf/Documents/GitHub/qubic-core/core/build/CMakeFiles 0 +.PHONY : _deps/googletest-build/googletest/CMakeFiles/gtest.dir/rule + +# Convenience name for target. +gtest: _deps/googletest-build/googletest/CMakeFiles/gtest.dir/rule +.PHONY : gtest + +# codegen rule for target. +_deps/googletest-build/googletest/CMakeFiles/gtest.dir/codegen: + $(MAKE) $(MAKESILENT) -f _deps/googletest-build/googletest/CMakeFiles/gtest.dir/build.make _deps/googletest-build/googletest/CMakeFiles/gtest.dir/codegen + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/graf/Documents/GitHub/qubic-core/core/build/CMakeFiles --progress-num=8,9 "Finished codegen for target gtest" +.PHONY : _deps/googletest-build/googletest/CMakeFiles/gtest.dir/codegen + +# clean rule for target. +_deps/googletest-build/googletest/CMakeFiles/gtest.dir/clean: + $(MAKE) $(MAKESILENT) -f _deps/googletest-build/googletest/CMakeFiles/gtest.dir/build.make _deps/googletest-build/googletest/CMakeFiles/gtest.dir/clean +.PHONY : _deps/googletest-build/googletest/CMakeFiles/gtest.dir/clean + +#============================================================================= +# Target rules for target _deps/googletest-build/googletest/CMakeFiles/gtest_main.dir + +# All Build rule for target. +_deps/googletest-build/googletest/CMakeFiles/gtest_main.dir/all: _deps/googletest-build/googletest/CMakeFiles/gtest.dir/all + $(MAKE) $(MAKESILENT) -f _deps/googletest-build/googletest/CMakeFiles/gtest_main.dir/build.make _deps/googletest-build/googletest/CMakeFiles/gtest_main.dir/depend + $(MAKE) $(MAKESILENT) -f _deps/googletest-build/googletest/CMakeFiles/gtest_main.dir/build.make _deps/googletest-build/googletest/CMakeFiles/gtest_main.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/graf/Documents/GitHub/qubic-core/core/build/CMakeFiles --progress-num=10,11 "Built target gtest_main" +.PHONY : _deps/googletest-build/googletest/CMakeFiles/gtest_main.dir/all + +# Build rule for subdir invocation for target. +_deps/googletest-build/googletest/CMakeFiles/gtest_main.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/graf/Documents/GitHub/qubic-core/core/build/CMakeFiles 4 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/googletest-build/googletest/CMakeFiles/gtest_main.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/graf/Documents/GitHub/qubic-core/core/build/CMakeFiles 0 +.PHONY : _deps/googletest-build/googletest/CMakeFiles/gtest_main.dir/rule + +# Convenience name for target. +gtest_main: _deps/googletest-build/googletest/CMakeFiles/gtest_main.dir/rule +.PHONY : gtest_main + +# codegen rule for target. +_deps/googletest-build/googletest/CMakeFiles/gtest_main.dir/codegen: + $(MAKE) $(MAKESILENT) -f _deps/googletest-build/googletest/CMakeFiles/gtest_main.dir/build.make _deps/googletest-build/googletest/CMakeFiles/gtest_main.dir/codegen + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/graf/Documents/GitHub/qubic-core/core/build/CMakeFiles --progress-num=10,11 "Finished codegen for target gtest_main" +.PHONY : _deps/googletest-build/googletest/CMakeFiles/gtest_main.dir/codegen + +# clean rule for target. +_deps/googletest-build/googletest/CMakeFiles/gtest_main.dir/clean: + $(MAKE) $(MAKESILENT) -f _deps/googletest-build/googletest/CMakeFiles/gtest_main.dir/build.make _deps/googletest-build/googletest/CMakeFiles/gtest_main.dir/clean +.PHONY : _deps/googletest-build/googletest/CMakeFiles/gtest_main.dir/clean + +#============================================================================= +# Target rules for target src/CMakeFiles/Qubic.dir + +# All Build rule for target. +src/CMakeFiles/Qubic.dir/all: lib/platform_efi/CMakeFiles/platform_efi.dir/all +src/CMakeFiles/Qubic.dir/all: lib/platform_common/CMakeFiles/platform_common.dir/all + $(MAKE) $(MAKESILENT) -f src/CMakeFiles/Qubic.dir/build.make src/CMakeFiles/Qubic.dir/depend + $(MAKE) $(MAKESILENT) -f src/CMakeFiles/Qubic.dir/build.make src/CMakeFiles/Qubic.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/graf/Documents/GitHub/qubic-core/core/build/CMakeFiles --progress-num=1,2,3 "Built target Qubic" +.PHONY : src/CMakeFiles/Qubic.dir/all + +# Build rule for subdir invocation for target. +src/CMakeFiles/Qubic.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/graf/Documents/GitHub/qubic-core/core/build/CMakeFiles 11 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 src/CMakeFiles/Qubic.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/graf/Documents/GitHub/qubic-core/core/build/CMakeFiles 0 +.PHONY : src/CMakeFiles/Qubic.dir/rule + +# Convenience name for target. +Qubic: src/CMakeFiles/Qubic.dir/rule +.PHONY : Qubic + +# codegen rule for target. +src/CMakeFiles/Qubic.dir/codegen: + $(MAKE) $(MAKESILENT) -f src/CMakeFiles/Qubic.dir/build.make src/CMakeFiles/Qubic.dir/codegen + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/graf/Documents/GitHub/qubic-core/core/build/CMakeFiles --progress-num=1,2,3 "Finished codegen for target Qubic" +.PHONY : src/CMakeFiles/Qubic.dir/codegen + +# clean rule for target. +src/CMakeFiles/Qubic.dir/clean: + $(MAKE) $(MAKESILENT) -f src/CMakeFiles/Qubic.dir/build.make src/CMakeFiles/Qubic.dir/clean +.PHONY : src/CMakeFiles/Qubic.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/Progress/12 b/build/CMakeFiles/Progress/12 new file mode 100644 index 000000000..7b4d68d70 --- /dev/null +++ b/build/CMakeFiles/Progress/12 @@ -0,0 +1 @@ +empty \ No newline at end of file diff --git a/build/CMakeFiles/Progress/13 b/build/CMakeFiles/Progress/13 new file mode 100644 index 000000000..7b4d68d70 --- /dev/null +++ b/build/CMakeFiles/Progress/13 @@ -0,0 +1 @@ +empty \ No newline at end of file diff --git a/build/CMakeFiles/Progress/15 b/build/CMakeFiles/Progress/15 new file mode 100644 index 000000000..7b4d68d70 --- /dev/null +++ b/build/CMakeFiles/Progress/15 @@ -0,0 +1 @@ +empty \ No newline at end of file diff --git a/build/CMakeFiles/Progress/16 b/build/CMakeFiles/Progress/16 new file mode 100644 index 000000000..7b4d68d70 --- /dev/null +++ b/build/CMakeFiles/Progress/16 @@ -0,0 +1 @@ +empty \ No newline at end of file diff --git a/build/CMakeFiles/Progress/17 b/build/CMakeFiles/Progress/17 new file mode 100644 index 000000000..7b4d68d70 --- /dev/null +++ b/build/CMakeFiles/Progress/17 @@ -0,0 +1 @@ +empty \ No newline at end of file diff --git a/build/CMakeFiles/Progress/20 b/build/CMakeFiles/Progress/20 new file mode 100644 index 000000000..7b4d68d70 --- /dev/null +++ b/build/CMakeFiles/Progress/20 @@ -0,0 +1 @@ +empty \ No newline at end of file diff --git a/build/CMakeFiles/Progress/21 b/build/CMakeFiles/Progress/21 new file mode 100644 index 000000000..7b4d68d70 --- /dev/null +++ b/build/CMakeFiles/Progress/21 @@ -0,0 +1 @@ +empty \ No newline at end of file diff --git a/build/CMakeFiles/Progress/8 b/build/CMakeFiles/Progress/8 new file mode 100644 index 000000000..7b4d68d70 --- /dev/null +++ b/build/CMakeFiles/Progress/8 @@ -0,0 +1 @@ +empty \ No newline at end of file diff --git a/build/CMakeFiles/Progress/9 b/build/CMakeFiles/Progress/9 new file mode 100644 index 000000000..7b4d68d70 --- /dev/null +++ b/build/CMakeFiles/Progress/9 @@ -0,0 +1 @@ +empty \ No newline at end of file diff --git a/build/CMakeFiles/Progress/count.txt b/build/CMakeFiles/Progress/count.txt new file mode 100644 index 000000000..6f4247a62 --- /dev/null +++ b/build/CMakeFiles/Progress/count.txt @@ -0,0 +1 @@ +26 diff --git a/build/CMakeFiles/TargetDirectories.txt b/build/CMakeFiles/TargetDirectories.txt new file mode 100644 index 000000000..2d02b50f0 --- /dev/null +++ b/build/CMakeFiles/TargetDirectories.txt @@ -0,0 +1,72 @@ +/Users/graf/Documents/GitHub/qubic-core/core/build/CMakeFiles/test.dir +/Users/graf/Documents/GitHub/qubic-core/core/build/CMakeFiles/edit_cache.dir +/Users/graf/Documents/GitHub/qubic-core/core/build/CMakeFiles/rebuild_cache.dir +/Users/graf/Documents/GitHub/qubic-core/core/build/CMakeFiles/list_install_components.dir +/Users/graf/Documents/GitHub/qubic-core/core/build/CMakeFiles/install.dir +/Users/graf/Documents/GitHub/qubic-core/core/build/CMakeFiles/install/local.dir +/Users/graf/Documents/GitHub/qubic-core/core/build/CMakeFiles/install/strip.dir +/Users/graf/Documents/GitHub/qubic-core/core/build/lib/platform_common/CMakeFiles/platform_common.dir +/Users/graf/Documents/GitHub/qubic-core/core/build/lib/platform_common/CMakeFiles/test.dir +/Users/graf/Documents/GitHub/qubic-core/core/build/lib/platform_common/CMakeFiles/edit_cache.dir +/Users/graf/Documents/GitHub/qubic-core/core/build/lib/platform_common/CMakeFiles/rebuild_cache.dir +/Users/graf/Documents/GitHub/qubic-core/core/build/lib/platform_common/CMakeFiles/list_install_components.dir +/Users/graf/Documents/GitHub/qubic-core/core/build/lib/platform_common/CMakeFiles/install.dir +/Users/graf/Documents/GitHub/qubic-core/core/build/lib/platform_common/CMakeFiles/install/local.dir +/Users/graf/Documents/GitHub/qubic-core/core/build/lib/platform_common/CMakeFiles/install/strip.dir +/Users/graf/Documents/GitHub/qubic-core/core/build/lib/platform_efi/CMakeFiles/platform_efi.dir +/Users/graf/Documents/GitHub/qubic-core/core/build/lib/platform_efi/CMakeFiles/test.dir +/Users/graf/Documents/GitHub/qubic-core/core/build/lib/platform_efi/CMakeFiles/edit_cache.dir +/Users/graf/Documents/GitHub/qubic-core/core/build/lib/platform_efi/CMakeFiles/rebuild_cache.dir +/Users/graf/Documents/GitHub/qubic-core/core/build/lib/platform_efi/CMakeFiles/list_install_components.dir +/Users/graf/Documents/GitHub/qubic-core/core/build/lib/platform_efi/CMakeFiles/install.dir +/Users/graf/Documents/GitHub/qubic-core/core/build/lib/platform_efi/CMakeFiles/install/local.dir +/Users/graf/Documents/GitHub/qubic-core/core/build/lib/platform_efi/CMakeFiles/install/strip.dir +/Users/graf/Documents/GitHub/qubic-core/core/build/lib/platform_os/CMakeFiles/platform_os.dir +/Users/graf/Documents/GitHub/qubic-core/core/build/lib/platform_os/CMakeFiles/test.dir +/Users/graf/Documents/GitHub/qubic-core/core/build/lib/platform_os/CMakeFiles/edit_cache.dir +/Users/graf/Documents/GitHub/qubic-core/core/build/lib/platform_os/CMakeFiles/rebuild_cache.dir +/Users/graf/Documents/GitHub/qubic-core/core/build/lib/platform_os/CMakeFiles/list_install_components.dir +/Users/graf/Documents/GitHub/qubic-core/core/build/lib/platform_os/CMakeFiles/install.dir +/Users/graf/Documents/GitHub/qubic-core/core/build/lib/platform_os/CMakeFiles/install/local.dir +/Users/graf/Documents/GitHub/qubic-core/core/build/lib/platform_os/CMakeFiles/install/strip.dir +/Users/graf/Documents/GitHub/qubic-core/core/build/test/CMakeFiles/qubic_core_tests.dir +/Users/graf/Documents/GitHub/qubic-core/core/build/test/CMakeFiles/test.dir +/Users/graf/Documents/GitHub/qubic-core/core/build/test/CMakeFiles/edit_cache.dir +/Users/graf/Documents/GitHub/qubic-core/core/build/test/CMakeFiles/rebuild_cache.dir +/Users/graf/Documents/GitHub/qubic-core/core/build/test/CMakeFiles/list_install_components.dir +/Users/graf/Documents/GitHub/qubic-core/core/build/test/CMakeFiles/install.dir +/Users/graf/Documents/GitHub/qubic-core/core/build/test/CMakeFiles/install/local.dir +/Users/graf/Documents/GitHub/qubic-core/core/build/test/CMakeFiles/install/strip.dir +/Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-build/CMakeFiles/test.dir +/Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-build/CMakeFiles/edit_cache.dir +/Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-build/CMakeFiles/rebuild_cache.dir +/Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-build/CMakeFiles/list_install_components.dir +/Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-build/CMakeFiles/install.dir +/Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-build/CMakeFiles/install/local.dir +/Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-build/CMakeFiles/install/strip.dir +/Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-build/googlemock/CMakeFiles/gmock.dir +/Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-build/googlemock/CMakeFiles/gmock_main.dir +/Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-build/googlemock/CMakeFiles/test.dir +/Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-build/googlemock/CMakeFiles/edit_cache.dir +/Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-build/googlemock/CMakeFiles/rebuild_cache.dir +/Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-build/googlemock/CMakeFiles/list_install_components.dir +/Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-build/googlemock/CMakeFiles/install.dir +/Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-build/googlemock/CMakeFiles/install/local.dir +/Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-build/googlemock/CMakeFiles/install/strip.dir +/Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-build/googletest/CMakeFiles/gtest.dir +/Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-build/googletest/CMakeFiles/gtest_main.dir +/Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-build/googletest/CMakeFiles/test.dir +/Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-build/googletest/CMakeFiles/edit_cache.dir +/Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-build/googletest/CMakeFiles/rebuild_cache.dir +/Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-build/googletest/CMakeFiles/list_install_components.dir +/Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-build/googletest/CMakeFiles/install.dir +/Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-build/googletest/CMakeFiles/install/local.dir +/Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-build/googletest/CMakeFiles/install/strip.dir +/Users/graf/Documents/GitHub/qubic-core/core/build/src/CMakeFiles/Qubic.dir +/Users/graf/Documents/GitHub/qubic-core/core/build/src/CMakeFiles/test.dir +/Users/graf/Documents/GitHub/qubic-core/core/build/src/CMakeFiles/edit_cache.dir +/Users/graf/Documents/GitHub/qubic-core/core/build/src/CMakeFiles/rebuild_cache.dir +/Users/graf/Documents/GitHub/qubic-core/core/build/src/CMakeFiles/list_install_components.dir +/Users/graf/Documents/GitHub/qubic-core/core/build/src/CMakeFiles/install.dir +/Users/graf/Documents/GitHub/qubic-core/core/build/src/CMakeFiles/install/local.dir +/Users/graf/Documents/GitHub/qubic-core/core/build/src/CMakeFiles/install/strip.dir diff --git a/build/CMakeFiles/cmake.check_cache b/build/CMakeFiles/cmake.check_cache new file mode 100644 index 000000000..3dccd7317 --- /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 000000000..6f4247a62 --- /dev/null +++ b/build/CMakeFiles/progress.marks @@ -0,0 +1 @@ +26 diff --git a/build/CTestTestfile.cmake b/build/CTestTestfile.cmake new file mode 100644 index 000000000..ba79b65ba --- /dev/null +++ b/build/CTestTestfile.cmake @@ -0,0 +1,11 @@ +# CMake generated Testfile for +# Source directory: /Users/graf/Documents/GitHub/qubic-core/core +# Build directory: /Users/graf/Documents/GitHub/qubic-core/core/build +# +# This file includes the relevant testing commands required for +# testing this directory and lists subdirectories to be tested as well. +subdirs("lib/platform_common") +subdirs("lib/platform_efi") +subdirs("lib/platform_os") +subdirs("test") +subdirs("src") diff --git a/build/Makefile b/build/Makefile new file mode 100644 index 000000000..4395db464 --- /dev/null +++ b/build/Makefile @@ -0,0 +1,326 @@ +# 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 = /opt/homebrew/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/graf/Documents/GitHub/qubic-core/core + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/graf/Documents/GitHub/qubic-core/core/build + +#============================================================================= +# Targets provided globally by CMake. + +# Special rule for the target test +test: + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running tests..." + /opt/homebrew/bin/ctest $(ARGS) +.PHONY : test + +# Special rule for the target test +test/fast: test +.PHONY : test/fast + +# Special rule for the target edit_cache +edit_cache: + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running CMake cache editor..." + /opt/homebrew/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..." + /opt/homebrew/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 + +# Special rule for the target list_install_components +list_install_components: + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Available install components are: \"Unspecified\" \"gmock\" \"gtest\"" +.PHONY : list_install_components + +# Special rule for the target list_install_components +list_install_components/fast: list_install_components +.PHONY : list_install_components/fast + +# Special rule for the target install +install: preinstall + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Install the project..." + /opt/homebrew/bin/cmake -P cmake_install.cmake +.PHONY : install + +# Special rule for the target install +install/fast: preinstall/fast + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Install the project..." + /opt/homebrew/bin/cmake -P cmake_install.cmake +.PHONY : install/fast + +# Special rule for the target install/local +install/local: preinstall + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing only the local directory..." + /opt/homebrew/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake +.PHONY : install/local + +# Special rule for the target install/local +install/local/fast: preinstall/fast + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing only the local directory..." + /opt/homebrew/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake +.PHONY : install/local/fast + +# Special rule for the target install/strip +install/strip: preinstall + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing the project stripped..." + /opt/homebrew/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake +.PHONY : install/strip + +# Special rule for the target install/strip +install/strip/fast: preinstall/fast + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing the project stripped..." + /opt/homebrew/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake +.PHONY : install/strip/fast + +# The main all target +all: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/graf/Documents/GitHub/qubic-core/core/build/CMakeFiles /Users/graf/Documents/GitHub/qubic-core/core/build//CMakeFiles/progress.marks + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/graf/Documents/GitHub/qubic-core/core/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 platform_common + +# Build rule for target. +platform_common: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 platform_common +.PHONY : platform_common + +# fast build rule for target. +platform_common/fast: + $(MAKE) $(MAKESILENT) -f lib/platform_common/CMakeFiles/platform_common.dir/build.make lib/platform_common/CMakeFiles/platform_common.dir/build +.PHONY : platform_common/fast + +#============================================================================= +# Target rules for targets named platform_efi + +# Build rule for target. +platform_efi: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 platform_efi +.PHONY : platform_efi + +# fast build rule for target. +platform_efi/fast: + $(MAKE) $(MAKESILENT) -f lib/platform_efi/CMakeFiles/platform_efi.dir/build.make lib/platform_efi/CMakeFiles/platform_efi.dir/build +.PHONY : platform_efi/fast + +#============================================================================= +# Target rules for targets named platform_os + +# Build rule for target. +platform_os: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 platform_os +.PHONY : platform_os + +# fast build rule for target. +platform_os/fast: + $(MAKE) $(MAKESILENT) -f lib/platform_os/CMakeFiles/platform_os.dir/build.make lib/platform_os/CMakeFiles/platform_os.dir/build +.PHONY : platform_os/fast + +#============================================================================= +# Target rules for targets named qubic_core_tests + +# Build rule for target. +qubic_core_tests: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 qubic_core_tests +.PHONY : qubic_core_tests + +# fast build rule for target. +qubic_core_tests/fast: + $(MAKE) $(MAKESILENT) -f test/CMakeFiles/qubic_core_tests.dir/build.make test/CMakeFiles/qubic_core_tests.dir/build +.PHONY : qubic_core_tests/fast + +#============================================================================= +# Target rules for targets named gmock + +# Build rule for target. +gmock: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 gmock +.PHONY : gmock + +# fast build rule for target. +gmock/fast: + $(MAKE) $(MAKESILENT) -f _deps/googletest-build/googlemock/CMakeFiles/gmock.dir/build.make _deps/googletest-build/googlemock/CMakeFiles/gmock.dir/build +.PHONY : gmock/fast + +#============================================================================= +# Target rules for targets named gmock_main + +# Build rule for target. +gmock_main: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 gmock_main +.PHONY : gmock_main + +# fast build rule for target. +gmock_main/fast: + $(MAKE) $(MAKESILENT) -f _deps/googletest-build/googlemock/CMakeFiles/gmock_main.dir/build.make _deps/googletest-build/googlemock/CMakeFiles/gmock_main.dir/build +.PHONY : gmock_main/fast + +#============================================================================= +# Target rules for targets named gtest + +# Build rule for target. +gtest: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 gtest +.PHONY : gtest + +# fast build rule for target. +gtest/fast: + $(MAKE) $(MAKESILENT) -f _deps/googletest-build/googletest/CMakeFiles/gtest.dir/build.make _deps/googletest-build/googletest/CMakeFiles/gtest.dir/build +.PHONY : gtest/fast + +#============================================================================= +# Target rules for targets named gtest_main + +# Build rule for target. +gtest_main: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 gtest_main +.PHONY : gtest_main + +# fast build rule for target. +gtest_main/fast: + $(MAKE) $(MAKESILENT) -f _deps/googletest-build/googletest/CMakeFiles/gtest_main.dir/build.make _deps/googletest-build/googletest/CMakeFiles/gtest_main.dir/build +.PHONY : gtest_main/fast + +#============================================================================= +# Target rules for targets named Qubic + +# Build rule for target. +Qubic: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 Qubic +.PHONY : Qubic + +# fast build rule for target. +Qubic/fast: + $(MAKE) $(MAKESILENT) -f src/CMakeFiles/Qubic.dir/build.make src/CMakeFiles/Qubic.dir/build +.PHONY : Qubic/fast + +# 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 "... install" + @echo "... install/local" + @echo "... install/strip" + @echo "... list_install_components" + @echo "... rebuild_cache" + @echo "... test" + @echo "... Qubic" + @echo "... gmock" + @echo "... gmock_main" + @echo "... gtest" + @echo "... gtest_main" + @echo "... platform_common" + @echo "... platform_efi" + @echo "... platform_os" + @echo "... qubic_core_tests" +.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/_deps/googletest-build/CMakeFiles/CMakeDirectoryInformation.cmake b/build/_deps/googletest-build/CMakeFiles/CMakeDirectoryInformation.cmake new file mode 100644 index 000000000..e2771e437 --- /dev/null +++ b/build/_deps/googletest-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 "/Users/graf/Documents/GitHub/qubic-core/core") +set(CMAKE_RELATIVE_PATH_TOP_BINARY "/Users/graf/Documents/GitHub/qubic-core/core/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/_deps/googletest-build/CMakeFiles/progress.marks b/build/_deps/googletest-build/CMakeFiles/progress.marks new file mode 100644 index 000000000..45a4fb75d --- /dev/null +++ b/build/_deps/googletest-build/CMakeFiles/progress.marks @@ -0,0 +1 @@ +8 diff --git a/build/_deps/googletest-build/CTestTestfile.cmake b/build/_deps/googletest-build/CTestTestfile.cmake new file mode 100644 index 000000000..cc34be517 --- /dev/null +++ b/build/_deps/googletest-build/CTestTestfile.cmake @@ -0,0 +1,7 @@ +# CMake generated Testfile for +# Source directory: /Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-src +# Build directory: /Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-build +# +# This file includes the relevant testing commands required for +# testing this directory and lists subdirectories to be tested as well. +subdirs("googlemock") diff --git a/build/_deps/googletest-build/Makefile b/build/_deps/googletest-build/Makefile new file mode 100644 index 000000000..8dad692c3 --- /dev/null +++ b/build/_deps/googletest-build/Makefile @@ -0,0 +1,200 @@ +# 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 = /opt/homebrew/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/graf/Documents/GitHub/qubic-core/core + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/graf/Documents/GitHub/qubic-core/core/build + +#============================================================================= +# Targets provided globally by CMake. + +# Special rule for the target test +test: + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running tests..." + /opt/homebrew/bin/ctest $(ARGS) +.PHONY : test + +# Special rule for the target test +test/fast: test +.PHONY : test/fast + +# Special rule for the target edit_cache +edit_cache: + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running CMake cache editor..." + /opt/homebrew/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..." + /opt/homebrew/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 + +# Special rule for the target list_install_components +list_install_components: + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Available install components are: \"Unspecified\" \"gmock\" \"gtest\"" +.PHONY : list_install_components + +# Special rule for the target list_install_components +list_install_components/fast: list_install_components +.PHONY : list_install_components/fast + +# Special rule for the target install +install: preinstall + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Install the project..." + /opt/homebrew/bin/cmake -P cmake_install.cmake +.PHONY : install + +# Special rule for the target install +install/fast: preinstall/fast + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Install the project..." + /opt/homebrew/bin/cmake -P cmake_install.cmake +.PHONY : install/fast + +# Special rule for the target install/local +install/local: preinstall + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing only the local directory..." + /opt/homebrew/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake +.PHONY : install/local + +# Special rule for the target install/local +install/local/fast: preinstall/fast + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing only the local directory..." + /opt/homebrew/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake +.PHONY : install/local/fast + +# Special rule for the target install/strip +install/strip: preinstall + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing the project stripped..." + /opt/homebrew/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake +.PHONY : install/strip + +# Special rule for the target install/strip +install/strip/fast: preinstall/fast + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing the project stripped..." + /opt/homebrew/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake +.PHONY : install/strip/fast + +# The main all target +all: cmake_check_build_system + cd /Users/graf/Documents/GitHub/qubic-core/core/build && $(CMAKE_COMMAND) -E cmake_progress_start /Users/graf/Documents/GitHub/qubic-core/core/build/CMakeFiles /Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-build//CMakeFiles/progress.marks + cd /Users/graf/Documents/GitHub/qubic-core/core/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/googletest-build/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/graf/Documents/GitHub/qubic-core/core/build/CMakeFiles 0 +.PHONY : all + +# The main clean target +clean: + cd /Users/graf/Documents/GitHub/qubic-core/core/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/googletest-build/clean +.PHONY : clean + +# The main clean target +clean/fast: clean +.PHONY : clean/fast + +# Prepare targets for installation. +preinstall: all + cd /Users/graf/Documents/GitHub/qubic-core/core/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/googletest-build/preinstall +.PHONY : preinstall + +# Prepare targets for installation. +preinstall/fast: + cd /Users/graf/Documents/GitHub/qubic-core/core/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/googletest-build/preinstall +.PHONY : preinstall/fast + +# clear depends +depend: + cd /Users/graf/Documents/GitHub/qubic-core/core/build && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1 +.PHONY : depend + +# 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 "... install" + @echo "... install/local" + @echo "... install/strip" + @echo "... list_install_components" + @echo "... rebuild_cache" + @echo "... test" +.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: + cd /Users/graf/Documents/GitHub/qubic-core/core/build && $(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/_deps/googletest-build/cmake_install.cmake b/build/_deps/googletest-build/cmake_install.cmake new file mode 100644 index 000000000..27399f33d --- /dev/null +++ b/build/_deps/googletest-build/cmake_install.cmake @@ -0,0 +1,51 @@ +# Install script for directory: /Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-src + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "Release") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "FALSE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/usr/bin/objdump") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for each subdirectory. + include("/Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-build/googlemock/cmake_install.cmake") + +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "/Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-build/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/_deps/googletest-build/googlemock/CMakeFiles/CMakeDirectoryInformation.cmake b/build/_deps/googletest-build/googlemock/CMakeFiles/CMakeDirectoryInformation.cmake new file mode 100644 index 000000000..e2771e437 --- /dev/null +++ b/build/_deps/googletest-build/googlemock/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 "/Users/graf/Documents/GitHub/qubic-core/core") +set(CMAKE_RELATIVE_PATH_TOP_BINARY "/Users/graf/Documents/GitHub/qubic-core/core/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/_deps/googletest-build/googlemock/CMakeFiles/gmock.dir/DependInfo.cmake b/build/_deps/googletest-build/googlemock/CMakeFiles/gmock.dir/DependInfo.cmake new file mode 100644 index 000000000..04a4301b0 --- /dev/null +++ b/build/_deps/googletest-build/googlemock/CMakeFiles/gmock.dir/DependInfo.cmake @@ -0,0 +1,23 @@ + +# 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 + "/Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-src/googlemock/src/gmock-all.cc" "_deps/googletest-build/googlemock/CMakeFiles/gmock.dir/src/gmock-all.cc.o" "gcc" "_deps/googletest-build/googlemock/CMakeFiles/gmock.dir/src/gmock-all.cc.o.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/_deps/googletest-build/googlemock/CMakeFiles/gmock.dir/build.make b/build/_deps/googletest-build/googlemock/CMakeFiles/gmock.dir/build.make new file mode 100644 index 000000000..74ec3e0c0 --- /dev/null +++ b/build/_deps/googletest-build/googlemock/CMakeFiles/gmock.dir/build.make @@ -0,0 +1,114 @@ +# 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 = /opt/homebrew/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/graf/Documents/GitHub/qubic-core/core + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/graf/Documents/GitHub/qubic-core/core/build + +# Include any dependencies generated for this target. +include _deps/googletest-build/googlemock/CMakeFiles/gmock.dir/depend.make +# Include any dependencies generated by the compiler for this target. +include _deps/googletest-build/googlemock/CMakeFiles/gmock.dir/compiler_depend.make + +# Include the progress variables for this target. +include _deps/googletest-build/googlemock/CMakeFiles/gmock.dir/progress.make + +# Include the compile flags for this target's objects. +include _deps/googletest-build/googlemock/CMakeFiles/gmock.dir/flags.make + +_deps/googletest-build/googlemock/CMakeFiles/gmock.dir/codegen: +.PHONY : _deps/googletest-build/googlemock/CMakeFiles/gmock.dir/codegen + +_deps/googletest-build/googlemock/CMakeFiles/gmock.dir/src/gmock-all.cc.o: _deps/googletest-build/googlemock/CMakeFiles/gmock.dir/flags.make +_deps/googletest-build/googlemock/CMakeFiles/gmock.dir/src/gmock-all.cc.o: _deps/googletest-src/googlemock/src/gmock-all.cc +_deps/googletest-build/googlemock/CMakeFiles/gmock.dir/src/gmock-all.cc.o: _deps/googletest-build/googlemock/CMakeFiles/gmock.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/graf/Documents/GitHub/qubic-core/core/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object _deps/googletest-build/googlemock/CMakeFiles/gmock.dir/src/gmock-all.cc.o" + cd /Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-build/googlemock && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/googletest-build/googlemock/CMakeFiles/gmock.dir/src/gmock-all.cc.o -MF CMakeFiles/gmock.dir/src/gmock-all.cc.o.d -o CMakeFiles/gmock.dir/src/gmock-all.cc.o -c /Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-src/googlemock/src/gmock-all.cc + +_deps/googletest-build/googlemock/CMakeFiles/gmock.dir/src/gmock-all.cc.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/gmock.dir/src/gmock-all.cc.i" + cd /Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-build/googlemock && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-src/googlemock/src/gmock-all.cc > CMakeFiles/gmock.dir/src/gmock-all.cc.i + +_deps/googletest-build/googlemock/CMakeFiles/gmock.dir/src/gmock-all.cc.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/gmock.dir/src/gmock-all.cc.s" + cd /Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-build/googlemock && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-src/googlemock/src/gmock-all.cc -o CMakeFiles/gmock.dir/src/gmock-all.cc.s + +# Object files for target gmock +gmock_OBJECTS = \ +"CMakeFiles/gmock.dir/src/gmock-all.cc.o" + +# External object files for target gmock +gmock_EXTERNAL_OBJECTS = + +lib/libgmock.a: _deps/googletest-build/googlemock/CMakeFiles/gmock.dir/src/gmock-all.cc.o +lib/libgmock.a: _deps/googletest-build/googlemock/CMakeFiles/gmock.dir/build.make +lib/libgmock.a: _deps/googletest-build/googlemock/CMakeFiles/gmock.dir/link.txt + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --bold --progress-dir=/Users/graf/Documents/GitHub/qubic-core/core/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Linking CXX static library ../../../lib/libgmock.a" + cd /Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-build/googlemock && $(CMAKE_COMMAND) -P CMakeFiles/gmock.dir/cmake_clean_target.cmake + cd /Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-build/googlemock && $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/gmock.dir/link.txt --verbose=$(VERBOSE) + +# Rule to build all files generated by this target. +_deps/googletest-build/googlemock/CMakeFiles/gmock.dir/build: lib/libgmock.a +.PHONY : _deps/googletest-build/googlemock/CMakeFiles/gmock.dir/build + +_deps/googletest-build/googlemock/CMakeFiles/gmock.dir/clean: + cd /Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-build/googlemock && $(CMAKE_COMMAND) -P CMakeFiles/gmock.dir/cmake_clean.cmake +.PHONY : _deps/googletest-build/googlemock/CMakeFiles/gmock.dir/clean + +_deps/googletest-build/googlemock/CMakeFiles/gmock.dir/depend: + cd /Users/graf/Documents/GitHub/qubic-core/core/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/graf/Documents/GitHub/qubic-core/core /Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-src/googlemock /Users/graf/Documents/GitHub/qubic-core/core/build /Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-build/googlemock /Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-build/googlemock/CMakeFiles/gmock.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : _deps/googletest-build/googlemock/CMakeFiles/gmock.dir/depend + diff --git a/build/_deps/googletest-build/googlemock/CMakeFiles/gmock.dir/cmake_clean.cmake b/build/_deps/googletest-build/googlemock/CMakeFiles/gmock.dir/cmake_clean.cmake new file mode 100644 index 000000000..ebe1b2d6b --- /dev/null +++ b/build/_deps/googletest-build/googlemock/CMakeFiles/gmock.dir/cmake_clean.cmake @@ -0,0 +1,11 @@ +file(REMOVE_RECURSE + "../../../bin/libgmock.pdb" + "../../../lib/libgmock.a" + "CMakeFiles/gmock.dir/src/gmock-all.cc.o" + "CMakeFiles/gmock.dir/src/gmock-all.cc.o.d" +) + +# Per-language clean rules from dependency scanning. +foreach(lang CXX) + include(CMakeFiles/gmock.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/_deps/googletest-build/googlemock/CMakeFiles/gmock.dir/cmake_clean_target.cmake b/build/_deps/googletest-build/googlemock/CMakeFiles/gmock.dir/cmake_clean_target.cmake new file mode 100644 index 000000000..541729e35 --- /dev/null +++ b/build/_deps/googletest-build/googlemock/CMakeFiles/gmock.dir/cmake_clean_target.cmake @@ -0,0 +1,3 @@ +file(REMOVE_RECURSE + "../../../lib/libgmock.a" +) diff --git a/build/_deps/googletest-build/googlemock/CMakeFiles/gmock.dir/compiler_depend.make b/build/_deps/googletest-build/googlemock/CMakeFiles/gmock.dir/compiler_depend.make new file mode 100644 index 000000000..c777df51c --- /dev/null +++ b/build/_deps/googletest-build/googlemock/CMakeFiles/gmock.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty compiler generated dependencies file for gmock. +# This may be replaced when dependencies are built. diff --git a/build/_deps/googletest-build/googlemock/CMakeFiles/gmock.dir/compiler_depend.ts b/build/_deps/googletest-build/googlemock/CMakeFiles/gmock.dir/compiler_depend.ts new file mode 100644 index 000000000..adc68d16e --- /dev/null +++ b/build/_deps/googletest-build/googlemock/CMakeFiles/gmock.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for compiler generated dependencies management for gmock. diff --git a/build/_deps/googletest-build/googlemock/CMakeFiles/gmock.dir/depend.make b/build/_deps/googletest-build/googlemock/CMakeFiles/gmock.dir/depend.make new file mode 100644 index 000000000..7a05e2f19 --- /dev/null +++ b/build/_deps/googletest-build/googlemock/CMakeFiles/gmock.dir/depend.make @@ -0,0 +1,2 @@ +# Empty dependencies file for gmock. +# This may be replaced when dependencies are built. diff --git a/build/_deps/googletest-build/googlemock/CMakeFiles/gmock.dir/flags.make b/build/_deps/googletest-build/googlemock/CMakeFiles/gmock.dir/flags.make new file mode 100644 index 000000000..79045a103 --- /dev/null +++ b/build/_deps/googletest-build/googlemock/CMakeFiles/gmock.dir/flags.make @@ -0,0 +1,12 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 4.1 + +# compile CXX with /usr/bin/c++ +CXX_DEFINES = + +CXX_INCLUDES = -I/Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-src/googlemock/include -I/Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-src/googlemock -isystem /Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-src/googletest/include -isystem /Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-src/googletest + +CXX_FLAGSarm64 = -std=c++20 -arch arm64 -DGTEST_HAS_PTHREAD=1 + +CXX_FLAGS = -std=c++20 -arch arm64 -DGTEST_HAS_PTHREAD=1 + diff --git a/build/_deps/googletest-build/googlemock/CMakeFiles/gmock.dir/link.txt b/build/_deps/googletest-build/googlemock/CMakeFiles/gmock.dir/link.txt new file mode 100644 index 000000000..79d00531e --- /dev/null +++ b/build/_deps/googletest-build/googlemock/CMakeFiles/gmock.dir/link.txt @@ -0,0 +1,2 @@ +/usr/bin/ar qc ../../../lib/libgmock.a "CMakeFiles/gmock.dir/src/gmock-all.cc.o" +/usr/bin/ranlib ../../../lib/libgmock.a diff --git a/build/_deps/googletest-build/googlemock/CMakeFiles/gmock.dir/progress.make b/build/_deps/googletest-build/googlemock/CMakeFiles/gmock.dir/progress.make new file mode 100644 index 000000000..19ce96ee7 --- /dev/null +++ b/build/_deps/googletest-build/googlemock/CMakeFiles/gmock.dir/progress.make @@ -0,0 +1,3 @@ +CMAKE_PROGRESS_1 = 4 +CMAKE_PROGRESS_2 = 5 + diff --git a/build/_deps/googletest-build/googlemock/CMakeFiles/gmock_main.dir/DependInfo.cmake b/build/_deps/googletest-build/googlemock/CMakeFiles/gmock_main.dir/DependInfo.cmake new file mode 100644 index 000000000..2ad833056 --- /dev/null +++ b/build/_deps/googletest-build/googlemock/CMakeFiles/gmock_main.dir/DependInfo.cmake @@ -0,0 +1,23 @@ + +# 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 + "/Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-src/googlemock/src/gmock_main.cc" "_deps/googletest-build/googlemock/CMakeFiles/gmock_main.dir/src/gmock_main.cc.o" "gcc" "_deps/googletest-build/googlemock/CMakeFiles/gmock_main.dir/src/gmock_main.cc.o.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/_deps/googletest-build/googlemock/CMakeFiles/gmock_main.dir/build.make b/build/_deps/googletest-build/googlemock/CMakeFiles/gmock_main.dir/build.make new file mode 100644 index 000000000..a04b28084 --- /dev/null +++ b/build/_deps/googletest-build/googlemock/CMakeFiles/gmock_main.dir/build.make @@ -0,0 +1,114 @@ +# 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 = /opt/homebrew/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/graf/Documents/GitHub/qubic-core/core + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/graf/Documents/GitHub/qubic-core/core/build + +# Include any dependencies generated for this target. +include _deps/googletest-build/googlemock/CMakeFiles/gmock_main.dir/depend.make +# Include any dependencies generated by the compiler for this target. +include _deps/googletest-build/googlemock/CMakeFiles/gmock_main.dir/compiler_depend.make + +# Include the progress variables for this target. +include _deps/googletest-build/googlemock/CMakeFiles/gmock_main.dir/progress.make + +# Include the compile flags for this target's objects. +include _deps/googletest-build/googlemock/CMakeFiles/gmock_main.dir/flags.make + +_deps/googletest-build/googlemock/CMakeFiles/gmock_main.dir/codegen: +.PHONY : _deps/googletest-build/googlemock/CMakeFiles/gmock_main.dir/codegen + +_deps/googletest-build/googlemock/CMakeFiles/gmock_main.dir/src/gmock_main.cc.o: _deps/googletest-build/googlemock/CMakeFiles/gmock_main.dir/flags.make +_deps/googletest-build/googlemock/CMakeFiles/gmock_main.dir/src/gmock_main.cc.o: _deps/googletest-src/googlemock/src/gmock_main.cc +_deps/googletest-build/googlemock/CMakeFiles/gmock_main.dir/src/gmock_main.cc.o: _deps/googletest-build/googlemock/CMakeFiles/gmock_main.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/graf/Documents/GitHub/qubic-core/core/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object _deps/googletest-build/googlemock/CMakeFiles/gmock_main.dir/src/gmock_main.cc.o" + cd /Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-build/googlemock && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/googletest-build/googlemock/CMakeFiles/gmock_main.dir/src/gmock_main.cc.o -MF CMakeFiles/gmock_main.dir/src/gmock_main.cc.o.d -o CMakeFiles/gmock_main.dir/src/gmock_main.cc.o -c /Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-src/googlemock/src/gmock_main.cc + +_deps/googletest-build/googlemock/CMakeFiles/gmock_main.dir/src/gmock_main.cc.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/gmock_main.dir/src/gmock_main.cc.i" + cd /Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-build/googlemock && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-src/googlemock/src/gmock_main.cc > CMakeFiles/gmock_main.dir/src/gmock_main.cc.i + +_deps/googletest-build/googlemock/CMakeFiles/gmock_main.dir/src/gmock_main.cc.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/gmock_main.dir/src/gmock_main.cc.s" + cd /Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-build/googlemock && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-src/googlemock/src/gmock_main.cc -o CMakeFiles/gmock_main.dir/src/gmock_main.cc.s + +# Object files for target gmock_main +gmock_main_OBJECTS = \ +"CMakeFiles/gmock_main.dir/src/gmock_main.cc.o" + +# External object files for target gmock_main +gmock_main_EXTERNAL_OBJECTS = + +lib/libgmock_main.a: _deps/googletest-build/googlemock/CMakeFiles/gmock_main.dir/src/gmock_main.cc.o +lib/libgmock_main.a: _deps/googletest-build/googlemock/CMakeFiles/gmock_main.dir/build.make +lib/libgmock_main.a: _deps/googletest-build/googlemock/CMakeFiles/gmock_main.dir/link.txt + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --bold --progress-dir=/Users/graf/Documents/GitHub/qubic-core/core/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Linking CXX static library ../../../lib/libgmock_main.a" + cd /Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-build/googlemock && $(CMAKE_COMMAND) -P CMakeFiles/gmock_main.dir/cmake_clean_target.cmake + cd /Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-build/googlemock && $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/gmock_main.dir/link.txt --verbose=$(VERBOSE) + +# Rule to build all files generated by this target. +_deps/googletest-build/googlemock/CMakeFiles/gmock_main.dir/build: lib/libgmock_main.a +.PHONY : _deps/googletest-build/googlemock/CMakeFiles/gmock_main.dir/build + +_deps/googletest-build/googlemock/CMakeFiles/gmock_main.dir/clean: + cd /Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-build/googlemock && $(CMAKE_COMMAND) -P CMakeFiles/gmock_main.dir/cmake_clean.cmake +.PHONY : _deps/googletest-build/googlemock/CMakeFiles/gmock_main.dir/clean + +_deps/googletest-build/googlemock/CMakeFiles/gmock_main.dir/depend: + cd /Users/graf/Documents/GitHub/qubic-core/core/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/graf/Documents/GitHub/qubic-core/core /Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-src/googlemock /Users/graf/Documents/GitHub/qubic-core/core/build /Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-build/googlemock /Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-build/googlemock/CMakeFiles/gmock_main.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : _deps/googletest-build/googlemock/CMakeFiles/gmock_main.dir/depend + diff --git a/build/_deps/googletest-build/googlemock/CMakeFiles/gmock_main.dir/cmake_clean.cmake b/build/_deps/googletest-build/googlemock/CMakeFiles/gmock_main.dir/cmake_clean.cmake new file mode 100644 index 000000000..91d0b2dfd --- /dev/null +++ b/build/_deps/googletest-build/googlemock/CMakeFiles/gmock_main.dir/cmake_clean.cmake @@ -0,0 +1,11 @@ +file(REMOVE_RECURSE + "../../../bin/libgmock_main.pdb" + "../../../lib/libgmock_main.a" + "CMakeFiles/gmock_main.dir/src/gmock_main.cc.o" + "CMakeFiles/gmock_main.dir/src/gmock_main.cc.o.d" +) + +# Per-language clean rules from dependency scanning. +foreach(lang CXX) + include(CMakeFiles/gmock_main.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/_deps/googletest-build/googlemock/CMakeFiles/gmock_main.dir/cmake_clean_target.cmake b/build/_deps/googletest-build/googlemock/CMakeFiles/gmock_main.dir/cmake_clean_target.cmake new file mode 100644 index 000000000..1c127c0df --- /dev/null +++ b/build/_deps/googletest-build/googlemock/CMakeFiles/gmock_main.dir/cmake_clean_target.cmake @@ -0,0 +1,3 @@ +file(REMOVE_RECURSE + "../../../lib/libgmock_main.a" +) diff --git a/build/_deps/googletest-build/googlemock/CMakeFiles/gmock_main.dir/compiler_depend.make b/build/_deps/googletest-build/googlemock/CMakeFiles/gmock_main.dir/compiler_depend.make new file mode 100644 index 000000000..08094148d --- /dev/null +++ b/build/_deps/googletest-build/googlemock/CMakeFiles/gmock_main.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty compiler generated dependencies file for gmock_main. +# This may be replaced when dependencies are built. diff --git a/build/_deps/googletest-build/googlemock/CMakeFiles/gmock_main.dir/compiler_depend.ts b/build/_deps/googletest-build/googlemock/CMakeFiles/gmock_main.dir/compiler_depend.ts new file mode 100644 index 000000000..85535ac81 --- /dev/null +++ b/build/_deps/googletest-build/googlemock/CMakeFiles/gmock_main.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for compiler generated dependencies management for gmock_main. diff --git a/build/_deps/googletest-build/googlemock/CMakeFiles/gmock_main.dir/depend.make b/build/_deps/googletest-build/googlemock/CMakeFiles/gmock_main.dir/depend.make new file mode 100644 index 000000000..4a18b61b4 --- /dev/null +++ b/build/_deps/googletest-build/googlemock/CMakeFiles/gmock_main.dir/depend.make @@ -0,0 +1,2 @@ +# Empty dependencies file for gmock_main. +# This may be replaced when dependencies are built. diff --git a/build/_deps/googletest-build/googlemock/CMakeFiles/gmock_main.dir/flags.make b/build/_deps/googletest-build/googlemock/CMakeFiles/gmock_main.dir/flags.make new file mode 100644 index 000000000..9ba479131 --- /dev/null +++ b/build/_deps/googletest-build/googlemock/CMakeFiles/gmock_main.dir/flags.make @@ -0,0 +1,12 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 4.1 + +# compile CXX with /usr/bin/c++ +CXX_DEFINES = + +CXX_INCLUDES = -isystem /Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-src/googlemock/include -isystem /Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-src/googlemock -isystem /Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-src/googletest/include -isystem /Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-src/googletest + +CXX_FLAGSarm64 = -std=c++20 -arch arm64 -DGTEST_HAS_PTHREAD=1 + +CXX_FLAGS = -std=c++20 -arch arm64 -DGTEST_HAS_PTHREAD=1 + diff --git a/build/_deps/googletest-build/googlemock/CMakeFiles/gmock_main.dir/link.txt b/build/_deps/googletest-build/googlemock/CMakeFiles/gmock_main.dir/link.txt new file mode 100644 index 000000000..fc26c305b --- /dev/null +++ b/build/_deps/googletest-build/googlemock/CMakeFiles/gmock_main.dir/link.txt @@ -0,0 +1,2 @@ +/usr/bin/ar qc ../../../lib/libgmock_main.a CMakeFiles/gmock_main.dir/src/gmock_main.cc.o +/usr/bin/ranlib ../../../lib/libgmock_main.a diff --git a/build/_deps/googletest-build/googlemock/CMakeFiles/gmock_main.dir/progress.make b/build/_deps/googletest-build/googlemock/CMakeFiles/gmock_main.dir/progress.make new file mode 100644 index 000000000..880889661 --- /dev/null +++ b/build/_deps/googletest-build/googlemock/CMakeFiles/gmock_main.dir/progress.make @@ -0,0 +1,3 @@ +CMAKE_PROGRESS_1 = 6 +CMAKE_PROGRESS_2 = 7 + diff --git a/build/_deps/googletest-build/googlemock/CMakeFiles/progress.marks b/build/_deps/googletest-build/googlemock/CMakeFiles/progress.marks new file mode 100644 index 000000000..45a4fb75d --- /dev/null +++ b/build/_deps/googletest-build/googlemock/CMakeFiles/progress.marks @@ -0,0 +1 @@ +8 diff --git a/build/_deps/googletest-build/googlemock/CTestTestfile.cmake b/build/_deps/googletest-build/googlemock/CTestTestfile.cmake new file mode 100644 index 000000000..42b20f5b8 --- /dev/null +++ b/build/_deps/googletest-build/googlemock/CTestTestfile.cmake @@ -0,0 +1,7 @@ +# CMake generated Testfile for +# Source directory: /Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-src/googlemock +# Build directory: /Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-build/googlemock +# +# This file includes the relevant testing commands required for +# testing this directory and lists subdirectories to be tested as well. +subdirs("../googletest") diff --git a/build/_deps/googletest-build/googlemock/Makefile b/build/_deps/googletest-build/googlemock/Makefile new file mode 100644 index 000000000..922db7679 --- /dev/null +++ b/build/_deps/googletest-build/googlemock/Makefile @@ -0,0 +1,284 @@ +# 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 = /opt/homebrew/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/graf/Documents/GitHub/qubic-core/core + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/graf/Documents/GitHub/qubic-core/core/build + +#============================================================================= +# Targets provided globally by CMake. + +# Special rule for the target test +test: + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running tests..." + /opt/homebrew/bin/ctest $(ARGS) +.PHONY : test + +# Special rule for the target test +test/fast: test +.PHONY : test/fast + +# Special rule for the target edit_cache +edit_cache: + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running CMake cache editor..." + /opt/homebrew/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..." + /opt/homebrew/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 + +# Special rule for the target list_install_components +list_install_components: + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Available install components are: \"Unspecified\" \"gmock\" \"gtest\"" +.PHONY : list_install_components + +# Special rule for the target list_install_components +list_install_components/fast: list_install_components +.PHONY : list_install_components/fast + +# Special rule for the target install +install: preinstall + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Install the project..." + /opt/homebrew/bin/cmake -P cmake_install.cmake +.PHONY : install + +# Special rule for the target install +install/fast: preinstall/fast + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Install the project..." + /opt/homebrew/bin/cmake -P cmake_install.cmake +.PHONY : install/fast + +# Special rule for the target install/local +install/local: preinstall + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing only the local directory..." + /opt/homebrew/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake +.PHONY : install/local + +# Special rule for the target install/local +install/local/fast: preinstall/fast + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing only the local directory..." + /opt/homebrew/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake +.PHONY : install/local/fast + +# Special rule for the target install/strip +install/strip: preinstall + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing the project stripped..." + /opt/homebrew/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake +.PHONY : install/strip + +# Special rule for the target install/strip +install/strip/fast: preinstall/fast + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing the project stripped..." + /opt/homebrew/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake +.PHONY : install/strip/fast + +# The main all target +all: cmake_check_build_system + cd /Users/graf/Documents/GitHub/qubic-core/core/build && $(CMAKE_COMMAND) -E cmake_progress_start /Users/graf/Documents/GitHub/qubic-core/core/build/CMakeFiles /Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-build/googlemock//CMakeFiles/progress.marks + cd /Users/graf/Documents/GitHub/qubic-core/core/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/googletest-build/googlemock/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/graf/Documents/GitHub/qubic-core/core/build/CMakeFiles 0 +.PHONY : all + +# The main clean target +clean: + cd /Users/graf/Documents/GitHub/qubic-core/core/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/googletest-build/googlemock/clean +.PHONY : clean + +# The main clean target +clean/fast: clean +.PHONY : clean/fast + +# Prepare targets for installation. +preinstall: all + cd /Users/graf/Documents/GitHub/qubic-core/core/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/googletest-build/googlemock/preinstall +.PHONY : preinstall + +# Prepare targets for installation. +preinstall/fast: + cd /Users/graf/Documents/GitHub/qubic-core/core/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/googletest-build/googlemock/preinstall +.PHONY : preinstall/fast + +# clear depends +depend: + cd /Users/graf/Documents/GitHub/qubic-core/core/build && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1 +.PHONY : depend + +# Convenience name for target. +_deps/googletest-build/googlemock/CMakeFiles/gmock.dir/rule: + cd /Users/graf/Documents/GitHub/qubic-core/core/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/googletest-build/googlemock/CMakeFiles/gmock.dir/rule +.PHONY : _deps/googletest-build/googlemock/CMakeFiles/gmock.dir/rule + +# Convenience name for target. +gmock: _deps/googletest-build/googlemock/CMakeFiles/gmock.dir/rule +.PHONY : gmock + +# fast build rule for target. +gmock/fast: + cd /Users/graf/Documents/GitHub/qubic-core/core/build && $(MAKE) $(MAKESILENT) -f _deps/googletest-build/googlemock/CMakeFiles/gmock.dir/build.make _deps/googletest-build/googlemock/CMakeFiles/gmock.dir/build +.PHONY : gmock/fast + +# Convenience name for target. +_deps/googletest-build/googlemock/CMakeFiles/gmock_main.dir/rule: + cd /Users/graf/Documents/GitHub/qubic-core/core/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/googletest-build/googlemock/CMakeFiles/gmock_main.dir/rule +.PHONY : _deps/googletest-build/googlemock/CMakeFiles/gmock_main.dir/rule + +# Convenience name for target. +gmock_main: _deps/googletest-build/googlemock/CMakeFiles/gmock_main.dir/rule +.PHONY : gmock_main + +# fast build rule for target. +gmock_main/fast: + cd /Users/graf/Documents/GitHub/qubic-core/core/build && $(MAKE) $(MAKESILENT) -f _deps/googletest-build/googlemock/CMakeFiles/gmock_main.dir/build.make _deps/googletest-build/googlemock/CMakeFiles/gmock_main.dir/build +.PHONY : gmock_main/fast + +src/gmock-all.o: src/gmock-all.cc.o +.PHONY : src/gmock-all.o + +# target to build an object file +src/gmock-all.cc.o: + cd /Users/graf/Documents/GitHub/qubic-core/core/build && $(MAKE) $(MAKESILENT) -f _deps/googletest-build/googlemock/CMakeFiles/gmock.dir/build.make _deps/googletest-build/googlemock/CMakeFiles/gmock.dir/src/gmock-all.cc.o +.PHONY : src/gmock-all.cc.o + +src/gmock-all.i: src/gmock-all.cc.i +.PHONY : src/gmock-all.i + +# target to preprocess a source file +src/gmock-all.cc.i: + cd /Users/graf/Documents/GitHub/qubic-core/core/build && $(MAKE) $(MAKESILENT) -f _deps/googletest-build/googlemock/CMakeFiles/gmock.dir/build.make _deps/googletest-build/googlemock/CMakeFiles/gmock.dir/src/gmock-all.cc.i +.PHONY : src/gmock-all.cc.i + +src/gmock-all.s: src/gmock-all.cc.s +.PHONY : src/gmock-all.s + +# target to generate assembly for a file +src/gmock-all.cc.s: + cd /Users/graf/Documents/GitHub/qubic-core/core/build && $(MAKE) $(MAKESILENT) -f _deps/googletest-build/googlemock/CMakeFiles/gmock.dir/build.make _deps/googletest-build/googlemock/CMakeFiles/gmock.dir/src/gmock-all.cc.s +.PHONY : src/gmock-all.cc.s + +src/gmock_main.o: src/gmock_main.cc.o +.PHONY : src/gmock_main.o + +# target to build an object file +src/gmock_main.cc.o: + cd /Users/graf/Documents/GitHub/qubic-core/core/build && $(MAKE) $(MAKESILENT) -f _deps/googletest-build/googlemock/CMakeFiles/gmock_main.dir/build.make _deps/googletest-build/googlemock/CMakeFiles/gmock_main.dir/src/gmock_main.cc.o +.PHONY : src/gmock_main.cc.o + +src/gmock_main.i: src/gmock_main.cc.i +.PHONY : src/gmock_main.i + +# target to preprocess a source file +src/gmock_main.cc.i: + cd /Users/graf/Documents/GitHub/qubic-core/core/build && $(MAKE) $(MAKESILENT) -f _deps/googletest-build/googlemock/CMakeFiles/gmock_main.dir/build.make _deps/googletest-build/googlemock/CMakeFiles/gmock_main.dir/src/gmock_main.cc.i +.PHONY : src/gmock_main.cc.i + +src/gmock_main.s: src/gmock_main.cc.s +.PHONY : src/gmock_main.s + +# target to generate assembly for a file +src/gmock_main.cc.s: + cd /Users/graf/Documents/GitHub/qubic-core/core/build && $(MAKE) $(MAKESILENT) -f _deps/googletest-build/googlemock/CMakeFiles/gmock_main.dir/build.make _deps/googletest-build/googlemock/CMakeFiles/gmock_main.dir/src/gmock_main.cc.s +.PHONY : src/gmock_main.cc.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 "... install" + @echo "... install/local" + @echo "... install/strip" + @echo "... list_install_components" + @echo "... rebuild_cache" + @echo "... test" + @echo "... gmock" + @echo "... gmock_main" + @echo "... src/gmock-all.o" + @echo "... src/gmock-all.i" + @echo "... src/gmock-all.s" + @echo "... src/gmock_main.o" + @echo "... src/gmock_main.i" + @echo "... src/gmock_main.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: + cd /Users/graf/Documents/GitHub/qubic-core/core/build && $(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/_deps/googletest-build/googlemock/cmake_install.cmake b/build/_deps/googletest-build/googlemock/cmake_install.cmake new file mode 100644 index 000000000..f43aff17c --- /dev/null +++ b/build/_deps/googletest-build/googlemock/cmake_install.cmake @@ -0,0 +1,79 @@ +# Install script for directory: /Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-src/googlemock + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "Release") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "FALSE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/usr/bin/objdump") +endif() + +if(CMAKE_INSTALL_COMPONENT STREQUAL "gmock" OR NOT CMAKE_INSTALL_COMPONENT) + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/include" TYPE DIRECTORY FILES "/Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-src/googlemock/include/") +endif() + +if(CMAKE_INSTALL_COMPONENT STREQUAL "gmock" OR NOT CMAKE_INSTALL_COMPONENT) + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/lib" TYPE STATIC_LIBRARY FILES "/Users/graf/Documents/GitHub/qubic-core/core/build/lib/libgmock.a") + if(EXISTS "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/libgmock.a" AND + NOT IS_SYMLINK "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/libgmock.a") + execute_process(COMMAND "/usr/bin/ranlib" "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/libgmock.a") + endif() +endif() + +if(CMAKE_INSTALL_COMPONENT STREQUAL "gmock" OR NOT CMAKE_INSTALL_COMPONENT) + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/lib" TYPE STATIC_LIBRARY FILES "/Users/graf/Documents/GitHub/qubic-core/core/build/lib/libgmock_main.a") + if(EXISTS "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/libgmock_main.a" AND + NOT IS_SYMLINK "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/libgmock_main.a") + execute_process(COMMAND "/usr/bin/ranlib" "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/libgmock_main.a") + endif() +endif() + +if(CMAKE_INSTALL_COMPONENT STREQUAL "gmock" OR NOT CMAKE_INSTALL_COMPONENT) + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/lib/pkgconfig" TYPE FILE FILES "/Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-build/googletest/generated/gmock.pc") +endif() + +if(CMAKE_INSTALL_COMPONENT STREQUAL "gmock" OR NOT CMAKE_INSTALL_COMPONENT) + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/lib/pkgconfig" TYPE FILE FILES "/Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-build/googletest/generated/gmock_main.pc") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for each subdirectory. + include("/Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-build/googletest/cmake_install.cmake") + +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "/Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-build/googlemock/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/_deps/googletest-build/googletest/CMakeFiles/CMakeDirectoryInformation.cmake b/build/_deps/googletest-build/googletest/CMakeFiles/CMakeDirectoryInformation.cmake new file mode 100644 index 000000000..e2771e437 --- /dev/null +++ b/build/_deps/googletest-build/googletest/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 "/Users/graf/Documents/GitHub/qubic-core/core") +set(CMAKE_RELATIVE_PATH_TOP_BINARY "/Users/graf/Documents/GitHub/qubic-core/core/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/_deps/googletest-build/googletest/CMakeFiles/Export/0c08b8e77dd885bfe55a19a9659d9fc1/GTestTargets-release.cmake b/build/_deps/googletest-build/googletest/CMakeFiles/Export/0c08b8e77dd885bfe55a19a9659d9fc1/GTestTargets-release.cmake new file mode 100644 index 000000000..5cfcc7ae2 --- /dev/null +++ b/build/_deps/googletest-build/googletest/CMakeFiles/Export/0c08b8e77dd885bfe55a19a9659d9fc1/GTestTargets-release.cmake @@ -0,0 +1,49 @@ +#---------------------------------------------------------------- +# Generated CMake target import file for configuration "Release". +#---------------------------------------------------------------- + +# Commands may need to know the format version. +set(CMAKE_IMPORT_FILE_VERSION 1) + +# Import target "GTest::gtest" for configuration "Release" +set_property(TARGET GTest::gtest APPEND PROPERTY IMPORTED_CONFIGURATIONS RELEASE) +set_target_properties(GTest::gtest PROPERTIES + IMPORTED_LINK_INTERFACE_LANGUAGES_RELEASE "CXX" + IMPORTED_LOCATION_RELEASE "${_IMPORT_PREFIX}/lib/libgtest.a" + ) + +list(APPEND _cmake_import_check_targets GTest::gtest ) +list(APPEND _cmake_import_check_files_for_GTest::gtest "${_IMPORT_PREFIX}/lib/libgtest.a" ) + +# Import target "GTest::gtest_main" for configuration "Release" +set_property(TARGET GTest::gtest_main APPEND PROPERTY IMPORTED_CONFIGURATIONS RELEASE) +set_target_properties(GTest::gtest_main PROPERTIES + IMPORTED_LINK_INTERFACE_LANGUAGES_RELEASE "CXX" + IMPORTED_LOCATION_RELEASE "${_IMPORT_PREFIX}/lib/libgtest_main.a" + ) + +list(APPEND _cmake_import_check_targets GTest::gtest_main ) +list(APPEND _cmake_import_check_files_for_GTest::gtest_main "${_IMPORT_PREFIX}/lib/libgtest_main.a" ) + +# Import target "GTest::gmock" for configuration "Release" +set_property(TARGET GTest::gmock APPEND PROPERTY IMPORTED_CONFIGURATIONS RELEASE) +set_target_properties(GTest::gmock PROPERTIES + IMPORTED_LINK_INTERFACE_LANGUAGES_RELEASE "CXX" + IMPORTED_LOCATION_RELEASE "${_IMPORT_PREFIX}/lib/libgmock.a" + ) + +list(APPEND _cmake_import_check_targets GTest::gmock ) +list(APPEND _cmake_import_check_files_for_GTest::gmock "${_IMPORT_PREFIX}/lib/libgmock.a" ) + +# Import target "GTest::gmock_main" for configuration "Release" +set_property(TARGET GTest::gmock_main APPEND PROPERTY IMPORTED_CONFIGURATIONS RELEASE) +set_target_properties(GTest::gmock_main PROPERTIES + IMPORTED_LINK_INTERFACE_LANGUAGES_RELEASE "CXX" + IMPORTED_LOCATION_RELEASE "${_IMPORT_PREFIX}/lib/libgmock_main.a" + ) + +list(APPEND _cmake_import_check_targets GTest::gmock_main ) +list(APPEND _cmake_import_check_files_for_GTest::gmock_main "${_IMPORT_PREFIX}/lib/libgmock_main.a" ) + +# Commands beyond this point should not need to know the version. +set(CMAKE_IMPORT_FILE_VERSION) diff --git a/build/_deps/googletest-build/googletest/CMakeFiles/Export/0c08b8e77dd885bfe55a19a9659d9fc1/GTestTargets.cmake b/build/_deps/googletest-build/googletest/CMakeFiles/Export/0c08b8e77dd885bfe55a19a9659d9fc1/GTestTargets.cmake new file mode 100644 index 000000000..c9301a77e --- /dev/null +++ b/build/_deps/googletest-build/googletest/CMakeFiles/Export/0c08b8e77dd885bfe55a19a9659d9fc1/GTestTargets.cmake @@ -0,0 +1,139 @@ +# Generated by CMake + +if("${CMAKE_MAJOR_VERSION}.${CMAKE_MINOR_VERSION}" LESS 2.8) + message(FATAL_ERROR "CMake >= 2.8.12 required") +endif() +if(CMAKE_VERSION VERSION_LESS "2.8.12") + message(FATAL_ERROR "CMake >= 2.8.12 required") +endif() +cmake_policy(PUSH) +cmake_policy(VERSION 2.8.12...3.31) +#---------------------------------------------------------------- +# Generated CMake target import file. +#---------------------------------------------------------------- + +# Commands may need to know the format version. +set(CMAKE_IMPORT_FILE_VERSION 1) + +# Protect against multiple inclusion, which would fail when already imported targets are added once more. +set(_cmake_targets_defined "") +set(_cmake_targets_not_defined "") +set(_cmake_expected_targets "") +foreach(_cmake_expected_target IN ITEMS GTest::gtest GTest::gtest_main GTest::gmock GTest::gmock_main) + list(APPEND _cmake_expected_targets "${_cmake_expected_target}") + if(TARGET "${_cmake_expected_target}") + list(APPEND _cmake_targets_defined "${_cmake_expected_target}") + else() + list(APPEND _cmake_targets_not_defined "${_cmake_expected_target}") + endif() +endforeach() +unset(_cmake_expected_target) +if(_cmake_targets_defined STREQUAL _cmake_expected_targets) + unset(_cmake_targets_defined) + unset(_cmake_targets_not_defined) + unset(_cmake_expected_targets) + unset(CMAKE_IMPORT_FILE_VERSION) + cmake_policy(POP) + return() +endif() +if(NOT _cmake_targets_defined STREQUAL "") + string(REPLACE ";" ", " _cmake_targets_defined_text "${_cmake_targets_defined}") + string(REPLACE ";" ", " _cmake_targets_not_defined_text "${_cmake_targets_not_defined}") + message(FATAL_ERROR "Some (but not all) targets in this export set were already defined.\nTargets Defined: ${_cmake_targets_defined_text}\nTargets not yet defined: ${_cmake_targets_not_defined_text}\n") +endif() +unset(_cmake_targets_defined) +unset(_cmake_targets_not_defined) +unset(_cmake_expected_targets) + + +# Compute the installation prefix relative to this file. +get_filename_component(_IMPORT_PREFIX "${CMAKE_CURRENT_LIST_FILE}" PATH) +get_filename_component(_IMPORT_PREFIX "${_IMPORT_PREFIX}" PATH) +get_filename_component(_IMPORT_PREFIX "${_IMPORT_PREFIX}" PATH) +get_filename_component(_IMPORT_PREFIX "${_IMPORT_PREFIX}" PATH) +if(_IMPORT_PREFIX STREQUAL "/") + set(_IMPORT_PREFIX "") +endif() + +# Create imported target GTest::gtest +add_library(GTest::gtest STATIC IMPORTED) + +set_target_properties(GTest::gtest PROPERTIES + INTERFACE_COMPILE_FEATURES "cxx_std_14" + INTERFACE_INCLUDE_DIRECTORIES "${_IMPORT_PREFIX}/include" + INTERFACE_LINK_LIBRARIES "Threads::Threads" + INTERFACE_SYSTEM_INCLUDE_DIRECTORIES "${_IMPORT_PREFIX}/include" +) + +# Create imported target GTest::gtest_main +add_library(GTest::gtest_main STATIC IMPORTED) + +set_target_properties(GTest::gtest_main PROPERTIES + INTERFACE_COMPILE_FEATURES "cxx_std_14" + INTERFACE_INCLUDE_DIRECTORIES "${_IMPORT_PREFIX}/include" + INTERFACE_LINK_LIBRARIES "Threads::Threads;GTest::gtest" + INTERFACE_SYSTEM_INCLUDE_DIRECTORIES "${_IMPORT_PREFIX}/include" +) + +# Create imported target GTest::gmock +add_library(GTest::gmock STATIC IMPORTED) + +set_target_properties(GTest::gmock PROPERTIES + INTERFACE_COMPILE_FEATURES "cxx_std_14" + INTERFACE_INCLUDE_DIRECTORIES "${_IMPORT_PREFIX}/include" + INTERFACE_LINK_LIBRARIES "Threads::Threads;GTest::gtest" + INTERFACE_SYSTEM_INCLUDE_DIRECTORIES "${_IMPORT_PREFIX}/include" +) + +# Create imported target GTest::gmock_main +add_library(GTest::gmock_main STATIC IMPORTED) + +set_target_properties(GTest::gmock_main PROPERTIES + INTERFACE_COMPILE_FEATURES "cxx_std_14" + INTERFACE_INCLUDE_DIRECTORIES "${_IMPORT_PREFIX}/include" + INTERFACE_LINK_LIBRARIES "Threads::Threads;GTest::gmock" + INTERFACE_SYSTEM_INCLUDE_DIRECTORIES "${_IMPORT_PREFIX}/include" +) + +# Load information for each installed configuration. +file(GLOB _cmake_config_files "${CMAKE_CURRENT_LIST_DIR}/GTestTargets-*.cmake") +foreach(_cmake_config_file IN LISTS _cmake_config_files) + include("${_cmake_config_file}") +endforeach() +unset(_cmake_config_file) +unset(_cmake_config_files) + +# Cleanup temporary variables. +set(_IMPORT_PREFIX) + +# Loop over all imported files and verify that they actually exist +foreach(_cmake_target IN LISTS _cmake_import_check_targets) + if(CMAKE_VERSION VERSION_LESS "3.28" + OR NOT DEFINED _cmake_import_check_xcframework_for_${_cmake_target} + OR NOT IS_DIRECTORY "${_cmake_import_check_xcframework_for_${_cmake_target}}") + foreach(_cmake_file IN LISTS "_cmake_import_check_files_for_${_cmake_target}") + if(NOT EXISTS "${_cmake_file}") + message(FATAL_ERROR "The imported target \"${_cmake_target}\" references the file + \"${_cmake_file}\" +but this file does not exist. Possible reasons include: +* The file was deleted, renamed, or moved to another location. +* An install or uninstall procedure did not complete successfully. +* The installation package was faulty and contained + \"${CMAKE_CURRENT_LIST_FILE}\" +but not all the files it references. +") + endif() + endforeach() + endif() + unset(_cmake_file) + unset("_cmake_import_check_files_for_${_cmake_target}") +endforeach() +unset(_cmake_target) +unset(_cmake_import_check_targets) + +# This file does not depend on other imported targets which have +# been exported from the same project but in a separate export set. + +# Commands beyond this point should not need to know the version. +set(CMAKE_IMPORT_FILE_VERSION) +cmake_policy(POP) diff --git a/build/_deps/googletest-build/googletest/CMakeFiles/gtest.dir/DependInfo.cmake b/build/_deps/googletest-build/googletest/CMakeFiles/gtest.dir/DependInfo.cmake new file mode 100644 index 000000000..c88bd5b02 --- /dev/null +++ b/build/_deps/googletest-build/googletest/CMakeFiles/gtest.dir/DependInfo.cmake @@ -0,0 +1,23 @@ + +# 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 + "/Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-src/googletest/src/gtest-all.cc" "_deps/googletest-build/googletest/CMakeFiles/gtest.dir/src/gtest-all.cc.o" "gcc" "_deps/googletest-build/googletest/CMakeFiles/gtest.dir/src/gtest-all.cc.o.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/_deps/googletest-build/googletest/CMakeFiles/gtest.dir/build.make b/build/_deps/googletest-build/googletest/CMakeFiles/gtest.dir/build.make new file mode 100644 index 000000000..bd11e3126 --- /dev/null +++ b/build/_deps/googletest-build/googletest/CMakeFiles/gtest.dir/build.make @@ -0,0 +1,114 @@ +# 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 = /opt/homebrew/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/graf/Documents/GitHub/qubic-core/core + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/graf/Documents/GitHub/qubic-core/core/build + +# Include any dependencies generated for this target. +include _deps/googletest-build/googletest/CMakeFiles/gtest.dir/depend.make +# Include any dependencies generated by the compiler for this target. +include _deps/googletest-build/googletest/CMakeFiles/gtest.dir/compiler_depend.make + +# Include the progress variables for this target. +include _deps/googletest-build/googletest/CMakeFiles/gtest.dir/progress.make + +# Include the compile flags for this target's objects. +include _deps/googletest-build/googletest/CMakeFiles/gtest.dir/flags.make + +_deps/googletest-build/googletest/CMakeFiles/gtest.dir/codegen: +.PHONY : _deps/googletest-build/googletest/CMakeFiles/gtest.dir/codegen + +_deps/googletest-build/googletest/CMakeFiles/gtest.dir/src/gtest-all.cc.o: _deps/googletest-build/googletest/CMakeFiles/gtest.dir/flags.make +_deps/googletest-build/googletest/CMakeFiles/gtest.dir/src/gtest-all.cc.o: _deps/googletest-src/googletest/src/gtest-all.cc +_deps/googletest-build/googletest/CMakeFiles/gtest.dir/src/gtest-all.cc.o: _deps/googletest-build/googletest/CMakeFiles/gtest.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/graf/Documents/GitHub/qubic-core/core/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object _deps/googletest-build/googletest/CMakeFiles/gtest.dir/src/gtest-all.cc.o" + cd /Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-build/googletest && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/googletest-build/googletest/CMakeFiles/gtest.dir/src/gtest-all.cc.o -MF CMakeFiles/gtest.dir/src/gtest-all.cc.o.d -o CMakeFiles/gtest.dir/src/gtest-all.cc.o -c /Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-src/googletest/src/gtest-all.cc + +_deps/googletest-build/googletest/CMakeFiles/gtest.dir/src/gtest-all.cc.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/gtest.dir/src/gtest-all.cc.i" + cd /Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-build/googletest && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-src/googletest/src/gtest-all.cc > CMakeFiles/gtest.dir/src/gtest-all.cc.i + +_deps/googletest-build/googletest/CMakeFiles/gtest.dir/src/gtest-all.cc.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/gtest.dir/src/gtest-all.cc.s" + cd /Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-build/googletest && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-src/googletest/src/gtest-all.cc -o CMakeFiles/gtest.dir/src/gtest-all.cc.s + +# Object files for target gtest +gtest_OBJECTS = \ +"CMakeFiles/gtest.dir/src/gtest-all.cc.o" + +# External object files for target gtest +gtest_EXTERNAL_OBJECTS = + +lib/libgtest.a: _deps/googletest-build/googletest/CMakeFiles/gtest.dir/src/gtest-all.cc.o +lib/libgtest.a: _deps/googletest-build/googletest/CMakeFiles/gtest.dir/build.make +lib/libgtest.a: _deps/googletest-build/googletest/CMakeFiles/gtest.dir/link.txt + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --bold --progress-dir=/Users/graf/Documents/GitHub/qubic-core/core/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Linking CXX static library ../../../lib/libgtest.a" + cd /Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-build/googletest && $(CMAKE_COMMAND) -P CMakeFiles/gtest.dir/cmake_clean_target.cmake + cd /Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-build/googletest && $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/gtest.dir/link.txt --verbose=$(VERBOSE) + +# Rule to build all files generated by this target. +_deps/googletest-build/googletest/CMakeFiles/gtest.dir/build: lib/libgtest.a +.PHONY : _deps/googletest-build/googletest/CMakeFiles/gtest.dir/build + +_deps/googletest-build/googletest/CMakeFiles/gtest.dir/clean: + cd /Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-build/googletest && $(CMAKE_COMMAND) -P CMakeFiles/gtest.dir/cmake_clean.cmake +.PHONY : _deps/googletest-build/googletest/CMakeFiles/gtest.dir/clean + +_deps/googletest-build/googletest/CMakeFiles/gtest.dir/depend: + cd /Users/graf/Documents/GitHub/qubic-core/core/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/graf/Documents/GitHub/qubic-core/core /Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-src/googletest /Users/graf/Documents/GitHub/qubic-core/core/build /Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-build/googletest /Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-build/googletest/CMakeFiles/gtest.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : _deps/googletest-build/googletest/CMakeFiles/gtest.dir/depend + diff --git a/build/_deps/googletest-build/googletest/CMakeFiles/gtest.dir/cmake_clean.cmake b/build/_deps/googletest-build/googletest/CMakeFiles/gtest.dir/cmake_clean.cmake new file mode 100644 index 000000000..82336bb63 --- /dev/null +++ b/build/_deps/googletest-build/googletest/CMakeFiles/gtest.dir/cmake_clean.cmake @@ -0,0 +1,11 @@ +file(REMOVE_RECURSE + "../../../bin/libgtest.pdb" + "../../../lib/libgtest.a" + "CMakeFiles/gtest.dir/src/gtest-all.cc.o" + "CMakeFiles/gtest.dir/src/gtest-all.cc.o.d" +) + +# Per-language clean rules from dependency scanning. +foreach(lang CXX) + include(CMakeFiles/gtest.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/_deps/googletest-build/googletest/CMakeFiles/gtest.dir/cmake_clean_target.cmake b/build/_deps/googletest-build/googletest/CMakeFiles/gtest.dir/cmake_clean_target.cmake new file mode 100644 index 000000000..e2ada84f7 --- /dev/null +++ b/build/_deps/googletest-build/googletest/CMakeFiles/gtest.dir/cmake_clean_target.cmake @@ -0,0 +1,3 @@ +file(REMOVE_RECURSE + "../../../lib/libgtest.a" +) diff --git a/build/_deps/googletest-build/googletest/CMakeFiles/gtest.dir/compiler_depend.make b/build/_deps/googletest-build/googletest/CMakeFiles/gtest.dir/compiler_depend.make new file mode 100644 index 000000000..71b2ee690 --- /dev/null +++ b/build/_deps/googletest-build/googletest/CMakeFiles/gtest.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty compiler generated dependencies file for gtest. +# This may be replaced when dependencies are built. diff --git a/build/_deps/googletest-build/googletest/CMakeFiles/gtest.dir/compiler_depend.ts b/build/_deps/googletest-build/googletest/CMakeFiles/gtest.dir/compiler_depend.ts new file mode 100644 index 000000000..32ab1fb11 --- /dev/null +++ b/build/_deps/googletest-build/googletest/CMakeFiles/gtest.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for compiler generated dependencies management for gtest. diff --git a/build/_deps/googletest-build/googletest/CMakeFiles/gtest.dir/depend.make b/build/_deps/googletest-build/googletest/CMakeFiles/gtest.dir/depend.make new file mode 100644 index 000000000..37ac348db --- /dev/null +++ b/build/_deps/googletest-build/googletest/CMakeFiles/gtest.dir/depend.make @@ -0,0 +1,2 @@ +# Empty dependencies file for gtest. +# This may be replaced when dependencies are built. diff --git a/build/_deps/googletest-build/googletest/CMakeFiles/gtest.dir/flags.make b/build/_deps/googletest-build/googletest/CMakeFiles/gtest.dir/flags.make new file mode 100644 index 000000000..a75d6e576 --- /dev/null +++ b/build/_deps/googletest-build/googletest/CMakeFiles/gtest.dir/flags.make @@ -0,0 +1,12 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 4.1 + +# compile CXX with /usr/bin/c++ +CXX_DEFINES = + +CXX_INCLUDES = -I/Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-src/googletest/include -I/Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-src/googletest + +CXX_FLAGSarm64 = -std=c++20 -arch arm64 -DGTEST_HAS_PTHREAD=1 + +CXX_FLAGS = -std=c++20 -arch arm64 -DGTEST_HAS_PTHREAD=1 + diff --git a/build/_deps/googletest-build/googletest/CMakeFiles/gtest.dir/link.txt b/build/_deps/googletest-build/googletest/CMakeFiles/gtest.dir/link.txt new file mode 100644 index 000000000..f2594888d --- /dev/null +++ b/build/_deps/googletest-build/googletest/CMakeFiles/gtest.dir/link.txt @@ -0,0 +1,2 @@ +/usr/bin/ar qc ../../../lib/libgtest.a "CMakeFiles/gtest.dir/src/gtest-all.cc.o" +/usr/bin/ranlib ../../../lib/libgtest.a diff --git a/build/_deps/googletest-build/googletest/CMakeFiles/gtest.dir/progress.make b/build/_deps/googletest-build/googletest/CMakeFiles/gtest.dir/progress.make new file mode 100644 index 000000000..895faac22 --- /dev/null +++ b/build/_deps/googletest-build/googletest/CMakeFiles/gtest.dir/progress.make @@ -0,0 +1,3 @@ +CMAKE_PROGRESS_1 = 8 +CMAKE_PROGRESS_2 = 9 + diff --git a/build/_deps/googletest-build/googletest/CMakeFiles/gtest.dir/src/gtest-all.cc.o b/build/_deps/googletest-build/googletest/CMakeFiles/gtest.dir/src/gtest-all.cc.o new file mode 100644 index 000000000..b4dfd2742 Binary files /dev/null and b/build/_deps/googletest-build/googletest/CMakeFiles/gtest.dir/src/gtest-all.cc.o differ diff --git a/build/_deps/googletest-build/googletest/CMakeFiles/gtest.dir/src/gtest-all.cc.o.d b/build/_deps/googletest-build/googletest/CMakeFiles/gtest.dir/src/gtest-all.cc.o.d new file mode 100644 index 000000000..397557fdf --- /dev/null +++ b/build/_deps/googletest-build/googletest/CMakeFiles/gtest.dir/src/gtest-all.cc.o.d @@ -0,0 +1,1152 @@ +_deps/googletest-build/googletest/CMakeFiles/gtest.dir/src/gtest-all.cc.o: \ + /Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-src/googletest/src/gtest-all.cc \ + /Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-src/googletest/include/gtest/gtest.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/cstddef \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__config \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__config_site \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__configuration/abi.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__configuration/compiler.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__configuration/platform.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__configuration/availability.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__configuration/language.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/version \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/stddef.h \ + /Library/Developer/CommandLineTools/usr/lib/clang/17/include/stddef.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/stddef.h \ + /Library/Developer/CommandLineTools/usr/lib/clang/17/include/__stddef_header_macro.h \ + /Library/Developer/CommandLineTools/usr/lib/clang/17/include/__stddef_ptrdiff_t.h \ + /Library/Developer/CommandLineTools/usr/lib/clang/17/include/__stddef_size_t.h \ + /Library/Developer/CommandLineTools/usr/lib/clang/17/include/__stddef_wchar_t.h \ + /Library/Developer/CommandLineTools/usr/lib/clang/17/include/__stddef_null.h \ + /Library/Developer/CommandLineTools/usr/lib/clang/17/include/__stddef_nullptr_t.h \ + /Library/Developer/CommandLineTools/usr/lib/clang/17/include/__stddef_max_align_t.h \ + /Library/Developer/CommandLineTools/usr/lib/clang/17/include/__stddef_offsetof.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__cstddef/byte.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__fwd/byte.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__type_traits/enable_if.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__type_traits/is_integral.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__type_traits/integral_constant.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__type_traits/remove_cv.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__type_traits/remove_const.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__type_traits/remove_volatile.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__cstddef/max_align_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__cstddef/nullptr_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__cstddef/ptrdiff_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__cstddef/size_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/cstdint \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/stdint.h \ + /Library/Developer/CommandLineTools/usr/lib/clang/17/include/stdint.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/stdint.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_int8_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_int16_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_int32_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_int64_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/_types/_uint8_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/_types/_uint16_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/_types/_uint32_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/_types/_uint64_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/cdefs.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_symbol_aliasing.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_posix_availability.h \ + /Library/Developer/CommandLineTools/usr/lib/clang/17/include/ptrcheck.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/machine/_types.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/arm/_types.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_pthread/_pthread_types.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_intptr_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_uintptr_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/_types/_intmax_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/_types/_uintmax_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/limits \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__type_traits/is_arithmetic.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__type_traits/is_floating_point.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__type_traits/is_signed.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__undef_macros \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/type_traits \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__fwd/functional.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__type_traits/add_const.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__type_traits/add_cv.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__type_traits/add_lvalue_reference.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__type_traits/is_referenceable.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__type_traits/is_same.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__type_traits/add_pointer.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__type_traits/is_void.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__type_traits/remove_reference.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__type_traits/add_rvalue_reference.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__type_traits/add_volatile.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__type_traits/aligned_storage.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__type_traits/conditional.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__type_traits/nat.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__type_traits/type_list.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__type_traits/aligned_union.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__type_traits/alignment_of.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__type_traits/common_type.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__type_traits/decay.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__type_traits/is_array.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__type_traits/is_function.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__type_traits/remove_extent.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__type_traits/remove_cvref.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__type_traits/void_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__utility/declval.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__type_traits/extent.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__type_traits/has_virtual_destructor.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__type_traits/is_abstract.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__type_traits/is_assignable.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__type_traits/is_base_of.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__type_traits/is_class.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__type_traits/is_compound.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__type_traits/is_fundamental.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__type_traits/is_null_pointer.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__type_traits/is_const.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__type_traits/is_constructible.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__type_traits/is_convertible.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__type_traits/is_destructible.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__type_traits/is_reference.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__type_traits/remove_all_extents.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__type_traits/is_empty.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__type_traits/is_enum.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__type_traits/is_literal_type.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__type_traits/is_member_pointer.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__type_traits/is_nothrow_assignable.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__type_traits/is_nothrow_constructible.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__type_traits/is_nothrow_destructible.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__type_traits/is_object.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__type_traits/is_pod.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__type_traits/is_pointer.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__type_traits/is_polymorphic.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__type_traits/is_scalar.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__type_traits/is_standard_layout.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__type_traits/is_trivial.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__type_traits/is_trivially_assignable.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__type_traits/is_trivially_constructible.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__type_traits/is_trivially_copyable.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__type_traits/is_trivially_destructible.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__type_traits/is_union.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__type_traits/is_unsigned.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__type_traits/is_volatile.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__type_traits/make_signed.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__type_traits/copy_cv.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__type_traits/make_unsigned.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__type_traits/rank.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__type_traits/remove_pointer.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__type_traits/result_of.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__type_traits/invoke.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__type_traits/is_core_convertible.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__type_traits/is_reference_wrapper.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__utility/forward.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__type_traits/underlying_type.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__type_traits/is_final.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__type_traits/conjunction.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__type_traits/disjunction.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__type_traits/has_unique_object_representation.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__type_traits/is_aggregate.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__type_traits/is_swappable.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__type_traits/negation.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__type_traits/common_reference.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__type_traits/copy_cvref.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__type_traits/is_bounded_array.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__type_traits/is_constant_evaluated.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__type_traits/is_nothrow_convertible.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__type_traits/lazy.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__type_traits/is_unbounded_array.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__type_traits/type_identity.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__type_traits/unwrap_ref.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/memory \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__memory/addressof.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__memory/align.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__memory/allocator.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__memory/allocate_at_least.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__memory/allocator_traits.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__memory/construct_at.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__assert \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__assertion_handler \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__verbose_abort \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__iterator/access.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__memory/voidify.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__utility/move.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/new \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__exception/exception.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/stdlib.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/stdlib.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/_stdlib.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/Availability.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/AvailabilityVersions.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/AvailabilityInternal.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/AvailabilityInternalLegacy.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/_bounds.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/_types.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/wait.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_pid_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_id_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/signal.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/appleapiopts.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/machine/signal.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/arm/signal.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/machine/_mcontext.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/arm/_mcontext.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/mach/machine/_structs.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/mach/arm/_structs.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/machine/types.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/arm/types.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_u_int8_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_u_int16_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_u_int32_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_u_int64_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_pthread/_pthread_attr_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_sigaltstack.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_ucontext.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_sigset_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_size_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_uid_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/resource.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_timeval.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/machine/endian.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/arm/endian.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_endian.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/machine/_endian.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/arm/_endian.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/__endian.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/libkern/_OSByteOrder.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/libkern/arm/_OSByteOrder.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/alloca.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_ct_rune_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_rune_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_wchar_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_null.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/malloc/_malloc.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/malloc/_malloc_type.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/malloc/_ptrcheck.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/_abort.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_dev_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_mode_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/cstdlib \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__memory/pointer_traits.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__memory/allocator_arg_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__memory/uses_allocator.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__memory/auto_ptr.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__memory/inout_ptr.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__memory/shared_ptr.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__compare/compare_three_way.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__compare/three_way_comparable.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__compare/common_comparison_category.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__compare/ordering.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__concepts/common_reference_with.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__concepts/convertible_to.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__concepts/same_as.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__concepts/equality_comparable.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__concepts/boolean_testable.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__type_traits/make_const_lvalue_ref.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__concepts/totally_ordered.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__functional/binary_function.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__functional/operations.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__functional/unary_function.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__type_traits/desugars_to.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__functional/reference_wrapper.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__compare/synth_three_way.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__functional/invoke.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__functional/weak_result_type.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__fwd/ostream.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__fwd/string.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__fwd/memory.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__fwd/memory_resource.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__memory/allocation_guard.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__memory/allocator_destructor.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__memory/compressed_pair.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__fwd/tuple.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__tuple/tuple_indices.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__utility/integer_sequence.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__type_traits/dependent_type.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__utility/piecewise_construct.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__memory/uninitialized_algorithms.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__algorithm/copy.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__algorithm/copy_move_common.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__algorithm/iterator_operations.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__algorithm/iter_swap.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__utility/swap.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__algorithm/ranges_iterator_concept.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__iterator/concepts.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__concepts/arithmetic.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__type_traits/is_signed_integer.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__type_traits/is_unsigned_integer.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__concepts/assignable.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__concepts/constructible.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__concepts/destructible.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__concepts/copyable.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__concepts/movable.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__concepts/swappable.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__concepts/class_or_enum.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__utility/exchange.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__concepts/derived_from.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__concepts/invocable.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__concepts/predicate.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__concepts/regular.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__concepts/semiregular.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__concepts/relation.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__iterator/incrementable_traits.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__type_traits/is_primary_template.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__type_traits/is_valid_expansion.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__iterator/iter_move.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__iterator/iterator_traits.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__fwd/pair.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__iterator/readable_traits.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__iterator/advance.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__utility/convert_to_integral.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__utility/unreachable.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__iterator/distance.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__ranges/access.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__ranges/enable_borrowed_range.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__utility/auto_cast.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__ranges/concepts.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__ranges/data.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__ranges/enable_view.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__ranges/size.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/initializer_list \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__iterator/iter_swap.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__iterator/next.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__iterator/prev.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__algorithm/unwrap_iter.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__algorithm/unwrap_range.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__utility/pair.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__concepts/different_from.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__fwd/array.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__tuple/sfinae_helpers.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__tuple/make_tuple_types.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__tuple/tuple_element.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__tuple/tuple_types.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__tuple/tuple_size.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__tuple/tuple_like_ext.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__tuple/tuple_like_no_subrange.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__fwd/complex.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__type_traits/is_implicitly_default_constructible.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__type_traits/is_trivially_relocatable.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__string/constexpr_c_functions.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__type_traits/datasizeof.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__type_traits/is_always_bitcastable.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__type_traits/is_equality_comparable.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__type_traits/is_trivially_lexicographically_comparable.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__utility/is_pointer_in_range.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__algorithm/comp.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__utility/is_valid_range.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__algorithm/for_each_segment.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__iterator/segmented_iterator.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__algorithm/min.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__algorithm/comp_ref_type.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__algorithm/min_element.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__functional/identity.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__type_traits/is_callable.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__algorithm/move.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__iterator/reverse_iterator.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__compare/compare_three_way_result.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__iterator/iterator.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__ranges/subrange.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__fwd/subrange.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__ranges/dangling.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__ranges/view_interface.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__ranges/empty.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__utility/exception_guard.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__memory/unique_ptr.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__functional/hash.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/cstring \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/string.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/string.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/_string.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_ssize_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/_strings.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/typeinfo \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__atomic/memory_order.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__type_traits/is_specialization.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/tuple \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__tuple/find_index.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__tuple/ignore.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__type_traits/maybe_const.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/compare \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__compare/compare_partial_order_fallback.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__compare/partial_order.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__compare/weak_order.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__compare/strong_order.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__bit/bit_cast.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__math/exponential_functions.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__type_traits/promote.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__math/traits.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__utility/priority_tag.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__compare/compare_strong_order_fallback.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__compare/compare_weak_order_fallback.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__compare/is_eq.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/cmath \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__math/hypot.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__math/abs.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__math/min_max.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__math/roots.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__math/special_functions.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__math/copysign.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/math.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__math/error_functions.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__math/fdim.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__math/fma.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__math/gamma.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__math/hyperbolic_functions.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__math/inverse_hyperbolic_functions.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__math/inverse_trigonometric_functions.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__math/logarithms.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__math/modulo.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__math/remainder.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__math/rounding_functions.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__math/trigonometric_functions.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/exception \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__exception/exception_ptr.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__exception/operations.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__exception/nested_exception.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__exception/terminate.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/iosfwd \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__fwd/fstream.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__fwd/ios.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__fwd/istream.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__fwd/sstream.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__fwd/streambuf.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__std_mbstate_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__mbstate_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_mbstate_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/utility \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__utility/rel_ops.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__utility/as_const.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__utility/in_place.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__utility/cmp.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__memory/out_ptr.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__memory/raw_storage_iterator.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__memory/temporary_buffer.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__memory/assume_aligned.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__memory/concepts.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__memory/ranges_construct_at.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__memory/ranges_uninitialized_algorithms.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__algorithm/in_out_result.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__memory/uses_allocator_construction.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/atomic \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__atomic/aliases.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__atomic/atomic.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__atomic/atomic_base.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__atomic/atomic_sync.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__atomic/contention_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__atomic/cxx_atomic_impl.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__atomic/to_gcc_order.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__chrono/duration.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/ratio \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/climits \ + /Library/Developer/CommandLineTools/usr/lib/clang/17/include/limits.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/limits.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/machine/limits.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/arm/limits.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/arm/_limits.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/syslimits.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__thread/poll_with_backoff.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__chrono/high_resolution_clock.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__chrono/steady_clock.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__chrono/time_point.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__chrono/system_clock.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/ctime \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/time.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/_time.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_clock_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_time_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_timespec.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__thread/support.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__thread/support/pthread.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__chrono/convert_to_timespec.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/errno.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/errno.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/errno.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/pthread.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/pthread/sched.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/pthread/pthread_impl.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_pthread/_pthread_cond_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_pthread/_pthread_condattr_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_pthread/_pthread_key_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_pthread/_pthread_mutex_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_pthread/_pthread_mutexattr_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_pthread/_pthread_once_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_pthread/_pthread_rwlock_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_pthread/_pthread_rwlockattr_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_pthread/_pthread_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/pthread/qos.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/qos.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_mach_port_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sched.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__atomic/check_memory_order.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__atomic/is_always_lock_free.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__atomic/atomic_lock_free.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__atomic/atomic_flag.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__atomic/atomic_init.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__atomic/fence.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__atomic/kill_dependency.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__atomic/atomic_ref.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/concepts \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__concepts/common_with.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/iterator \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__iterator/back_insert_iterator.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__iterator/front_insert_iterator.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__iterator/insert_iterator.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__iterator/istream_iterator.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__iterator/default_sentinel.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__iterator/istreambuf_iterator.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__iterator/move_iterator.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__iterator/move_sentinel.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__iterator/ostream_iterator.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__iterator/ostreambuf_iterator.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__iterator/wrap_iter.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__iterator/reverse_access.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__iterator/data.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__iterator/empty.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__iterator/size.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__iterator/common_iterator.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/variant \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__utility/forward_like.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__variant/monostate.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__iterator/counted_iterator.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__iterator/indirectly_comparable.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__iterator/projected.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__iterator/mergeable.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__functional/ranges_operations.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__iterator/permutable.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__iterator/sortable.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__iterator/unreachable_sentinel.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/stdexcept \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/ostream \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__ostream/basic_ostream.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__system_error/error_code.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__system_error/errc.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/cerrno \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__system_error/error_category.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/string \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__algorithm/max.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__algorithm/max_element.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__algorithm/remove.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__algorithm/find.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__algorithm/find_segment_if.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__bit/countr.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__bit/rotate.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__bit/invert_if.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__fwd/bit_reference.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/cwchar \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/cwctype \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/cctype \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/ctype.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/ctype.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/_ctype.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/runetype.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_wint_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/wctype.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/wctype.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/_wctype.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/_types/_wctrans_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/__wctype.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/___wctype.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/_types/_wctype_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/wchar.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/wchar.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/_wchar.h \ + /Library/Developer/CommandLineTools/usr/lib/clang/17/include/stdarg.h \ + /Library/Developer/CommandLineTools/usr/lib/clang/17/include/__stdarg_header_macro.h \ + /Library/Developer/CommandLineTools/usr/lib/clang/17/include/__stdarg___gnuc_va_list.h \ + /Library/Developer/CommandLineTools/usr/lib/clang/17/include/__stdarg_va_list.h \ + /Library/Developer/CommandLineTools/usr/lib/clang/17/include/__stdarg_va_arg.h \ + /Library/Developer/CommandLineTools/usr/lib/clang/17/include/__stdarg___va_copy.h \ + /Library/Developer/CommandLineTools/usr/lib/clang/17/include/__stdarg_va_copy.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/stdio.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/stdio.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/_stdio.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_va_list.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/stdio.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/_printf.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_seek_set.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/_ctermid.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_off_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__algorithm/find_if.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__algorithm/remove_if.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__debug_utils/sanitizers.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__format/enable_insertable.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__ios/fpos.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__iterator/bounded_iter.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__memory/noexcept_move_assign_container.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__memory/swap_allocator.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__memory_resource/polymorphic_allocator.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__memory_resource/memory_resource.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__ranges/container_compatible_range.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__ranges/from_range.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__string/char_traits.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__algorithm/fill_n.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__algorithm/find_end.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__algorithm/search.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__algorithm/find_first_of.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/cstdio \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__string/extern_template_lists.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__type_traits/is_allocator.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/string_view \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__fwd/string_view.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/algorithm \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__algorithm/adjacent_find.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__algorithm/all_of.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__algorithm/any_of.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__algorithm/binary_search.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__algorithm/lower_bound.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__algorithm/half_positive.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__algorithm/copy_backward.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__algorithm/copy_if.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__algorithm/copy_n.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__algorithm/count.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__bit/popcount.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__algorithm/count_if.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__algorithm/equal.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__algorithm/equal_range.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__algorithm/upper_bound.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__algorithm/fill.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__algorithm/find_if_not.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__algorithm/for_each.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__ranges/movable_box.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/optional \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__algorithm/generate.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__algorithm/generate_n.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__algorithm/includes.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__algorithm/inplace_merge.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__algorithm/rotate.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__algorithm/move_backward.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__algorithm/swap_ranges.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__memory/destruct_n.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__algorithm/is_heap.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__algorithm/is_heap_until.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__algorithm/is_partitioned.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__algorithm/is_permutation.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__algorithm/is_sorted.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__algorithm/is_sorted_until.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__algorithm/lexicographical_compare.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__algorithm/make_heap.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__algorithm/sift_down.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__algorithm/merge.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__algorithm/minmax.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__algorithm/minmax_element.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__algorithm/mismatch.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__algorithm/simd_utils.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__bit/countl.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__iterator/aliasing_iterator.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__algorithm/next_permutation.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__algorithm/reverse.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__algorithm/none_of.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__algorithm/nth_element.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__algorithm/sort.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__algorithm/partial_sort.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__algorithm/sort_heap.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__algorithm/pop_heap.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__algorithm/push_heap.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__debug_utils/strict_weak_ordering_check.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__debug_utils/randomize_range.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__bit/blsr.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__algorithm/partial_sort_copy.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__algorithm/make_projected.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__algorithm/partition.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__algorithm/partition_copy.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__algorithm/partition_point.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__algorithm/prev_permutation.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__algorithm/remove_copy.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__algorithm/remove_copy_if.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__algorithm/replace.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__algorithm/replace_copy.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__algorithm/replace_copy_if.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__algorithm/replace_if.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__algorithm/reverse_copy.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__algorithm/rotate_copy.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__algorithm/search_n.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__algorithm/set_difference.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__algorithm/set_intersection.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__algorithm/set_symmetric_difference.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__algorithm/set_union.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__algorithm/shuffle.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__random/uniform_int_distribution.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__random/is_valid.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__random/log2.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__algorithm/stable_partition.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__algorithm/stable_sort.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__algorithm/transform.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__algorithm/unique.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__algorithm/unique_copy.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__algorithm/clamp.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__algorithm/for_each_n.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__algorithm/pstl.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__algorithm/sample.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__algorithm/in_found_result.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__algorithm/in_fun_result.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__algorithm/in_in_out_result.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__algorithm/in_in_result.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__algorithm/in_out_out_result.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__algorithm/lexicographical_compare_three_way.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__algorithm/three_way_comp_ref_type.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__algorithm/min_max_result.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__algorithm/ranges_adjacent_find.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__algorithm/ranges_all_of.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__algorithm/ranges_any_of.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__algorithm/ranges_binary_search.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__algorithm/ranges_clamp.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__algorithm/ranges_contains.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__algorithm/ranges_find.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__algorithm/ranges_find_if.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__algorithm/ranges_copy.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__algorithm/ranges_copy_backward.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__algorithm/ranges_copy_if.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__algorithm/ranges_copy_n.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__algorithm/ranges_count.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__algorithm/ranges_count_if.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__algorithm/ranges_equal.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__algorithm/ranges_equal_range.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__algorithm/ranges_fill.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__algorithm/ranges_fill_n.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__algorithm/ranges_find_end.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__algorithm/ranges_find_first_of.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__algorithm/ranges_find_if_not.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__algorithm/ranges_for_each.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__algorithm/ranges_for_each_n.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__algorithm/ranges_generate.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__algorithm/ranges_generate_n.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__algorithm/ranges_includes.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__algorithm/ranges_inplace_merge.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__algorithm/ranges_is_heap.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__algorithm/ranges_is_heap_until.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__algorithm/ranges_is_partitioned.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__algorithm/ranges_is_permutation.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__algorithm/ranges_is_sorted.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__algorithm/ranges_is_sorted_until.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__algorithm/ranges_lexicographical_compare.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__algorithm/ranges_lower_bound.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__algorithm/ranges_make_heap.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__algorithm/ranges_max.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__algorithm/ranges_min_element.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__algorithm/ranges_max_element.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__algorithm/ranges_merge.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__algorithm/ranges_min.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__algorithm/ranges_minmax.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__algorithm/ranges_minmax_element.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__algorithm/ranges_mismatch.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__algorithm/ranges_move.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__algorithm/ranges_move_backward.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__algorithm/ranges_next_permutation.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__algorithm/ranges_none_of.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__algorithm/ranges_nth_element.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__algorithm/ranges_partial_sort.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__algorithm/ranges_partial_sort_copy.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__algorithm/ranges_partition.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__algorithm/ranges_partition_copy.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__algorithm/ranges_partition_point.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__algorithm/ranges_pop_heap.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__algorithm/ranges_prev_permutation.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__algorithm/ranges_push_heap.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__algorithm/ranges_remove.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__algorithm/ranges_remove_if.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__algorithm/ranges_remove_copy.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__algorithm/ranges_remove_copy_if.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__algorithm/ranges_replace.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__algorithm/ranges_replace_if.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__algorithm/ranges_replace_copy.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__algorithm/ranges_replace_copy_if.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__algorithm/ranges_reverse.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__algorithm/ranges_reverse_copy.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__algorithm/ranges_rotate.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__algorithm/ranges_rotate_copy.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__algorithm/ranges_sample.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__algorithm/uniform_random_bit_generator_adaptor.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__random/uniform_random_bit_generator.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__algorithm/ranges_search.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__algorithm/ranges_search_n.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__algorithm/ranges_set_difference.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__algorithm/ranges_set_intersection.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__algorithm/ranges_set_symmetric_difference.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__algorithm/ranges_set_union.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__algorithm/ranges_shuffle.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__algorithm/ranges_sort.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__algorithm/ranges_sort_heap.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__algorithm/ranges_stable_partition.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__algorithm/ranges_stable_sort.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__algorithm/ranges_swap_ranges.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__algorithm/ranges_transform.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__algorithm/ranges_unique.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__algorithm/ranges_unique_copy.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__algorithm/ranges_upper_bound.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__algorithm/shift_left.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__algorithm/shift_right.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/bit \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__bit/bit_ceil.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__bit/bit_floor.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__bit/bit_log2.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__bit/bit_width.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__bit/endian.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__bit/has_single_bit.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__system_error/error_condition.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/bitset \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__bit_reference \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__type_traits/is_char_like_type.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/ios \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__locale \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__locale_dir/locale_base_api.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/xlocale.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/_xlocale.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/_locale.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/_types/_locale_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/__xlocale.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/_mb_cur_max.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/xlocale/_ctype.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/xlocale/___wctype.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/xlocale/_stdio.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/xlocale/_stdlib.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/xlocale/_string.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/xlocale/_time.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/xlocale/_wchar.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/xlocale/_wctype.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__mutex/once_flag.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__utility/no_destroy.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__utility/private_constructor_tag.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/clocale \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/locale.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/locale.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__system_error/system_error.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/mutex \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__condition_variable/condition_variable.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__mutex/mutex.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__mutex/unique_lock.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__mutex/tag_types.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__mutex/lock_guard.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__thread/id.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/system_error \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/locale \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/streambuf \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/nl_types.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/types.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_u_char.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_u_short.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_u_int.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_caddr_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_blkcnt_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_blksize_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_gid_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_in_addr_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_in_port_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_ino_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_ino64_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_key_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_nlink_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_useconds_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_suseconds_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_rsize_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_errno_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_fd_def.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_fd_setsize.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_fd_set.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_fd_clr.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_fd_zero.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_fd_isset.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_fd_copy.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_fsblkcnt_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_fsfilcnt_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/_types/_nl_item.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__locale_dir/locale_base_api/bsd_locale_defaults.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/cstdarg \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/format \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__format/buffer.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__format/concepts.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__format/format_parse_context.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__format/format_error.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__fwd/format.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__format/format_to_n_result.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__format/container_adaptor.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__format/formatter.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__format/range_default_formatter.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__chrono/statically_widen.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__format/range_formatter.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__format/format_context.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__format/format_arg.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__format/format_arg_store.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__format/format_args.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__format/formatter_output.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__format/parser_std_format_spec.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__format/format_string.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__format/unicode.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__format/extended_grapheme_cluster_table.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__format/indic_conjunct_break_table.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__format/width_estimation_table.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__fwd/queue.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__fwd/deque.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__fwd/vector.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__fwd/stack.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__ranges/ref_view.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__format/escaped_output_table.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__format/format_functions.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__format/formatter_bool.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__format/formatter_integral.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__charconv/to_chars_integral.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__charconv/tables.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__charconv/to_chars_base_10.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__charconv/to_chars_result.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__charconv/traits.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__type_traits/make_32_64_or_128_bit.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/array \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__utility/empty.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__format/formatter_char.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__format/write_escaped.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__format/formatter_floating_point.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__charconv/chars_format.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__utility/to_underlying.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__charconv/to_chars_floating_point.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__format/formatter_integer.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__format/formatter_pointer.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__format/formatter_string.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__format/formatter_tuple.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/queue \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/deque \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__memory/temp_value.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__split_buffer \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/functional \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__functional/binary_negate.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__functional/bind.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__functional/binder1st.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__functional/binder2nd.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__functional/mem_fn.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__functional/mem_fun_ref.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__functional/pointer_to_binary_function.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__functional/pointer_to_unary_function.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__functional/unary_negate.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__functional/function.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__memory/builtin_new_allocator.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__type_traits/strip_signature.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__functional/boyer_moore_searcher.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/unordered_map \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__functional/is_transparent.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__hash_table \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__type_traits/can_extract_key.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__type_traits/remove_const_ref.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__iterator/erase_if_container.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__iterator/ranges_iterator_traits.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__node_handle \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/vector \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__functional/default_searcher.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__functional/not_fn.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__functional/perfect_forward.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__functional/bind_back.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__functional/bind_front.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/stack \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/print \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/unistd.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/set \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__tree \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/sstream \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/istream \ + /Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-src/googletest/include/gtest/gtest-assertion-result.h \ + /Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-src/googletest/include/gtest/gtest-message.h \ + /Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-src/googletest/include/gtest/internal/gtest-port.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/iostream \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/stat.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_s_ifmt.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_filesec_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/AvailabilityMacros.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/TargetConditionals.h \ + /Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-src/googletest/include/gtest/internal/custom/gtest-port.h \ + /Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-src/googletest/include/gtest/internal/gtest-port-arch.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/strings.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/unistd.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_posix_vdisable.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/select.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_select.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_uuid_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/gethostuuid.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/regex.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/_regex.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/xlocale/_regex.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/condition_variable \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__stop_token/stop_callback.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__stop_token/intrusive_shared_ptr.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__stop_token/stop_state.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__stop_token/atomic_unique_lock.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__stop_token/intrusive_list_view.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__stop_token/stop_token.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/any \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/span \ + /Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-src/googletest/include/gtest/gtest-death-test.h \ + /Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-src/googletest/include/gtest/internal/gtest-death-test-internal.h \ + /Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-src/googletest/include/gtest/gtest-matchers.h \ + /Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-src/googletest/include/gtest/gtest-printers.h \ + /Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-src/googletest/include/gtest/internal/gtest-internal.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/float.h \ + /Library/Developer/CommandLineTools/usr/lib/clang/17/include/float.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/float.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/map \ + /Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-src/googletest/include/gtest/internal/gtest-filepath.h \ + /Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-src/googletest/include/gtest/internal/gtest-string.h \ + /Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-src/googletest/include/gtest/internal/gtest-type-util.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/cxxabi.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__cxxabi_config.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__fwd/span.h \ + /Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-src/googletest/include/gtest/internal/custom/gtest-printers.h \ + /Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-src/googletest/include/gtest/gtest-param-test.h \ + /Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-src/googletest/include/gtest/internal/gtest-param-util.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/cassert \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/assert.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/_assert.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/_static_assert.h \ + /Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-src/googletest/include/gtest/gtest-test-part.h \ + /Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-src/googletest/include/gtest/gtest-typed-test.h \ + /Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-src/googletest/include/gtest/gtest_pred_impl.h \ + /Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-src/googletest/include/gtest/gtest_prod.h \ + /Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-src/googletest/src/gtest-assertion-result.cc \ + /Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-src/googletest/src/gtest-death-test.cc \ + /Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-src/googletest/include/gtest/internal/custom/gtest.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/crt_externs.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/fcntl.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/fcntl.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_o_sync.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_o_dsync.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/mman.h \ + /Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-src/googletest/src/gtest-internal-inl.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/arpa/inet.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/netinet/in.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/socket.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/constrained_ctypes.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/machine/_param.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/arm/_param.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/net/net_kev.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_sa_family_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_socklen_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_iovec_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/netinet6/in6.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/netdb.h \ + /Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-src/googletest/include/gtest/gtest-spi.h \ + /Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-src/googletest/src/gtest-filepath.cc \ + /Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-src/googletest/src/gtest-matchers.cc \ + /Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-src/googletest/src/gtest-port.cc \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/fstream \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/filesystem \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__filesystem/copy_options.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__filesystem/directory_entry.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__filesystem/file_status.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__filesystem/file_type.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__filesystem/perms.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__filesystem/file_time_type.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__chrono/file_clock.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__filesystem/filesystem_error.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__filesystem/path.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/iomanip \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__filesystem/operations.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__filesystem/perm_options.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__filesystem/space_info.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__filesystem/directory_iterator.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__filesystem/directory_options.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__filesystem/path_iterator.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__filesystem/recursive_directory_iterator.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__filesystem/u8path.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/mach/mach_init.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/mach/mach_types.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/mach/host_info.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/mach/message.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/mach/port.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/mach/boolean.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/mach/machine/boolean.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/mach/arm/boolean.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/mach/machine/vm_types.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/mach/arm/vm_types.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/mach/kern_return.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/mach/machine/kern_return.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/mach/arm/kern_return.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/mach/vm_statistics.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/stdbool.h \ + /Library/Developer/CommandLineTools/usr/lib/clang/17/include/stdbool.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/mach/machine.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/mach/time_value.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/mach/host_notify.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/mach/host_special_ports.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/mach/memory_object_types.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/mach/vm_prot.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/mach/vm_sync.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/mach/vm_types.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/mach/exception_types.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/mach/machine/exception.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/mach/arm/exception.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/mach/thread_status.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/mach/machine/thread_status.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/mach/arm/thread_status.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/mach/machine/thread_state.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/mach/arm/thread_state.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/mach_debug/ipc_info.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/mach/mach_voucher_types.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/mach/std_types.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/mach/processor_info.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/mach/machine/processor_info.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/mach/arm/processor_info.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/mach/task_info.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/mach/policy.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/mach/task_inspect.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/mach/task_policy.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/mach/task_special_ports.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/mach/thread_info.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/mach/thread_policy.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/mach/thread_special_ports.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/mach/clock_types.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/mach/vm_attributes.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/mach/vm_inherit.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/mach/vm_purgable.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/mach/vm_behavior.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/mach/vm_region.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/mach/machine/vm_param.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/mach/arm/vm_param.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/mach/vm_page_size.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/mach/kmod.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/mach/dyld_kernel.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_fsid_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_fsobj_id_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/mach/mach_traps.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/mach/task.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/mach/ndr.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/libkern/OSByteOrder.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/libkern/arm/OSByteOrder.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_os_inline.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/arm/arch.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/mach/notify.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/mach/mig_errors.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/mach/mig.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/mach/mig_strncpy_zerofill_support.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/mach_debug/mach_debug_types.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/mach_debug/vm_info.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/mach_debug/zone_info.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/mach_debug/page_info.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/mach_debug/hash_info.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/mach_debug/lockgroup_info.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/mach/vm_map.h \ + /Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-src/googletest/src/gtest-printers.cc \ + /Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-src/googletest/src/gtest-test-part.cc \ + /Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-src/googletest/src/gtest-typed-test.cc \ + /Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-src/googletest/src/gtest.cc \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/chrono \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__chrono/calendar.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__chrono/day.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__chrono/exception.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__chrono/hh_mm_ss.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__chrono/literals.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__chrono/year.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__chrono/local_info.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__chrono/month.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__chrono/month_weekday.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__chrono/weekday.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__chrono/monthday.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__chrono/sys_info.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__chrono/year_month.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__chrono/year_month_day.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__chrono/year_month_weekday.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__chrono/formatter.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__chrono/concepts.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__chrono/convert_to_tm.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__chrono/zoned_time.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__chrono/ostream.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__chrono/parser_std_format_spec.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/forward_list \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/charconv \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__charconv/from_chars_integral.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__charconv/from_chars_result.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/__charconv/to_chars.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/csignal \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/signal.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/list \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/unordered_set \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/time.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_timeval64.h diff --git a/build/_deps/googletest-build/googletest/CMakeFiles/gtest_main.dir/DependInfo.cmake b/build/_deps/googletest-build/googletest/CMakeFiles/gtest_main.dir/DependInfo.cmake new file mode 100644 index 000000000..239184509 --- /dev/null +++ b/build/_deps/googletest-build/googletest/CMakeFiles/gtest_main.dir/DependInfo.cmake @@ -0,0 +1,23 @@ + +# 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 + "/Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-src/googletest/src/gtest_main.cc" "_deps/googletest-build/googletest/CMakeFiles/gtest_main.dir/src/gtest_main.cc.o" "gcc" "_deps/googletest-build/googletest/CMakeFiles/gtest_main.dir/src/gtest_main.cc.o.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/_deps/googletest-build/googletest/CMakeFiles/gtest_main.dir/build.make b/build/_deps/googletest-build/googletest/CMakeFiles/gtest_main.dir/build.make new file mode 100644 index 000000000..fca4b2111 --- /dev/null +++ b/build/_deps/googletest-build/googletest/CMakeFiles/gtest_main.dir/build.make @@ -0,0 +1,114 @@ +# 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 = /opt/homebrew/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/graf/Documents/GitHub/qubic-core/core + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/graf/Documents/GitHub/qubic-core/core/build + +# Include any dependencies generated for this target. +include _deps/googletest-build/googletest/CMakeFiles/gtest_main.dir/depend.make +# Include any dependencies generated by the compiler for this target. +include _deps/googletest-build/googletest/CMakeFiles/gtest_main.dir/compiler_depend.make + +# Include the progress variables for this target. +include _deps/googletest-build/googletest/CMakeFiles/gtest_main.dir/progress.make + +# Include the compile flags for this target's objects. +include _deps/googletest-build/googletest/CMakeFiles/gtest_main.dir/flags.make + +_deps/googletest-build/googletest/CMakeFiles/gtest_main.dir/codegen: +.PHONY : _deps/googletest-build/googletest/CMakeFiles/gtest_main.dir/codegen + +_deps/googletest-build/googletest/CMakeFiles/gtest_main.dir/src/gtest_main.cc.o: _deps/googletest-build/googletest/CMakeFiles/gtest_main.dir/flags.make +_deps/googletest-build/googletest/CMakeFiles/gtest_main.dir/src/gtest_main.cc.o: _deps/googletest-src/googletest/src/gtest_main.cc +_deps/googletest-build/googletest/CMakeFiles/gtest_main.dir/src/gtest_main.cc.o: _deps/googletest-build/googletest/CMakeFiles/gtest_main.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/graf/Documents/GitHub/qubic-core/core/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object _deps/googletest-build/googletest/CMakeFiles/gtest_main.dir/src/gtest_main.cc.o" + cd /Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-build/googletest && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT _deps/googletest-build/googletest/CMakeFiles/gtest_main.dir/src/gtest_main.cc.o -MF CMakeFiles/gtest_main.dir/src/gtest_main.cc.o.d -o CMakeFiles/gtest_main.dir/src/gtest_main.cc.o -c /Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-src/googletest/src/gtest_main.cc + +_deps/googletest-build/googletest/CMakeFiles/gtest_main.dir/src/gtest_main.cc.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/gtest_main.dir/src/gtest_main.cc.i" + cd /Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-build/googletest && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-src/googletest/src/gtest_main.cc > CMakeFiles/gtest_main.dir/src/gtest_main.cc.i + +_deps/googletest-build/googletest/CMakeFiles/gtest_main.dir/src/gtest_main.cc.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/gtest_main.dir/src/gtest_main.cc.s" + cd /Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-build/googletest && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-src/googletest/src/gtest_main.cc -o CMakeFiles/gtest_main.dir/src/gtest_main.cc.s + +# Object files for target gtest_main +gtest_main_OBJECTS = \ +"CMakeFiles/gtest_main.dir/src/gtest_main.cc.o" + +# External object files for target gtest_main +gtest_main_EXTERNAL_OBJECTS = + +lib/libgtest_main.a: _deps/googletest-build/googletest/CMakeFiles/gtest_main.dir/src/gtest_main.cc.o +lib/libgtest_main.a: _deps/googletest-build/googletest/CMakeFiles/gtest_main.dir/build.make +lib/libgtest_main.a: _deps/googletest-build/googletest/CMakeFiles/gtest_main.dir/link.txt + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --bold --progress-dir=/Users/graf/Documents/GitHub/qubic-core/core/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Linking CXX static library ../../../lib/libgtest_main.a" + cd /Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-build/googletest && $(CMAKE_COMMAND) -P CMakeFiles/gtest_main.dir/cmake_clean_target.cmake + cd /Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-build/googletest && $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/gtest_main.dir/link.txt --verbose=$(VERBOSE) + +# Rule to build all files generated by this target. +_deps/googletest-build/googletest/CMakeFiles/gtest_main.dir/build: lib/libgtest_main.a +.PHONY : _deps/googletest-build/googletest/CMakeFiles/gtest_main.dir/build + +_deps/googletest-build/googletest/CMakeFiles/gtest_main.dir/clean: + cd /Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-build/googletest && $(CMAKE_COMMAND) -P CMakeFiles/gtest_main.dir/cmake_clean.cmake +.PHONY : _deps/googletest-build/googletest/CMakeFiles/gtest_main.dir/clean + +_deps/googletest-build/googletest/CMakeFiles/gtest_main.dir/depend: + cd /Users/graf/Documents/GitHub/qubic-core/core/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/graf/Documents/GitHub/qubic-core/core /Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-src/googletest /Users/graf/Documents/GitHub/qubic-core/core/build /Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-build/googletest /Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-build/googletest/CMakeFiles/gtest_main.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : _deps/googletest-build/googletest/CMakeFiles/gtest_main.dir/depend + diff --git a/build/_deps/googletest-build/googletest/CMakeFiles/gtest_main.dir/cmake_clean.cmake b/build/_deps/googletest-build/googletest/CMakeFiles/gtest_main.dir/cmake_clean.cmake new file mode 100644 index 000000000..d2f799e57 --- /dev/null +++ b/build/_deps/googletest-build/googletest/CMakeFiles/gtest_main.dir/cmake_clean.cmake @@ -0,0 +1,11 @@ +file(REMOVE_RECURSE + "../../../bin/libgtest_main.pdb" + "../../../lib/libgtest_main.a" + "CMakeFiles/gtest_main.dir/src/gtest_main.cc.o" + "CMakeFiles/gtest_main.dir/src/gtest_main.cc.o.d" +) + +# Per-language clean rules from dependency scanning. +foreach(lang CXX) + include(CMakeFiles/gtest_main.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/_deps/googletest-build/googletest/CMakeFiles/gtest_main.dir/cmake_clean_target.cmake b/build/_deps/googletest-build/googletest/CMakeFiles/gtest_main.dir/cmake_clean_target.cmake new file mode 100644 index 000000000..f09930e9f --- /dev/null +++ b/build/_deps/googletest-build/googletest/CMakeFiles/gtest_main.dir/cmake_clean_target.cmake @@ -0,0 +1,3 @@ +file(REMOVE_RECURSE + "../../../lib/libgtest_main.a" +) diff --git a/build/_deps/googletest-build/googletest/CMakeFiles/gtest_main.dir/compiler_depend.make b/build/_deps/googletest-build/googletest/CMakeFiles/gtest_main.dir/compiler_depend.make new file mode 100644 index 000000000..9a6afc065 --- /dev/null +++ b/build/_deps/googletest-build/googletest/CMakeFiles/gtest_main.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty compiler generated dependencies file for gtest_main. +# This may be replaced when dependencies are built. diff --git a/build/_deps/googletest-build/googletest/CMakeFiles/gtest_main.dir/compiler_depend.ts b/build/_deps/googletest-build/googletest/CMakeFiles/gtest_main.dir/compiler_depend.ts new file mode 100644 index 000000000..033891a80 --- /dev/null +++ b/build/_deps/googletest-build/googletest/CMakeFiles/gtest_main.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for compiler generated dependencies management for gtest_main. diff --git a/build/_deps/googletest-build/googletest/CMakeFiles/gtest_main.dir/depend.make b/build/_deps/googletest-build/googletest/CMakeFiles/gtest_main.dir/depend.make new file mode 100644 index 000000000..1d67c1ab5 --- /dev/null +++ b/build/_deps/googletest-build/googletest/CMakeFiles/gtest_main.dir/depend.make @@ -0,0 +1,2 @@ +# Empty dependencies file for gtest_main. +# This may be replaced when dependencies are built. diff --git a/build/_deps/googletest-build/googletest/CMakeFiles/gtest_main.dir/flags.make b/build/_deps/googletest-build/googletest/CMakeFiles/gtest_main.dir/flags.make new file mode 100644 index 000000000..ab6a766ef --- /dev/null +++ b/build/_deps/googletest-build/googletest/CMakeFiles/gtest_main.dir/flags.make @@ -0,0 +1,12 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 4.1 + +# compile CXX with /usr/bin/c++ +CXX_DEFINES = + +CXX_INCLUDES = -isystem /Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-src/googletest/include -isystem /Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-src/googletest + +CXX_FLAGSarm64 = -std=c++20 -arch arm64 -DGTEST_HAS_PTHREAD=1 + +CXX_FLAGS = -std=c++20 -arch arm64 -DGTEST_HAS_PTHREAD=1 + diff --git a/build/_deps/googletest-build/googletest/CMakeFiles/gtest_main.dir/link.txt b/build/_deps/googletest-build/googletest/CMakeFiles/gtest_main.dir/link.txt new file mode 100644 index 000000000..792baf71b --- /dev/null +++ b/build/_deps/googletest-build/googletest/CMakeFiles/gtest_main.dir/link.txt @@ -0,0 +1,2 @@ +/usr/bin/ar qc ../../../lib/libgtest_main.a CMakeFiles/gtest_main.dir/src/gtest_main.cc.o +/usr/bin/ranlib ../../../lib/libgtest_main.a diff --git a/build/_deps/googletest-build/googletest/CMakeFiles/gtest_main.dir/progress.make b/build/_deps/googletest-build/googletest/CMakeFiles/gtest_main.dir/progress.make new file mode 100644 index 000000000..17875e323 --- /dev/null +++ b/build/_deps/googletest-build/googletest/CMakeFiles/gtest_main.dir/progress.make @@ -0,0 +1,3 @@ +CMAKE_PROGRESS_1 = 10 +CMAKE_PROGRESS_2 = 11 + diff --git a/build/_deps/googletest-build/googletest/CMakeFiles/progress.marks b/build/_deps/googletest-build/googletest/CMakeFiles/progress.marks new file mode 100644 index 000000000..b8626c4cf --- /dev/null +++ b/build/_deps/googletest-build/googletest/CMakeFiles/progress.marks @@ -0,0 +1 @@ +4 diff --git a/build/_deps/googletest-build/googletest/CTestTestfile.cmake b/build/_deps/googletest-build/googletest/CTestTestfile.cmake new file mode 100644 index 000000000..da766f0f3 --- /dev/null +++ b/build/_deps/googletest-build/googletest/CTestTestfile.cmake @@ -0,0 +1,6 @@ +# CMake generated Testfile for +# Source directory: /Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-src/googletest +# Build directory: /Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-build/googletest +# +# This file includes the relevant testing commands required for +# testing this directory and lists subdirectories to be tested as well. diff --git a/build/_deps/googletest-build/googletest/Makefile b/build/_deps/googletest-build/googletest/Makefile new file mode 100644 index 000000000..24e379c79 --- /dev/null +++ b/build/_deps/googletest-build/googletest/Makefile @@ -0,0 +1,284 @@ +# 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 = /opt/homebrew/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/graf/Documents/GitHub/qubic-core/core + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/graf/Documents/GitHub/qubic-core/core/build + +#============================================================================= +# Targets provided globally by CMake. + +# Special rule for the target test +test: + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running tests..." + /opt/homebrew/bin/ctest $(ARGS) +.PHONY : test + +# Special rule for the target test +test/fast: test +.PHONY : test/fast + +# Special rule for the target edit_cache +edit_cache: + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running CMake cache editor..." + /opt/homebrew/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..." + /opt/homebrew/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 + +# Special rule for the target list_install_components +list_install_components: + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Available install components are: \"Unspecified\" \"gmock\" \"gtest\"" +.PHONY : list_install_components + +# Special rule for the target list_install_components +list_install_components/fast: list_install_components +.PHONY : list_install_components/fast + +# Special rule for the target install +install: preinstall + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Install the project..." + /opt/homebrew/bin/cmake -P cmake_install.cmake +.PHONY : install + +# Special rule for the target install +install/fast: preinstall/fast + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Install the project..." + /opt/homebrew/bin/cmake -P cmake_install.cmake +.PHONY : install/fast + +# Special rule for the target install/local +install/local: preinstall + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing only the local directory..." + /opt/homebrew/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake +.PHONY : install/local + +# Special rule for the target install/local +install/local/fast: preinstall/fast + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing only the local directory..." + /opt/homebrew/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake +.PHONY : install/local/fast + +# Special rule for the target install/strip +install/strip: preinstall + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing the project stripped..." + /opt/homebrew/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake +.PHONY : install/strip + +# Special rule for the target install/strip +install/strip/fast: preinstall/fast + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing the project stripped..." + /opt/homebrew/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake +.PHONY : install/strip/fast + +# The main all target +all: cmake_check_build_system + cd /Users/graf/Documents/GitHub/qubic-core/core/build && $(CMAKE_COMMAND) -E cmake_progress_start /Users/graf/Documents/GitHub/qubic-core/core/build/CMakeFiles /Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-build/googletest//CMakeFiles/progress.marks + cd /Users/graf/Documents/GitHub/qubic-core/core/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/googletest-build/googletest/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/graf/Documents/GitHub/qubic-core/core/build/CMakeFiles 0 +.PHONY : all + +# The main clean target +clean: + cd /Users/graf/Documents/GitHub/qubic-core/core/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/googletest-build/googletest/clean +.PHONY : clean + +# The main clean target +clean/fast: clean +.PHONY : clean/fast + +# Prepare targets for installation. +preinstall: all + cd /Users/graf/Documents/GitHub/qubic-core/core/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/googletest-build/googletest/preinstall +.PHONY : preinstall + +# Prepare targets for installation. +preinstall/fast: + cd /Users/graf/Documents/GitHub/qubic-core/core/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/googletest-build/googletest/preinstall +.PHONY : preinstall/fast + +# clear depends +depend: + cd /Users/graf/Documents/GitHub/qubic-core/core/build && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1 +.PHONY : depend + +# Convenience name for target. +_deps/googletest-build/googletest/CMakeFiles/gtest.dir/rule: + cd /Users/graf/Documents/GitHub/qubic-core/core/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/googletest-build/googletest/CMakeFiles/gtest.dir/rule +.PHONY : _deps/googletest-build/googletest/CMakeFiles/gtest.dir/rule + +# Convenience name for target. +gtest: _deps/googletest-build/googletest/CMakeFiles/gtest.dir/rule +.PHONY : gtest + +# fast build rule for target. +gtest/fast: + cd /Users/graf/Documents/GitHub/qubic-core/core/build && $(MAKE) $(MAKESILENT) -f _deps/googletest-build/googletest/CMakeFiles/gtest.dir/build.make _deps/googletest-build/googletest/CMakeFiles/gtest.dir/build +.PHONY : gtest/fast + +# Convenience name for target. +_deps/googletest-build/googletest/CMakeFiles/gtest_main.dir/rule: + cd /Users/graf/Documents/GitHub/qubic-core/core/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/googletest-build/googletest/CMakeFiles/gtest_main.dir/rule +.PHONY : _deps/googletest-build/googletest/CMakeFiles/gtest_main.dir/rule + +# Convenience name for target. +gtest_main: _deps/googletest-build/googletest/CMakeFiles/gtest_main.dir/rule +.PHONY : gtest_main + +# fast build rule for target. +gtest_main/fast: + cd /Users/graf/Documents/GitHub/qubic-core/core/build && $(MAKE) $(MAKESILENT) -f _deps/googletest-build/googletest/CMakeFiles/gtest_main.dir/build.make _deps/googletest-build/googletest/CMakeFiles/gtest_main.dir/build +.PHONY : gtest_main/fast + +src/gtest-all.o: src/gtest-all.cc.o +.PHONY : src/gtest-all.o + +# target to build an object file +src/gtest-all.cc.o: + cd /Users/graf/Documents/GitHub/qubic-core/core/build && $(MAKE) $(MAKESILENT) -f _deps/googletest-build/googletest/CMakeFiles/gtest.dir/build.make _deps/googletest-build/googletest/CMakeFiles/gtest.dir/src/gtest-all.cc.o +.PHONY : src/gtest-all.cc.o + +src/gtest-all.i: src/gtest-all.cc.i +.PHONY : src/gtest-all.i + +# target to preprocess a source file +src/gtest-all.cc.i: + cd /Users/graf/Documents/GitHub/qubic-core/core/build && $(MAKE) $(MAKESILENT) -f _deps/googletest-build/googletest/CMakeFiles/gtest.dir/build.make _deps/googletest-build/googletest/CMakeFiles/gtest.dir/src/gtest-all.cc.i +.PHONY : src/gtest-all.cc.i + +src/gtest-all.s: src/gtest-all.cc.s +.PHONY : src/gtest-all.s + +# target to generate assembly for a file +src/gtest-all.cc.s: + cd /Users/graf/Documents/GitHub/qubic-core/core/build && $(MAKE) $(MAKESILENT) -f _deps/googletest-build/googletest/CMakeFiles/gtest.dir/build.make _deps/googletest-build/googletest/CMakeFiles/gtest.dir/src/gtest-all.cc.s +.PHONY : src/gtest-all.cc.s + +src/gtest_main.o: src/gtest_main.cc.o +.PHONY : src/gtest_main.o + +# target to build an object file +src/gtest_main.cc.o: + cd /Users/graf/Documents/GitHub/qubic-core/core/build && $(MAKE) $(MAKESILENT) -f _deps/googletest-build/googletest/CMakeFiles/gtest_main.dir/build.make _deps/googletest-build/googletest/CMakeFiles/gtest_main.dir/src/gtest_main.cc.o +.PHONY : src/gtest_main.cc.o + +src/gtest_main.i: src/gtest_main.cc.i +.PHONY : src/gtest_main.i + +# target to preprocess a source file +src/gtest_main.cc.i: + cd /Users/graf/Documents/GitHub/qubic-core/core/build && $(MAKE) $(MAKESILENT) -f _deps/googletest-build/googletest/CMakeFiles/gtest_main.dir/build.make _deps/googletest-build/googletest/CMakeFiles/gtest_main.dir/src/gtest_main.cc.i +.PHONY : src/gtest_main.cc.i + +src/gtest_main.s: src/gtest_main.cc.s +.PHONY : src/gtest_main.s + +# target to generate assembly for a file +src/gtest_main.cc.s: + cd /Users/graf/Documents/GitHub/qubic-core/core/build && $(MAKE) $(MAKESILENT) -f _deps/googletest-build/googletest/CMakeFiles/gtest_main.dir/build.make _deps/googletest-build/googletest/CMakeFiles/gtest_main.dir/src/gtest_main.cc.s +.PHONY : src/gtest_main.cc.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 "... install" + @echo "... install/local" + @echo "... install/strip" + @echo "... list_install_components" + @echo "... rebuild_cache" + @echo "... test" + @echo "... gtest" + @echo "... gtest_main" + @echo "... src/gtest-all.o" + @echo "... src/gtest-all.i" + @echo "... src/gtest-all.s" + @echo "... src/gtest_main.o" + @echo "... src/gtest_main.i" + @echo "... src/gtest_main.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: + cd /Users/graf/Documents/GitHub/qubic-core/core/build && $(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/_deps/googletest-build/googletest/cmake_install.cmake b/build/_deps/googletest-build/googletest/cmake_install.cmake new file mode 100644 index 000000000..980769fa5 --- /dev/null +++ b/build/_deps/googletest-build/googletest/cmake_install.cmake @@ -0,0 +1,103 @@ +# Install script for directory: /Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-src/googletest + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "Release") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "FALSE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/usr/bin/objdump") +endif() + +if(CMAKE_INSTALL_COMPONENT STREQUAL "gtest" OR NOT CMAKE_INSTALL_COMPONENT) + if(EXISTS "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/cmake/GTest/GTestTargets.cmake") + file(DIFFERENT _cmake_export_file_changed FILES + "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/cmake/GTest/GTestTargets.cmake" + "/Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-build/googletest/CMakeFiles/Export/0c08b8e77dd885bfe55a19a9659d9fc1/GTestTargets.cmake") + if(_cmake_export_file_changed) + file(GLOB _cmake_old_config_files "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/cmake/GTest/GTestTargets-*.cmake") + if(_cmake_old_config_files) + string(REPLACE ";" ", " _cmake_old_config_files_text "${_cmake_old_config_files}") + message(STATUS "Old export file \"$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/cmake/GTest/GTestTargets.cmake\" will be replaced. Removing files [${_cmake_old_config_files_text}].") + unset(_cmake_old_config_files_text) + file(REMOVE ${_cmake_old_config_files}) + endif() + unset(_cmake_old_config_files) + endif() + unset(_cmake_export_file_changed) + endif() + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/lib/cmake/GTest" TYPE FILE FILES "/Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-build/googletest/CMakeFiles/Export/0c08b8e77dd885bfe55a19a9659d9fc1/GTestTargets.cmake") + if(CMAKE_INSTALL_CONFIG_NAME MATCHES "^([Rr][Ee][Ll][Ee][Aa][Ss][Ee])$") + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/lib/cmake/GTest" TYPE FILE FILES "/Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-build/googletest/CMakeFiles/Export/0c08b8e77dd885bfe55a19a9659d9fc1/GTestTargets-release.cmake") + endif() +endif() + +if(CMAKE_INSTALL_COMPONENT STREQUAL "gtest" OR NOT CMAKE_INSTALL_COMPONENT) + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/lib/cmake/GTest" TYPE FILE FILES + "/Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-build/googletest/generated/GTestConfigVersion.cmake" + "/Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-build/googletest/generated/GTestConfig.cmake" + ) +endif() + +if(CMAKE_INSTALL_COMPONENT STREQUAL "gtest" OR NOT CMAKE_INSTALL_COMPONENT) + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/include" TYPE DIRECTORY FILES "/Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-src/googletest/include/") +endif() + +if(CMAKE_INSTALL_COMPONENT STREQUAL "gtest" OR NOT CMAKE_INSTALL_COMPONENT) + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/lib" TYPE STATIC_LIBRARY FILES "/Users/graf/Documents/GitHub/qubic-core/core/build/lib/libgtest.a") + if(EXISTS "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/libgtest.a" AND + NOT IS_SYMLINK "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/libgtest.a") + execute_process(COMMAND "/usr/bin/ranlib" "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/libgtest.a") + endif() +endif() + +if(CMAKE_INSTALL_COMPONENT STREQUAL "gtest" OR NOT CMAKE_INSTALL_COMPONENT) + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/lib" TYPE STATIC_LIBRARY FILES "/Users/graf/Documents/GitHub/qubic-core/core/build/lib/libgtest_main.a") + if(EXISTS "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/libgtest_main.a" AND + NOT IS_SYMLINK "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/libgtest_main.a") + execute_process(COMMAND "/usr/bin/ranlib" "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/libgtest_main.a") + endif() +endif() + +if(CMAKE_INSTALL_COMPONENT STREQUAL "gtest" OR NOT CMAKE_INSTALL_COMPONENT) + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/lib/pkgconfig" TYPE FILE FILES "/Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-build/googletest/generated/gtest.pc") +endif() + +if(CMAKE_INSTALL_COMPONENT STREQUAL "gtest" OR NOT CMAKE_INSTALL_COMPONENT) + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/lib/pkgconfig" TYPE FILE FILES "/Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-build/googletest/generated/gtest_main.pc") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "/Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-build/googletest/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/_deps/googletest-build/googletest/generated/GTestConfig.cmake b/build/_deps/googletest-build/googletest/generated/GTestConfig.cmake new file mode 100644 index 000000000..9ab9a5efc --- /dev/null +++ b/build/_deps/googletest-build/googletest/generated/GTestConfig.cmake @@ -0,0 +1,37 @@ + +####### Expanded from @PACKAGE_INIT@ by configure_package_config_file() ####### +####### Any changes to this file will be overwritten by the next CMake run #### +####### The input file was Config.cmake.in ######## + +get_filename_component(PACKAGE_PREFIX_DIR "${CMAKE_CURRENT_LIST_DIR}/../../../" ABSOLUTE) + +macro(set_and_check _var _file) + set(${_var} "${_file}") + if(NOT EXISTS "${_file}") + message(FATAL_ERROR "File or directory ${_file} referenced by variable ${_var} does not exist !") + endif() +endmacro() + +macro(check_required_components _NAME) + foreach(comp ${${_NAME}_FIND_COMPONENTS}) + if(NOT ${_NAME}_${comp}_FOUND) + if(${_NAME}_FIND_REQUIRED_${comp}) + set(${_NAME}_FOUND FALSE) + endif() + endif() + endforeach() +endmacro() + +#################################################################################### +include(CMakeFindDependencyMacro) +if (ON) + set(THREADS_PREFER_PTHREAD_FLAG ) + find_dependency(Threads) +endif() +if (OFF) + find_dependency(absl) + find_dependency(re2) +endif() + +include("${CMAKE_CURRENT_LIST_DIR}/GTestTargets.cmake") +check_required_components("") diff --git a/build/_deps/googletest-build/googletest/generated/GTestConfigVersion.cmake b/build/_deps/googletest-build/googletest/generated/GTestConfigVersion.cmake new file mode 100644 index 000000000..18adc9e50 --- /dev/null +++ b/build/_deps/googletest-build/googletest/generated/GTestConfigVersion.cmake @@ -0,0 +1,43 @@ +# This is a basic version file for the Config-mode of find_package(). +# It is used by write_basic_package_version_file() as input file for configure_file() +# to create a version-file which can be installed along a config.cmake file. +# +# The created file sets PACKAGE_VERSION_EXACT if the current version string and +# the requested version string are exactly the same and it sets +# PACKAGE_VERSION_COMPATIBLE if the current version is >= requested version. +# The variable CVF_VERSION must be set before calling configure_file(). + +set(PACKAGE_VERSION "1.16.0") + +if (PACKAGE_FIND_VERSION_RANGE) + # Package version must be in the requested version range + if ((PACKAGE_FIND_VERSION_RANGE_MIN STREQUAL "INCLUDE" AND PACKAGE_VERSION VERSION_LESS PACKAGE_FIND_VERSION_MIN) + OR ((PACKAGE_FIND_VERSION_RANGE_MAX STREQUAL "INCLUDE" AND PACKAGE_VERSION VERSION_GREATER PACKAGE_FIND_VERSION_MAX) + OR (PACKAGE_FIND_VERSION_RANGE_MAX STREQUAL "EXCLUDE" AND PACKAGE_VERSION VERSION_GREATER_EQUAL PACKAGE_FIND_VERSION_MAX))) + set(PACKAGE_VERSION_COMPATIBLE FALSE) + else() + set(PACKAGE_VERSION_COMPATIBLE TRUE) + endif() +else() + if(PACKAGE_VERSION VERSION_LESS PACKAGE_FIND_VERSION) + set(PACKAGE_VERSION_COMPATIBLE FALSE) + else() + set(PACKAGE_VERSION_COMPATIBLE TRUE) + if(PACKAGE_FIND_VERSION STREQUAL PACKAGE_VERSION) + set(PACKAGE_VERSION_EXACT TRUE) + endif() + endif() +endif() + + +# if the installed or the using project don't have CMAKE_SIZEOF_VOID_P set, ignore it: +if("${CMAKE_SIZEOF_VOID_P}" STREQUAL "" OR "8" STREQUAL "") + return() +endif() + +# check that the installed version has the same 32/64bit-ness as the one which is currently searching: +if(NOT CMAKE_SIZEOF_VOID_P STREQUAL "8") + math(EXPR installedBits "8 * 8") + set(PACKAGE_VERSION "${PACKAGE_VERSION} (${installedBits}bit)") + set(PACKAGE_VERSION_UNSUITABLE TRUE) +endif() diff --git a/build/_deps/googletest-build/googletest/generated/gmock.pc b/build/_deps/googletest-build/googletest/generated/gmock.pc new file mode 100644 index 000000000..b1a4bf870 --- /dev/null +++ b/build/_deps/googletest-build/googletest/generated/gmock.pc @@ -0,0 +1,10 @@ +libdir=/usr/local/lib +includedir=/usr/local/include + +Name: gmock +Description: GoogleMock (without main() function) +Version: 1.16.0 +URL: https://github.com/google/googletest +Requires: gtest = 1.16.0 +Libs: -L${libdir} -lgmock +Cflags: -I${includedir} -DGTEST_HAS_PTHREAD=1 diff --git a/build/_deps/googletest-build/googletest/generated/gmock_main.pc b/build/_deps/googletest-build/googletest/generated/gmock_main.pc new file mode 100644 index 000000000..4917aa310 --- /dev/null +++ b/build/_deps/googletest-build/googletest/generated/gmock_main.pc @@ -0,0 +1,10 @@ +libdir=/usr/local/lib +includedir=/usr/local/include + +Name: gmock_main +Description: GoogleMock (with main() function) +Version: 1.16.0 +URL: https://github.com/google/googletest +Requires: gmock = 1.16.0 +Libs: -L${libdir} -lgmock_main +Cflags: -I${includedir} -DGTEST_HAS_PTHREAD=1 diff --git a/build/_deps/googletest-build/googletest/generated/gtest.pc b/build/_deps/googletest-build/googletest/generated/gtest.pc new file mode 100644 index 000000000..1bc0b70bb --- /dev/null +++ b/build/_deps/googletest-build/googletest/generated/gtest.pc @@ -0,0 +1,9 @@ +libdir=/usr/local/lib +includedir=/usr/local/include + +Name: gtest +Description: GoogleTest (without main() function) +Version: 1.16.0 +URL: https://github.com/google/googletest +Libs: -L${libdir} -lgtest +Cflags: -I${includedir} -DGTEST_HAS_PTHREAD=1 diff --git a/build/_deps/googletest-build/googletest/generated/gtest_main.pc b/build/_deps/googletest-build/googletest/generated/gtest_main.pc new file mode 100644 index 000000000..73fb5c674 --- /dev/null +++ b/build/_deps/googletest-build/googletest/generated/gtest_main.pc @@ -0,0 +1,10 @@ +libdir=/usr/local/lib +includedir=/usr/local/include + +Name: gtest_main +Description: GoogleTest (with main() function) +Version: 1.16.0 +URL: https://github.com/google/googletest +Requires: gtest = 1.16.0 +Libs: -L${libdir} -lgtest_main +Cflags: -I${includedir} -DGTEST_HAS_PTHREAD=1 diff --git a/build/_deps/googletest-src b/build/_deps/googletest-src new file mode 160000 index 000000000..6910c9d91 --- /dev/null +++ b/build/_deps/googletest-src @@ -0,0 +1 @@ +Subproject commit 6910c9d9165801d8827d628cb72eb7ea9dd538c5 diff --git a/build/_deps/googletest-subbuild/CMakeCache.txt b/build/_deps/googletest-subbuild/CMakeCache.txt new file mode 100644 index 000000000..8acea5dc0 --- /dev/null +++ b/build/_deps/googletest-subbuild/CMakeCache.txt @@ -0,0 +1,151 @@ +# This is the CMakeCache file. +# For build in directory: /Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-subbuild +# It was generated by CMake: /opt/homebrew/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 +######################## + +//Enable/Disable color output during build. +CMAKE_COLOR_MAKEFILE:BOOL=ON + +//Enable/Disable output of compile commands during generation. +CMAKE_EXPORT_COMPILE_COMMANDS:BOOL= + +//Value Computed by CMake. +CMAKE_FIND_PACKAGE_REDIRECTS_DIR:STATIC=/Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-subbuild/CMakeFiles/pkgRedirects + +//Path to a program. +CMAKE_INSTALL_NAME_TOOL:FILEPATH=/usr/bin/install_name_tool + +//Install path prefix, prepended onto install directories. +CMAKE_INSTALL_PREFIX:PATH=/usr/local + +//No help, variable specified on the command line. +CMAKE_MAKE_PROGRAM:FILEPATH=/usr/bin/make + +//Build architectures for OSX +CMAKE_OSX_ARCHITECTURES:STRING= + +//Minimum OS X version to target for deployment (at runtime); newer +// APIs weak linked. Set to empty string for default value. +CMAKE_OSX_DEPLOYMENT_TARGET:STRING= + +//The product will be built against the headers and libraries located +// inside the indicated SDK. +CMAKE_OSX_SYSROOT:STRING= + +//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=googletest-populate + +//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= + +//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 + +//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 +googletest-populate_BINARY_DIR:STATIC=/Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-subbuild + +//Value Computed by CMake +googletest-populate_IS_TOP_LEVEL:STATIC=ON + +//Value Computed by CMake +googletest-populate_SOURCE_DIR:STATIC=/Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-subbuild + + +######################## +# INTERNAL cache entries +######################## + +//This is the directory where this CMakeCache.txt was created +CMAKE_CACHEFILE_DIR:INTERNAL=/Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-subbuild +//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=/opt/homebrew/bin/cmake +//Path to cpack program executable. +CMAKE_CPACK_COMMAND:INTERNAL=/opt/homebrew/bin/cpack +//Path to ctest program executable. +CMAKE_CTEST_COMMAND:INTERNAL=/opt/homebrew/bin/ctest +//Path to cache edit program executable. +CMAKE_EDIT_COMMAND:INTERNAL=/opt/homebrew/bin/ccmake +//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=/Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-subbuild +//ADVANCED property for variable: CMAKE_INSTALL_NAME_TOOL +CMAKE_INSTALL_NAME_TOOL-ADVANCED:INTERNAL=1 +//Name of CMakeLists files to read +CMAKE_LIST_FILE_NAME:INTERNAL=CMakeLists.txt +//number of local generators +CMAKE_NUMBER_OF_MAKEFILES:INTERNAL=1 +//Platform information initialized +CMAKE_PLATFORM_INFO_INITIALIZED:INTERNAL=1 +//Path to CMake installation. +CMAKE_ROOT:INTERNAL=/opt/homebrew/share/cmake +//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 +//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/_deps/googletest-subbuild/CMakeFiles/4.1.1/CMakeSystem.cmake b/build/_deps/googletest-subbuild/CMakeFiles/4.1.1/CMakeSystem.cmake new file mode 100644 index 000000000..0c52e24fd --- /dev/null +++ b/build/_deps/googletest-subbuild/CMakeFiles/4.1.1/CMakeSystem.cmake @@ -0,0 +1,15 @@ +set(CMAKE_HOST_SYSTEM "Darwin-24.3.0") +set(CMAKE_HOST_SYSTEM_NAME "Darwin") +set(CMAKE_HOST_SYSTEM_VERSION "24.3.0") +set(CMAKE_HOST_SYSTEM_PROCESSOR "arm64") + + + +set(CMAKE_SYSTEM "Darwin-24.3.0") +set(CMAKE_SYSTEM_NAME "Darwin") +set(CMAKE_SYSTEM_VERSION "24.3.0") +set(CMAKE_SYSTEM_PROCESSOR "arm64") + +set(CMAKE_CROSSCOMPILING "FALSE") + +set(CMAKE_SYSTEM_LOADED 1) diff --git a/build/_deps/googletest-subbuild/CMakeFiles/CMakeConfigureLog.yaml b/build/_deps/googletest-subbuild/CMakeFiles/CMakeConfigureLog.yaml new file mode 100644 index 000000000..9264d77fc --- /dev/null +++ b/build/_deps/googletest-subbuild/CMakeFiles/CMakeConfigureLog.yaml @@ -0,0 +1,209 @@ + +--- +events: + - + kind: "find-v1" + backtrace: + - "/opt/homebrew/share/cmake/Modules/CMakeDetermineSystem.cmake:12 (find_program)" + - "CMakeLists.txt:16 (project)" + mode: "program" + variable: "CMAKE_UNAME" + description: "Path to a program." + settings: + SearchFramework: "FIRST" + SearchAppBundle: "FIRST" + 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: + - "/Users/graf/.nvm/versions/node/v20.19.5/bin/" + - "/opt/homebrew/opt/openjdk@17/bin/" + - "/Users/graf/Library/Python/3.9/bin/" + - "/Users/graf/Library/Python/3.x/bin/" + - "/Users/graf/Library/Application Support/Code/User/globalStorage/github.copilot-chat/debugCommand/" + - "/Users/graf/Library/Application Support/Code/User/globalStorage/github.copilot-chat/copilotCli/" + - "/opt/homebrew/bin/" + - "/opt/homebrew/sbin/" + - "/usr/local/bin/" + - "/System/Cryptexes/App/usr/bin/" + - "/usr/bin/" + - "/bin/" + - "/usr/sbin/" + - "/sbin/" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin/" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin/" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin/" + - "/Library/Apple/usr/bin/" + - "/Users/graf/.dotnet/tools/" + - "/Users/graf/.sdkman/candidates/java/current/bin/" + - "/Users/graf/.cargo/bin/" + - "/Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-subbuild/Unknown command/" + - "/Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-subbuild/ bin To see a list of supported npm commands, run/" + - "/Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-subbuild/ npm help/" + - "/Users/graf/.npm-global/bin/" + - "/Users/graf/.vscode/extensions/ms-python.debugpy-2025.18.0-darwin-arm64/bundled/scripts/noConfigScripts/" + - "/Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-subbuild/ \"bin\"\n\nTo see a list of supported npm commands, run/" + - "/Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-subbuild/\n npm help/" + searched_directories: + - "/Users/graf/.nvm/versions/node/v20.19.5/bin/uname" + - "/opt/homebrew/opt/openjdk@17/bin/uname" + - "/Users/graf/Library/Python/3.9/bin/uname" + - "/Users/graf/Library/Python/3.x/bin/uname" + - "/Users/graf/Library/Application Support/Code/User/globalStorage/github.copilot-chat/debugCommand/uname" + - "/Users/graf/Library/Application Support/Code/User/globalStorage/github.copilot-chat/copilotCli/uname" + - "/opt/homebrew/bin/uname" + - "/opt/homebrew/sbin/uname" + - "/usr/local/bin/uname" + - "/System/Cryptexes/App/usr/bin/uname" + found: "/usr/bin/uname" + search_context: + ENV{PATH}: + - "/Users/graf/.nvm/versions/node/v20.19.5/bin" + - "/opt/homebrew/opt/openjdk@17/bin" + - "/Users/graf/Library/Python/3.9/bin" + - "/Users/graf/Library/Python/3.x/bin" + - "/Users/graf/Library/Application Support/Code/User/globalStorage/github.copilot-chat/debugCommand" + - "/Users/graf/Library/Application Support/Code/User/globalStorage/github.copilot-chat/copilotCli" + - "/opt/homebrew/bin" + - "/opt/homebrew/bin" + - "/opt/homebrew/sbin" + - "/usr/local/bin" + - "/System/Cryptexes/App/usr/bin" + - "/usr/bin" + - "/bin" + - "/usr/sbin" + - "/sbin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin" + - "/Library/Apple/usr/bin" + - "~/.dotnet/tools" + - "/Users/graf/Library/Application Support/Code/User/globalStorage/github.copilot-chat/debugCommand" + - "/Users/graf/Library/Application Support/Code/User/globalStorage/github.copilot-chat/copilotCli" + - "/Users/graf/.nvm/versions/node/v20.19.5/bin" + - "/opt/homebrew/opt/openjdk@17/bin" + - "/Users/graf/.sdkman/candidates/java/current/bin" + - "/Users/graf/Library/Python/3.9/bin" + - "/Users/graf/Library/Python/3.x/bin" + - "/Users/graf/.cargo/bin" + - "Unknown command" + - " bin To see a list of supported npm commands, run" + - " npm help" + - "/Users/graf/.npm-global/bin" + - "/Users/graf/.vscode/extensions/ms-python.debugpy-2025.18.0-darwin-arm64/bundled/scripts/noConfigScripts" + - "Unknown command" + - " \"bin\"\n\nTo see a list of supported npm commands, run" + - "\n npm help" + - "/Users/graf/.npm-global/bin" + - + kind: "message-v1" + backtrace: + - "/opt/homebrew/share/cmake/Modules/CMakeDetermineSystem.cmake:212 (message)" + - "CMakeLists.txt:16 (project)" + message: | + The system is: Darwin - 24.3.0 - arm64 + - + kind: "find-v1" + backtrace: + - "/opt/homebrew/share/cmake/Modules/Platform/Darwin.cmake:76 (find_program)" + - "/opt/homebrew/share/cmake/Modules/CMakeSystemSpecificInformation.cmake:32 (include)" + - "CMakeLists.txt:16 (project)" + mode: "program" + variable: "CMAKE_INSTALL_NAME_TOOL" + description: "Path to a program." + settings: + SearchFramework: "FIRST" + SearchAppBundle: "FIRST" + 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: + - "install_name_tool" + candidate_directories: + - "/Users/graf/.nvm/versions/node/v20.19.5/bin/" + - "/opt/homebrew/opt/openjdk@17/bin/" + - "/Users/graf/Library/Python/3.9/bin/" + - "/Users/graf/Library/Python/3.x/bin/" + - "/Users/graf/Library/Application Support/Code/User/globalStorage/github.copilot-chat/debugCommand/" + - "/Users/graf/Library/Application Support/Code/User/globalStorage/github.copilot-chat/copilotCli/" + - "/opt/homebrew/bin/" + - "/opt/homebrew/sbin/" + - "/usr/local/bin/" + - "/System/Cryptexes/App/usr/bin/" + - "/usr/bin/" + - "/bin/" + - "/usr/sbin/" + - "/sbin/" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin/" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin/" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin/" + - "/Library/Apple/usr/bin/" + - "/Users/graf/.dotnet/tools/" + - "/Users/graf/.sdkman/candidates/java/current/bin/" + - "/Users/graf/.cargo/bin/" + - "/Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-subbuild/Unknown command/" + - "/Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-subbuild/ bin To see a list of supported npm commands, run/" + - "/Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-subbuild/ npm help/" + - "/Users/graf/.npm-global/bin/" + - "/Users/graf/.vscode/extensions/ms-python.debugpy-2025.18.0-darwin-arm64/bundled/scripts/noConfigScripts/" + - "/Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-subbuild/ \"bin\"\n\nTo see a list of supported npm commands, run/" + - "/Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-subbuild/\n npm help/" + searched_directories: + - "/Users/graf/.nvm/versions/node/v20.19.5/bin/install_name_tool" + - "/opt/homebrew/opt/openjdk@17/bin/install_name_tool" + - "/Users/graf/Library/Python/3.9/bin/install_name_tool" + - "/Users/graf/Library/Python/3.x/bin/install_name_tool" + - "/Users/graf/Library/Application Support/Code/User/globalStorage/github.copilot-chat/debugCommand/install_name_tool" + - "/Users/graf/Library/Application Support/Code/User/globalStorage/github.copilot-chat/copilotCli/install_name_tool" + - "/opt/homebrew/bin/install_name_tool" + - "/opt/homebrew/sbin/install_name_tool" + - "/usr/local/bin/install_name_tool" + - "/System/Cryptexes/App/usr/bin/install_name_tool" + found: "/usr/bin/install_name_tool" + search_context: + ENV{PATH}: + - "/Users/graf/.nvm/versions/node/v20.19.5/bin" + - "/opt/homebrew/opt/openjdk@17/bin" + - "/Users/graf/Library/Python/3.9/bin" + - "/Users/graf/Library/Python/3.x/bin" + - "/Users/graf/Library/Application Support/Code/User/globalStorage/github.copilot-chat/debugCommand" + - "/Users/graf/Library/Application Support/Code/User/globalStorage/github.copilot-chat/copilotCli" + - "/opt/homebrew/bin" + - "/opt/homebrew/bin" + - "/opt/homebrew/sbin" + - "/usr/local/bin" + - "/System/Cryptexes/App/usr/bin" + - "/usr/bin" + - "/bin" + - "/usr/sbin" + - "/sbin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin" + - "/Library/Apple/usr/bin" + - "~/.dotnet/tools" + - "/Users/graf/Library/Application Support/Code/User/globalStorage/github.copilot-chat/debugCommand" + - "/Users/graf/Library/Application Support/Code/User/globalStorage/github.copilot-chat/copilotCli" + - "/Users/graf/.nvm/versions/node/v20.19.5/bin" + - "/opt/homebrew/opt/openjdk@17/bin" + - "/Users/graf/.sdkman/candidates/java/current/bin" + - "/Users/graf/Library/Python/3.9/bin" + - "/Users/graf/Library/Python/3.x/bin" + - "/Users/graf/.cargo/bin" + - "Unknown command" + - " bin To see a list of supported npm commands, run" + - " npm help" + - "/Users/graf/.npm-global/bin" + - "/Users/graf/.vscode/extensions/ms-python.debugpy-2025.18.0-darwin-arm64/bundled/scripts/noConfigScripts" + - "Unknown command" + - " \"bin\"\n\nTo see a list of supported npm commands, run" + - "\n npm help" + - "/Users/graf/.npm-global/bin" + CMAKE_INSTALL_PREFIX: "/usr/local" +... diff --git a/build/_deps/googletest-subbuild/CMakeFiles/CMakeDirectoryInformation.cmake b/build/_deps/googletest-subbuild/CMakeFiles/CMakeDirectoryInformation.cmake new file mode 100644 index 000000000..251b4263f --- /dev/null +++ b/build/_deps/googletest-subbuild/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 "/Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-subbuild") +set(CMAKE_RELATIVE_PATH_TOP_BINARY "/Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-subbuild") + +# 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/_deps/googletest-subbuild/CMakeFiles/CMakeRuleHashes.txt b/build/_deps/googletest-subbuild/CMakeFiles/CMakeRuleHashes.txt new file mode 100644 index 000000000..95a12d1bf --- /dev/null +++ b/build/_deps/googletest-subbuild/CMakeFiles/CMakeRuleHashes.txt @@ -0,0 +1,11 @@ +# Hashes of file build rules. +e6969e0669de803a399c9695f9464a3d CMakeFiles/googletest-populate +e04e4c71cbd87e0224edda46395823bb CMakeFiles/googletest-populate-complete +5a48ebce686fc4deb695360b4205c88c googletest-populate-prefix/src/googletest-populate-stamp/googletest-populate-build +78832b46ebb7bf7fa0f54e9f2a2e0169 googletest-populate-prefix/src/googletest-populate-stamp/googletest-populate-configure +2ef1e6a2709cc7b1c55b11dcd1e487c3 googletest-populate-prefix/src/googletest-populate-stamp/googletest-populate-download +0b5cc0ea27e1fc4492da8772c41139c3 googletest-populate-prefix/src/googletest-populate-stamp/googletest-populate-install +f919a49a2e211b35f3a907a03bb0630b googletest-populate-prefix/src/googletest-populate-stamp/googletest-populate-mkdir +a1c766ca28f7afddd3cc2e9eb19c5a39 googletest-populate-prefix/src/googletest-populate-stamp/googletest-populate-patch +6675001c08ace37d97500500ae27520b googletest-populate-prefix/src/googletest-populate-stamp/googletest-populate-test +0c6fb596c1f99fb497c3df61f90fcb2b googletest-populate-prefix/src/googletest-populate-stamp/googletest-populate-update diff --git a/build/_deps/googletest-subbuild/CMakeFiles/InstallScripts.json b/build/_deps/googletest-subbuild/CMakeFiles/InstallScripts.json new file mode 100644 index 000000000..58dcf0764 --- /dev/null +++ b/build/_deps/googletest-subbuild/CMakeFiles/InstallScripts.json @@ -0,0 +1,7 @@ +{ + "InstallScripts" : + [ + "/Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-subbuild/cmake_install.cmake" + ], + "Parallel" : false +} diff --git a/build/_deps/googletest-subbuild/CMakeFiles/Makefile.cmake b/build/_deps/googletest-subbuild/CMakeFiles/Makefile.cmake new file mode 100644 index 000000000..a91c86b3b --- /dev/null +++ b/build/_deps/googletest-subbuild/CMakeFiles/Makefile.cmake @@ -0,0 +1,55 @@ +# 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" + "CMakeFiles/4.1.1/CMakeSystem.cmake" + "CMakeLists.txt" + "googletest-populate-prefix/tmp/googletest-populate-mkdirs.cmake" + "/opt/homebrew/share/cmake/Modules/CMakeDetermineSystem.cmake" + "/opt/homebrew/share/cmake/Modules/CMakeGenericSystem.cmake" + "/opt/homebrew/share/cmake/Modules/CMakeInitializeConfigs.cmake" + "/opt/homebrew/share/cmake/Modules/CMakeSystem.cmake.in" + "/opt/homebrew/share/cmake/Modules/CMakeSystemSpecificInformation.cmake" + "/opt/homebrew/share/cmake/Modules/CMakeSystemSpecificInitialize.cmake" + "/opt/homebrew/share/cmake/Modules/ExternalProject.cmake" + "/opt/homebrew/share/cmake/Modules/ExternalProject/PatchInfo.txt.in" + "/opt/homebrew/share/cmake/Modules/ExternalProject/RepositoryInfo.txt.in" + "/opt/homebrew/share/cmake/Modules/ExternalProject/UpdateInfo.txt.in" + "/opt/homebrew/share/cmake/Modules/ExternalProject/cfgcmd.txt.in" + "/opt/homebrew/share/cmake/Modules/ExternalProject/gitclone.cmake.in" + "/opt/homebrew/share/cmake/Modules/ExternalProject/gitupdate.cmake.in" + "/opt/homebrew/share/cmake/Modules/ExternalProject/mkdirs.cmake.in" + "/opt/homebrew/share/cmake/Modules/ExternalProject/shared_internal_commands.cmake" + "/opt/homebrew/share/cmake/Modules/Platform/Darwin-Initialize.cmake" + "/opt/homebrew/share/cmake/Modules/Platform/Darwin.cmake" + "/opt/homebrew/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/4.1.1/CMakeSystem.cmake" + "googletest-populate-prefix/tmp/googletest-populate-mkdirs.cmake" + "googletest-populate-prefix/tmp/googletest-populate-gitclone.cmake" + "googletest-populate-prefix/src/googletest-populate-stamp/googletest-populate-gitinfo.txt" + "googletest-populate-prefix/tmp/googletest-populate-gitupdate.cmake" + "googletest-populate-prefix/src/googletest-populate-stamp/googletest-populate-update-info.txt" + "googletest-populate-prefix/src/googletest-populate-stamp/googletest-populate-patch-info.txt" + "googletest-populate-prefix/tmp/googletest-populate-cfgcmd.txt" + "CMakeFiles/CMakeDirectoryInformation.cmake" + ) + +# Dependency information for all targets: +set(CMAKE_DEPEND_INFO_FILES + "CMakeFiles/googletest-populate.dir/DependInfo.cmake" + ) diff --git a/build/_deps/googletest-subbuild/CMakeFiles/Makefile2 b/build/_deps/googletest-subbuild/CMakeFiles/Makefile2 new file mode 100644 index 000000000..556b41ff0 --- /dev/null +++ b/build/_deps/googletest-subbuild/CMakeFiles/Makefile2 @@ -0,0 +1,122 @@ +# 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 = /opt/homebrew/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-subbuild + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-subbuild + +#============================================================================= +# Directory level rules for the build root directory + +# The main recursive "all" target. +all: CMakeFiles/googletest-populate.dir/all +.PHONY : all + +# The main recursive "codegen" target. +codegen: CMakeFiles/googletest-populate.dir/codegen +.PHONY : codegen + +# The main recursive "preinstall" target. +preinstall: +.PHONY : preinstall + +# The main recursive "clean" target. +clean: CMakeFiles/googletest-populate.dir/clean +.PHONY : clean + +#============================================================================= +# Target rules for target CMakeFiles/googletest-populate.dir + +# All Build rule for target. +CMakeFiles/googletest-populate.dir/all: + $(MAKE) $(MAKESILENT) -f CMakeFiles/googletest-populate.dir/build.make CMakeFiles/googletest-populate.dir/depend + $(MAKE) $(MAKESILENT) -f CMakeFiles/googletest-populate.dir/build.make CMakeFiles/googletest-populate.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-subbuild/CMakeFiles --progress-num=1,2,3,4,5,6,7,8,9 "Built target googletest-populate" +.PHONY : CMakeFiles/googletest-populate.dir/all + +# Build rule for subdir invocation for target. +CMakeFiles/googletest-populate.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-subbuild/CMakeFiles 9 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 CMakeFiles/googletest-populate.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-subbuild/CMakeFiles 0 +.PHONY : CMakeFiles/googletest-populate.dir/rule + +# Convenience name for target. +googletest-populate: CMakeFiles/googletest-populate.dir/rule +.PHONY : googletest-populate + +# codegen rule for target. +CMakeFiles/googletest-populate.dir/codegen: + $(MAKE) $(MAKESILENT) -f CMakeFiles/googletest-populate.dir/build.make CMakeFiles/googletest-populate.dir/codegen + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-subbuild/CMakeFiles --progress-num=1,2,3,4,5,6,7,8,9 "Finished codegen for target googletest-populate" +.PHONY : CMakeFiles/googletest-populate.dir/codegen + +# clean rule for target. +CMakeFiles/googletest-populate.dir/clean: + $(MAKE) $(MAKESILENT) -f CMakeFiles/googletest-populate.dir/build.make CMakeFiles/googletest-populate.dir/clean +.PHONY : CMakeFiles/googletest-populate.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/_deps/googletest-subbuild/CMakeFiles/TargetDirectories.txt b/build/_deps/googletest-subbuild/CMakeFiles/TargetDirectories.txt new file mode 100644 index 000000000..a83ca788e --- /dev/null +++ b/build/_deps/googletest-subbuild/CMakeFiles/TargetDirectories.txt @@ -0,0 +1,3 @@ +/Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-subbuild/CMakeFiles/googletest-populate.dir +/Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-subbuild/CMakeFiles/edit_cache.dir +/Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-subbuild/CMakeFiles/rebuild_cache.dir diff --git a/build/_deps/googletest-subbuild/CMakeFiles/cmake.check_cache b/build/_deps/googletest-subbuild/CMakeFiles/cmake.check_cache new file mode 100644 index 000000000..3dccd7317 --- /dev/null +++ b/build/_deps/googletest-subbuild/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/_deps/googletest-subbuild/CMakeFiles/googletest-populate-complete b/build/_deps/googletest-subbuild/CMakeFiles/googletest-populate-complete new file mode 100644 index 000000000..e69de29bb diff --git a/build/_deps/googletest-subbuild/CMakeFiles/googletest-populate.dir/DependInfo.cmake b/build/_deps/googletest-subbuild/CMakeFiles/googletest-populate.dir/DependInfo.cmake new file mode 100644 index 000000000..29b95a515 --- /dev/null +++ b/build/_deps/googletest-subbuild/CMakeFiles/googletest-populate.dir/DependInfo.cmake @@ -0,0 +1,22 @@ + +# 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 + ) + +# 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/_deps/googletest-subbuild/CMakeFiles/googletest-populate.dir/Labels.json b/build/_deps/googletest-subbuild/CMakeFiles/googletest-populate.dir/Labels.json new file mode 100644 index 000000000..2ed07ab25 --- /dev/null +++ b/build/_deps/googletest-subbuild/CMakeFiles/googletest-populate.dir/Labels.json @@ -0,0 +1,46 @@ +{ + "sources" : + [ + { + "file" : "/Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-subbuild/CMakeFiles/googletest-populate" + }, + { + "file" : "/Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-subbuild/CMakeFiles/googletest-populate.rule" + }, + { + "file" : "/Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-subbuild/CMakeFiles/googletest-populate-complete.rule" + }, + { + "file" : "/Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-subbuild/googletest-populate-prefix/src/googletest-populate-stamp/googletest-populate-build.rule" + }, + { + "file" : "/Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-subbuild/googletest-populate-prefix/src/googletest-populate-stamp/googletest-populate-configure.rule" + }, + { + "file" : "/Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-subbuild/googletest-populate-prefix/src/googletest-populate-stamp/googletest-populate-download.rule" + }, + { + "file" : "/Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-subbuild/googletest-populate-prefix/src/googletest-populate-stamp/googletest-populate-install.rule" + }, + { + "file" : "/Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-subbuild/googletest-populate-prefix/src/googletest-populate-stamp/googletest-populate-mkdir.rule" + }, + { + "file" : "/Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-subbuild/googletest-populate-prefix/src/googletest-populate-stamp/googletest-populate-patch.rule" + }, + { + "file" : "/Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-subbuild/googletest-populate-prefix/src/googletest-populate-stamp/googletest-populate-test.rule" + }, + { + "file" : "/Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-subbuild/googletest-populate-prefix/src/googletest-populate-stamp/googletest-populate-update.rule" + } + ], + "target" : + { + "labels" : + [ + "googletest-populate" + ], + "name" : "googletest-populate" + } +} \ No newline at end of file diff --git a/build/_deps/googletest-subbuild/CMakeFiles/googletest-populate.dir/Labels.txt b/build/_deps/googletest-subbuild/CMakeFiles/googletest-populate.dir/Labels.txt new file mode 100644 index 000000000..75dd82d8c --- /dev/null +++ b/build/_deps/googletest-subbuild/CMakeFiles/googletest-populate.dir/Labels.txt @@ -0,0 +1,14 @@ +# Target labels + googletest-populate +# Source files and their labels +/Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-subbuild/CMakeFiles/googletest-populate +/Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-subbuild/CMakeFiles/googletest-populate.rule +/Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-subbuild/CMakeFiles/googletest-populate-complete.rule +/Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-subbuild/googletest-populate-prefix/src/googletest-populate-stamp/googletest-populate-build.rule +/Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-subbuild/googletest-populate-prefix/src/googletest-populate-stamp/googletest-populate-configure.rule +/Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-subbuild/googletest-populate-prefix/src/googletest-populate-stamp/googletest-populate-download.rule +/Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-subbuild/googletest-populate-prefix/src/googletest-populate-stamp/googletest-populate-install.rule +/Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-subbuild/googletest-populate-prefix/src/googletest-populate-stamp/googletest-populate-mkdir.rule +/Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-subbuild/googletest-populate-prefix/src/googletest-populate-stamp/googletest-populate-patch.rule +/Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-subbuild/googletest-populate-prefix/src/googletest-populate-stamp/googletest-populate-test.rule +/Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-subbuild/googletest-populate-prefix/src/googletest-populate-stamp/googletest-populate-update.rule diff --git a/build/_deps/googletest-subbuild/CMakeFiles/googletest-populate.dir/build.make b/build/_deps/googletest-subbuild/CMakeFiles/googletest-populate.dir/build.make new file mode 100644 index 000000000..4c63e2d51 --- /dev/null +++ b/build/_deps/googletest-subbuild/CMakeFiles/googletest-populate.dir/build.make @@ -0,0 +1,162 @@ +# 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 = /opt/homebrew/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-subbuild + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-subbuild + +# Utility rule file for googletest-populate. + +# Include any custom commands dependencies for this target. +include CMakeFiles/googletest-populate.dir/compiler_depend.make + +# Include the progress variables for this target. +include CMakeFiles/googletest-populate.dir/progress.make + +CMakeFiles/googletest-populate: CMakeFiles/googletest-populate-complete + +CMakeFiles/googletest-populate-complete: googletest-populate-prefix/src/googletest-populate-stamp/googletest-populate-install +CMakeFiles/googletest-populate-complete: googletest-populate-prefix/src/googletest-populate-stamp/googletest-populate-mkdir +CMakeFiles/googletest-populate-complete: googletest-populate-prefix/src/googletest-populate-stamp/googletest-populate-download +CMakeFiles/googletest-populate-complete: googletest-populate-prefix/src/googletest-populate-stamp/googletest-populate-update +CMakeFiles/googletest-populate-complete: googletest-populate-prefix/src/googletest-populate-stamp/googletest-populate-patch +CMakeFiles/googletest-populate-complete: googletest-populate-prefix/src/googletest-populate-stamp/googletest-populate-configure +CMakeFiles/googletest-populate-complete: googletest-populate-prefix/src/googletest-populate-stamp/googletest-populate-build +CMakeFiles/googletest-populate-complete: googletest-populate-prefix/src/googletest-populate-stamp/googletest-populate-install +CMakeFiles/googletest-populate-complete: googletest-populate-prefix/src/googletest-populate-stamp/googletest-populate-test + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-subbuild/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Completed 'googletest-populate'" + /opt/homebrew/bin/cmake -E make_directory /Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-subbuild/CMakeFiles + /opt/homebrew/bin/cmake -E touch /Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-subbuild/CMakeFiles/googletest-populate-complete + /opt/homebrew/bin/cmake -E touch /Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-subbuild/googletest-populate-prefix/src/googletest-populate-stamp/googletest-populate-done + +googletest-populate-prefix/src/googletest-populate-stamp/googletest-populate-update: +.PHONY : googletest-populate-prefix/src/googletest-populate-stamp/googletest-populate-update + +googletest-populate-prefix/src/googletest-populate-stamp/googletest-populate-build: googletest-populate-prefix/src/googletest-populate-stamp/googletest-populate-configure + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-subbuild/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "No build step for 'googletest-populate'" + cd /Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-build && /opt/homebrew/bin/cmake -E echo_append + cd /Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-build && /opt/homebrew/bin/cmake -E touch /Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-subbuild/googletest-populate-prefix/src/googletest-populate-stamp/googletest-populate-build + +googletest-populate-prefix/src/googletest-populate-stamp/googletest-populate-configure: googletest-populate-prefix/tmp/googletest-populate-cfgcmd.txt +googletest-populate-prefix/src/googletest-populate-stamp/googletest-populate-configure: googletest-populate-prefix/src/googletest-populate-stamp/googletest-populate-patch + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-subbuild/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "No configure step for 'googletest-populate'" + cd /Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-build && /opt/homebrew/bin/cmake -E echo_append + cd /Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-build && /opt/homebrew/bin/cmake -E touch /Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-subbuild/googletest-populate-prefix/src/googletest-populate-stamp/googletest-populate-configure + +googletest-populate-prefix/src/googletest-populate-stamp/googletest-populate-download: googletest-populate-prefix/src/googletest-populate-stamp/googletest-populate-gitinfo.txt +googletest-populate-prefix/src/googletest-populate-stamp/googletest-populate-download: googletest-populate-prefix/src/googletest-populate-stamp/googletest-populate-mkdir + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-subbuild/CMakeFiles --progress-num=$(CMAKE_PROGRESS_4) "Performing download step (git clone) for 'googletest-populate'" + cd /Users/graf/Documents/GitHub/qubic-core/core/build/_deps && /opt/homebrew/bin/cmake -DCMAKE_MESSAGE_LOG_LEVEL=VERBOSE -P /Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-subbuild/googletest-populate-prefix/tmp/googletest-populate-gitclone.cmake + cd /Users/graf/Documents/GitHub/qubic-core/core/build/_deps && /opt/homebrew/bin/cmake -E touch /Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-subbuild/googletest-populate-prefix/src/googletest-populate-stamp/googletest-populate-download + +googletest-populate-prefix/src/googletest-populate-stamp/googletest-populate-install: googletest-populate-prefix/src/googletest-populate-stamp/googletest-populate-build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-subbuild/CMakeFiles --progress-num=$(CMAKE_PROGRESS_5) "No install step for 'googletest-populate'" + cd /Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-build && /opt/homebrew/bin/cmake -E echo_append + cd /Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-build && /opt/homebrew/bin/cmake -E touch /Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-subbuild/googletest-populate-prefix/src/googletest-populate-stamp/googletest-populate-install + +googletest-populate-prefix/src/googletest-populate-stamp/googletest-populate-mkdir: + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-subbuild/CMakeFiles --progress-num=$(CMAKE_PROGRESS_6) "Creating directories for 'googletest-populate'" + /opt/homebrew/bin/cmake -Dcfgdir= -P /Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-subbuild/googletest-populate-prefix/tmp/googletest-populate-mkdirs.cmake + /opt/homebrew/bin/cmake -E touch /Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-subbuild/googletest-populate-prefix/src/googletest-populate-stamp/googletest-populate-mkdir + +googletest-populate-prefix/src/googletest-populate-stamp/googletest-populate-patch: googletest-populate-prefix/src/googletest-populate-stamp/googletest-populate-patch-info.txt +googletest-populate-prefix/src/googletest-populate-stamp/googletest-populate-patch: googletest-populate-prefix/src/googletest-populate-stamp/googletest-populate-update + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-subbuild/CMakeFiles --progress-num=$(CMAKE_PROGRESS_7) "No patch step for 'googletest-populate'" + /opt/homebrew/bin/cmake -E echo_append + /opt/homebrew/bin/cmake -E touch /Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-subbuild/googletest-populate-prefix/src/googletest-populate-stamp/googletest-populate-patch + +googletest-populate-prefix/src/googletest-populate-stamp/googletest-populate-update: +.PHONY : googletest-populate-prefix/src/googletest-populate-stamp/googletest-populate-update + +googletest-populate-prefix/src/googletest-populate-stamp/googletest-populate-test: googletest-populate-prefix/src/googletest-populate-stamp/googletest-populate-install + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-subbuild/CMakeFiles --progress-num=$(CMAKE_PROGRESS_8) "No test step for 'googletest-populate'" + cd /Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-build && /opt/homebrew/bin/cmake -E echo_append + cd /Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-build && /opt/homebrew/bin/cmake -E touch /Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-subbuild/googletest-populate-prefix/src/googletest-populate-stamp/googletest-populate-test + +googletest-populate-prefix/src/googletest-populate-stamp/googletest-populate-update: googletest-populate-prefix/tmp/googletest-populate-gitupdate.cmake +googletest-populate-prefix/src/googletest-populate-stamp/googletest-populate-update: googletest-populate-prefix/src/googletest-populate-stamp/googletest-populate-update-info.txt +googletest-populate-prefix/src/googletest-populate-stamp/googletest-populate-update: googletest-populate-prefix/src/googletest-populate-stamp/googletest-populate-download + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-subbuild/CMakeFiles --progress-num=$(CMAKE_PROGRESS_9) "Performing update step for 'googletest-populate'" + cd /Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-src && /opt/homebrew/bin/cmake -Dcan_fetch=YES -DCMAKE_MESSAGE_LOG_LEVEL=VERBOSE -P /Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-subbuild/googletest-populate-prefix/tmp/googletest-populate-gitupdate.cmake + +CMakeFiles/googletest-populate.dir/codegen: +.PHONY : CMakeFiles/googletest-populate.dir/codegen + +googletest-populate: CMakeFiles/googletest-populate +googletest-populate: CMakeFiles/googletest-populate-complete +googletest-populate: googletest-populate-prefix/src/googletest-populate-stamp/googletest-populate-build +googletest-populate: googletest-populate-prefix/src/googletest-populate-stamp/googletest-populate-configure +googletest-populate: googletest-populate-prefix/src/googletest-populate-stamp/googletest-populate-download +googletest-populate: googletest-populate-prefix/src/googletest-populate-stamp/googletest-populate-install +googletest-populate: googletest-populate-prefix/src/googletest-populate-stamp/googletest-populate-mkdir +googletest-populate: googletest-populate-prefix/src/googletest-populate-stamp/googletest-populate-patch +googletest-populate: googletest-populate-prefix/src/googletest-populate-stamp/googletest-populate-test +googletest-populate: googletest-populate-prefix/src/googletest-populate-stamp/googletest-populate-update +googletest-populate: CMakeFiles/googletest-populate.dir/build.make +.PHONY : googletest-populate + +# Rule to build all files generated by this target. +CMakeFiles/googletest-populate.dir/build: googletest-populate +.PHONY : CMakeFiles/googletest-populate.dir/build + +CMakeFiles/googletest-populate.dir/clean: + $(CMAKE_COMMAND) -P CMakeFiles/googletest-populate.dir/cmake_clean.cmake +.PHONY : CMakeFiles/googletest-populate.dir/clean + +CMakeFiles/googletest-populate.dir/depend: + cd /Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-subbuild && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-subbuild /Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-subbuild /Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-subbuild /Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-subbuild /Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-subbuild/CMakeFiles/googletest-populate.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : CMakeFiles/googletest-populate.dir/depend + diff --git a/build/_deps/googletest-subbuild/CMakeFiles/googletest-populate.dir/cmake_clean.cmake b/build/_deps/googletest-subbuild/CMakeFiles/googletest-populate.dir/cmake_clean.cmake new file mode 100644 index 000000000..4a4646d5f --- /dev/null +++ b/build/_deps/googletest-subbuild/CMakeFiles/googletest-populate.dir/cmake_clean.cmake @@ -0,0 +1,17 @@ +file(REMOVE_RECURSE + "CMakeFiles/googletest-populate" + "CMakeFiles/googletest-populate-complete" + "googletest-populate-prefix/src/googletest-populate-stamp/googletest-populate-build" + "googletest-populate-prefix/src/googletest-populate-stamp/googletest-populate-configure" + "googletest-populate-prefix/src/googletest-populate-stamp/googletest-populate-download" + "googletest-populate-prefix/src/googletest-populate-stamp/googletest-populate-install" + "googletest-populate-prefix/src/googletest-populate-stamp/googletest-populate-mkdir" + "googletest-populate-prefix/src/googletest-populate-stamp/googletest-populate-patch" + "googletest-populate-prefix/src/googletest-populate-stamp/googletest-populate-test" + "googletest-populate-prefix/src/googletest-populate-stamp/googletest-populate-update" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/googletest-populate.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/_deps/googletest-subbuild/CMakeFiles/googletest-populate.dir/compiler_depend.make b/build/_deps/googletest-subbuild/CMakeFiles/googletest-populate.dir/compiler_depend.make new file mode 100644 index 000000000..2a7c5a791 --- /dev/null +++ b/build/_deps/googletest-subbuild/CMakeFiles/googletest-populate.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for googletest-populate. +# This may be replaced when dependencies are built. diff --git a/build/_deps/googletest-subbuild/CMakeFiles/googletest-populate.dir/compiler_depend.ts b/build/_deps/googletest-subbuild/CMakeFiles/googletest-populate.dir/compiler_depend.ts new file mode 100644 index 000000000..a4681dad6 --- /dev/null +++ b/build/_deps/googletest-subbuild/CMakeFiles/googletest-populate.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for googletest-populate. diff --git a/build/_deps/googletest-subbuild/CMakeFiles/googletest-populate.dir/progress.make b/build/_deps/googletest-subbuild/CMakeFiles/googletest-populate.dir/progress.make new file mode 100644 index 000000000..d4f6ce35d --- /dev/null +++ b/build/_deps/googletest-subbuild/CMakeFiles/googletest-populate.dir/progress.make @@ -0,0 +1,10 @@ +CMAKE_PROGRESS_1 = 1 +CMAKE_PROGRESS_2 = 2 +CMAKE_PROGRESS_3 = 3 +CMAKE_PROGRESS_4 = 4 +CMAKE_PROGRESS_5 = 5 +CMAKE_PROGRESS_6 = 6 +CMAKE_PROGRESS_7 = 7 +CMAKE_PROGRESS_8 = 8 +CMAKE_PROGRESS_9 = 9 + diff --git a/build/_deps/googletest-subbuild/CMakeFiles/progress.marks b/build/_deps/googletest-subbuild/CMakeFiles/progress.marks new file mode 100644 index 000000000..ec635144f --- /dev/null +++ b/build/_deps/googletest-subbuild/CMakeFiles/progress.marks @@ -0,0 +1 @@ +9 diff --git a/build/_deps/googletest-subbuild/CMakeLists.txt b/build/_deps/googletest-subbuild/CMakeLists.txt new file mode 100644 index 000000000..c45e99408 --- /dev/null +++ b/build/_deps/googletest-subbuild/CMakeLists.txt @@ -0,0 +1,42 @@ +# Distributed under the OSI-approved BSD 3-Clause License. See accompanying +# file LICENSE.rst or https://cmake.org/licensing for details. + +cmake_minimum_required(VERSION 4.1.1) + +# Reject any attempt to use a toolchain file. We must not use one because +# we could be downloading it here. If the CMAKE_TOOLCHAIN_FILE environment +# variable is set, the cache variable will have been initialized from it. +unset(CMAKE_TOOLCHAIN_FILE CACHE) +unset(ENV{CMAKE_TOOLCHAIN_FILE}) + +# We name the project and the target for the ExternalProject_Add() call +# to something that will highlight to the user what we are working on if +# something goes wrong and an error message is produced. + +project(googletest-populate NONE) + + +# Pass through things we've already detected in the main project to avoid +# paying the cost of redetecting them again in ExternalProject_Add() +set(GIT_EXECUTABLE [==[/usr/bin/git]==]) +set(GIT_VERSION_STRING [==[2.39.5 (Apple Git-154)]==]) +set_property(GLOBAL PROPERTY _CMAKE_FindGit_GIT_EXECUTABLE_VERSION + [==[/usr/bin/git;2.39.5 (Apple Git-154)]==] +) + + +include(ExternalProject) +ExternalProject_Add(googletest-populate + "UPDATE_DISCONNECTED" "False" "GIT_REPOSITORY" "https://github.com/google/googletest.git" "EXTERNALPROJECT_INTERNAL_ARGUMENT_SEPARATOR" "GIT_TAG" "v1.16.0" + SOURCE_DIR "/Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-src" + BINARY_DIR "/Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-build" + CONFIGURE_COMMAND "" + BUILD_COMMAND "" + INSTALL_COMMAND "" + TEST_COMMAND "" + USES_TERMINAL_DOWNLOAD YES + USES_TERMINAL_UPDATE YES + USES_TERMINAL_PATCH YES +) + + diff --git a/build/_deps/googletest-subbuild/Makefile b/build/_deps/googletest-subbuild/Makefile new file mode 100644 index 000000000..d82f2c383 --- /dev/null +++ b/build/_deps/googletest-subbuild/Makefile @@ -0,0 +1,162 @@ +# 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 = /opt/homebrew/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-subbuild + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-subbuild + +#============================================================================= +# 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..." + /opt/homebrew/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..." + /opt/homebrew/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 /Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-subbuild/CMakeFiles /Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-subbuild//CMakeFiles/progress.marks + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-subbuild/CMakeFiles 0 +.PHONY : all + +# The main codegen target +codegen: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-subbuild/CMakeFiles /Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-subbuild//CMakeFiles/progress.marks + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 codegen + $(CMAKE_COMMAND) -E cmake_progress_start /Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-subbuild/CMakeFiles 0 +.PHONY : codegen + +# 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 googletest-populate + +# Build rule for target. +googletest-populate: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 googletest-populate +.PHONY : googletest-populate + +# fast build rule for target. +googletest-populate/fast: + $(MAKE) $(MAKESILENT) -f CMakeFiles/googletest-populate.dir/build.make CMakeFiles/googletest-populate.dir/build +.PHONY : googletest-populate/fast + +# 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 "... codegen" + @echo "... edit_cache" + @echo "... rebuild_cache" + @echo "... googletest-populate" +.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/_deps/googletest-subbuild/cmake_install.cmake b/build/_deps/googletest-subbuild/cmake_install.cmake new file mode 100644 index 000000000..c04bcbb3b --- /dev/null +++ b/build/_deps/googletest-subbuild/cmake_install.cmake @@ -0,0 +1,56 @@ +# Install script for directory: /Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-subbuild + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "FALSE") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "/Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-subbuild/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() +if(CMAKE_INSTALL_COMPONENT) + if(CMAKE_INSTALL_COMPONENT MATCHES "^[a-zA-Z0-9_.+-]+$") + set(CMAKE_INSTALL_MANIFEST "install_manifest_${CMAKE_INSTALL_COMPONENT}.txt") + else() + string(MD5 CMAKE_INST_COMP_HASH "${CMAKE_INSTALL_COMPONENT}") + set(CMAKE_INSTALL_MANIFEST "install_manifest_${CMAKE_INST_COMP_HASH}.txt") + unset(CMAKE_INST_COMP_HASH) + endif() +else() + set(CMAKE_INSTALL_MANIFEST "install_manifest.txt") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "/Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-subbuild/${CMAKE_INSTALL_MANIFEST}" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/_deps/googletest-subbuild/googletest-populate-prefix/src/googletest-populate-stamp/googletest-populate-build b/build/_deps/googletest-subbuild/googletest-populate-prefix/src/googletest-populate-stamp/googletest-populate-build new file mode 100644 index 000000000..e69de29bb diff --git a/build/_deps/googletest-subbuild/googletest-populate-prefix/src/googletest-populate-stamp/googletest-populate-configure b/build/_deps/googletest-subbuild/googletest-populate-prefix/src/googletest-populate-stamp/googletest-populate-configure new file mode 100644 index 000000000..e69de29bb diff --git a/build/_deps/googletest-subbuild/googletest-populate-prefix/src/googletest-populate-stamp/googletest-populate-done b/build/_deps/googletest-subbuild/googletest-populate-prefix/src/googletest-populate-stamp/googletest-populate-done new file mode 100644 index 000000000..e69de29bb diff --git a/build/_deps/googletest-subbuild/googletest-populate-prefix/src/googletest-populate-stamp/googletest-populate-download b/build/_deps/googletest-subbuild/googletest-populate-prefix/src/googletest-populate-stamp/googletest-populate-download new file mode 100644 index 000000000..e69de29bb diff --git a/build/_deps/googletest-subbuild/googletest-populate-prefix/src/googletest-populate-stamp/googletest-populate-gitclone-lastrun.txt b/build/_deps/googletest-subbuild/googletest-populate-prefix/src/googletest-populate-stamp/googletest-populate-gitclone-lastrun.txt new file mode 100644 index 000000000..f62f7aba4 --- /dev/null +++ b/build/_deps/googletest-subbuild/googletest-populate-prefix/src/googletest-populate-stamp/googletest-populate-gitclone-lastrun.txt @@ -0,0 +1,15 @@ +# This is a generated file and its contents are an internal implementation detail. +# The download step will be re-executed if anything in this file changes. +# No other meaning or use of this file is supported. + +method=git +command=/opt/homebrew/bin/cmake;-DCMAKE_MESSAGE_LOG_LEVEL=VERBOSE;-P;/Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-subbuild/googletest-populate-prefix/tmp/googletest-populate-gitclone.cmake +source_dir=/Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-src +work_dir=/Users/graf/Documents/GitHub/qubic-core/core/build/_deps +repository=https://github.com/google/googletest.git +remote=origin +init_submodules=TRUE +recurse_submodules=--recursive +submodules= +CMP0097=NEW + diff --git a/build/_deps/googletest-subbuild/googletest-populate-prefix/src/googletest-populate-stamp/googletest-populate-gitinfo.txt b/build/_deps/googletest-subbuild/googletest-populate-prefix/src/googletest-populate-stamp/googletest-populate-gitinfo.txt new file mode 100644 index 000000000..f62f7aba4 --- /dev/null +++ b/build/_deps/googletest-subbuild/googletest-populate-prefix/src/googletest-populate-stamp/googletest-populate-gitinfo.txt @@ -0,0 +1,15 @@ +# This is a generated file and its contents are an internal implementation detail. +# The download step will be re-executed if anything in this file changes. +# No other meaning or use of this file is supported. + +method=git +command=/opt/homebrew/bin/cmake;-DCMAKE_MESSAGE_LOG_LEVEL=VERBOSE;-P;/Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-subbuild/googletest-populate-prefix/tmp/googletest-populate-gitclone.cmake +source_dir=/Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-src +work_dir=/Users/graf/Documents/GitHub/qubic-core/core/build/_deps +repository=https://github.com/google/googletest.git +remote=origin +init_submodules=TRUE +recurse_submodules=--recursive +submodules= +CMP0097=NEW + diff --git a/build/_deps/googletest-subbuild/googletest-populate-prefix/src/googletest-populate-stamp/googletest-populate-install b/build/_deps/googletest-subbuild/googletest-populate-prefix/src/googletest-populate-stamp/googletest-populate-install new file mode 100644 index 000000000..e69de29bb diff --git a/build/_deps/googletest-subbuild/googletest-populate-prefix/src/googletest-populate-stamp/googletest-populate-mkdir b/build/_deps/googletest-subbuild/googletest-populate-prefix/src/googletest-populate-stamp/googletest-populate-mkdir new file mode 100644 index 000000000..e69de29bb diff --git a/build/_deps/googletest-subbuild/googletest-populate-prefix/src/googletest-populate-stamp/googletest-populate-patch b/build/_deps/googletest-subbuild/googletest-populate-prefix/src/googletest-populate-stamp/googletest-populate-patch new file mode 100644 index 000000000..e69de29bb diff --git a/build/_deps/googletest-subbuild/googletest-populate-prefix/src/googletest-populate-stamp/googletest-populate-patch-info.txt b/build/_deps/googletest-subbuild/googletest-populate-prefix/src/googletest-populate-stamp/googletest-populate-patch-info.txt new file mode 100644 index 000000000..53e1e1e68 --- /dev/null +++ b/build/_deps/googletest-subbuild/googletest-populate-prefix/src/googletest-populate-stamp/googletest-populate-patch-info.txt @@ -0,0 +1,6 @@ +# This is a generated file and its contents are an internal implementation detail. +# The update step will be re-executed if anything in this file changes. +# No other meaning or use of this file is supported. + +command= +work_dir= diff --git a/build/_deps/googletest-subbuild/googletest-populate-prefix/src/googletest-populate-stamp/googletest-populate-test b/build/_deps/googletest-subbuild/googletest-populate-prefix/src/googletest-populate-stamp/googletest-populate-test new file mode 100644 index 000000000..e69de29bb diff --git a/build/_deps/googletest-subbuild/googletest-populate-prefix/src/googletest-populate-stamp/googletest-populate-update-info.txt b/build/_deps/googletest-subbuild/googletest-populate-prefix/src/googletest-populate-stamp/googletest-populate-update-info.txt new file mode 100644 index 000000000..3f1f34875 --- /dev/null +++ b/build/_deps/googletest-subbuild/googletest-populate-prefix/src/googletest-populate-stamp/googletest-populate-update-info.txt @@ -0,0 +1,7 @@ +# This is a generated file and its contents are an internal implementation detail. +# The patch step will be re-executed if anything in this file changes. +# No other meaning or use of this file is supported. + +command (connected)=/opt/homebrew/bin/cmake;-Dcan_fetch=YES;-DCMAKE_MESSAGE_LOG_LEVEL=VERBOSE;-P;/Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-subbuild/googletest-populate-prefix/tmp/googletest-populate-gitupdate.cmake +command (disconnected)=/opt/homebrew/bin/cmake;-Dcan_fetch=NO;-DCMAKE_MESSAGE_LOG_LEVEL=VERBOSE;-P;/Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-subbuild/googletest-populate-prefix/tmp/googletest-populate-gitupdate.cmake +work_dir=/Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-src diff --git a/build/cmake_install.cmake b/build/cmake_install.cmake new file mode 100644 index 000000000..9738e4b15 --- /dev/null +++ b/build/cmake_install.cmake @@ -0,0 +1,86 @@ +# Install script for directory: /Users/graf/Documents/GitHub/qubic-core/core + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "Release") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "FALSE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/usr/bin/objdump") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/Users/graf/Documents/GitHub/qubic-core/core/build/lib/platform_common/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/Users/graf/Documents/GitHub/qubic-core/core/build/lib/platform_efi/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/Users/graf/Documents/GitHub/qubic-core/core/build/lib/platform_os/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/Users/graf/Documents/GitHub/qubic-core/core/build/test/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/Users/graf/Documents/GitHub/qubic-core/core/build/src/cmake_install.cmake") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "/Users/graf/Documents/GitHub/qubic-core/core/build/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() +if(CMAKE_INSTALL_COMPONENT) + if(CMAKE_INSTALL_COMPONENT MATCHES "^[a-zA-Z0-9_.+-]+$") + set(CMAKE_INSTALL_MANIFEST "install_manifest_${CMAKE_INSTALL_COMPONENT}.txt") + else() + string(MD5 CMAKE_INST_COMP_HASH "${CMAKE_INSTALL_COMPONENT}") + set(CMAKE_INSTALL_MANIFEST "install_manifest_${CMAKE_INST_COMP_HASH}.txt") + unset(CMAKE_INST_COMP_HASH) + endif() +else() + set(CMAKE_INSTALL_MANIFEST "install_manifest.txt") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "/Users/graf/Documents/GitHub/qubic-core/core/build/${CMAKE_INSTALL_MANIFEST}" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/lib/libgtest.a b/build/lib/libgtest.a new file mode 100644 index 000000000..5213c3de4 Binary files /dev/null and b/build/lib/libgtest.a differ diff --git a/build/lib/platform_common/CMakeFiles/CMakeDirectoryInformation.cmake b/build/lib/platform_common/CMakeFiles/CMakeDirectoryInformation.cmake new file mode 100644 index 000000000..e2771e437 --- /dev/null +++ b/build/lib/platform_common/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 "/Users/graf/Documents/GitHub/qubic-core/core") +set(CMAKE_RELATIVE_PATH_TOP_BINARY "/Users/graf/Documents/GitHub/qubic-core/core/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/lib/platform_common/CMakeFiles/platform_common.dir/DependInfo.cmake b/build/lib/platform_common/CMakeFiles/platform_common.dir/DependInfo.cmake new file mode 100644 index 000000000..82e68e565 --- /dev/null +++ b/build/lib/platform_common/CMakeFiles/platform_common.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 + "/Users/graf/Documents/GitHub/qubic-core/core/lib/platform_common/edk2_mdepkg/Library/BaseLib/LongJump.c" "lib/platform_common/CMakeFiles/platform_common.dir/edk2_mdepkg/Library/BaseLib/LongJump.c.o" "gcc" "lib/platform_common/CMakeFiles/platform_common.dir/edk2_mdepkg/Library/BaseLib/LongJump.c.o.d" + "/Users/graf/Documents/GitHub/qubic-core/core/lib/platform_common/edk2_mdepkg/Library/BaseLib/SetJump.c" "lib/platform_common/CMakeFiles/platform_common.dir/edk2_mdepkg/Library/BaseLib/SetJump.c.o" "gcc" "lib/platform_common/CMakeFiles/platform_common.dir/edk2_mdepkg/Library/BaseLib/SetJump.c.o.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/lib/platform_common/CMakeFiles/platform_common.dir/build.make b/build/lib/platform_common/CMakeFiles/platform_common.dir/build.make new file mode 100644 index 000000000..f4c67a45b --- /dev/null +++ b/build/lib/platform_common/CMakeFiles/platform_common.dir/build.make @@ -0,0 +1,130 @@ +# 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 = /opt/homebrew/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/graf/Documents/GitHub/qubic-core/core + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/graf/Documents/GitHub/qubic-core/core/build + +# Include any dependencies generated for this target. +include lib/platform_common/CMakeFiles/platform_common.dir/depend.make +# Include any dependencies generated by the compiler for this target. +include lib/platform_common/CMakeFiles/platform_common.dir/compiler_depend.make + +# Include the progress variables for this target. +include lib/platform_common/CMakeFiles/platform_common.dir/progress.make + +# Include the compile flags for this target's objects. +include lib/platform_common/CMakeFiles/platform_common.dir/flags.make + +lib/platform_common/CMakeFiles/platform_common.dir/codegen: +.PHONY : lib/platform_common/CMakeFiles/platform_common.dir/codegen + +lib/platform_common/CMakeFiles/platform_common.dir/edk2_mdepkg/Library/BaseLib/LongJump.c.o: lib/platform_common/CMakeFiles/platform_common.dir/flags.make +lib/platform_common/CMakeFiles/platform_common.dir/edk2_mdepkg/Library/BaseLib/LongJump.c.o: /Users/graf/Documents/GitHub/qubic-core/core/lib/platform_common/edk2_mdepkg/Library/BaseLib/LongJump.c +lib/platform_common/CMakeFiles/platform_common.dir/edk2_mdepkg/Library/BaseLib/LongJump.c.o: lib/platform_common/CMakeFiles/platform_common.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/graf/Documents/GitHub/qubic-core/core/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building C object lib/platform_common/CMakeFiles/platform_common.dir/edk2_mdepkg/Library/BaseLib/LongJump.c.o" + cd /Users/graf/Documents/GitHub/qubic-core/core/build/lib/platform_common && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT lib/platform_common/CMakeFiles/platform_common.dir/edk2_mdepkg/Library/BaseLib/LongJump.c.o -MF CMakeFiles/platform_common.dir/edk2_mdepkg/Library/BaseLib/LongJump.c.o.d -o CMakeFiles/platform_common.dir/edk2_mdepkg/Library/BaseLib/LongJump.c.o -c /Users/graf/Documents/GitHub/qubic-core/core/lib/platform_common/edk2_mdepkg/Library/BaseLib/LongJump.c + +lib/platform_common/CMakeFiles/platform_common.dir/edk2_mdepkg/Library/BaseLib/LongJump.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/platform_common.dir/edk2_mdepkg/Library/BaseLib/LongJump.c.i" + cd /Users/graf/Documents/GitHub/qubic-core/core/build/lib/platform_common && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /Users/graf/Documents/GitHub/qubic-core/core/lib/platform_common/edk2_mdepkg/Library/BaseLib/LongJump.c > CMakeFiles/platform_common.dir/edk2_mdepkg/Library/BaseLib/LongJump.c.i + +lib/platform_common/CMakeFiles/platform_common.dir/edk2_mdepkg/Library/BaseLib/LongJump.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/platform_common.dir/edk2_mdepkg/Library/BaseLib/LongJump.c.s" + cd /Users/graf/Documents/GitHub/qubic-core/core/build/lib/platform_common && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /Users/graf/Documents/GitHub/qubic-core/core/lib/platform_common/edk2_mdepkg/Library/BaseLib/LongJump.c -o CMakeFiles/platform_common.dir/edk2_mdepkg/Library/BaseLib/LongJump.c.s + +lib/platform_common/CMakeFiles/platform_common.dir/edk2_mdepkg/Library/BaseLib/SetJump.c.o: lib/platform_common/CMakeFiles/platform_common.dir/flags.make +lib/platform_common/CMakeFiles/platform_common.dir/edk2_mdepkg/Library/BaseLib/SetJump.c.o: /Users/graf/Documents/GitHub/qubic-core/core/lib/platform_common/edk2_mdepkg/Library/BaseLib/SetJump.c +lib/platform_common/CMakeFiles/platform_common.dir/edk2_mdepkg/Library/BaseLib/SetJump.c.o: lib/platform_common/CMakeFiles/platform_common.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/graf/Documents/GitHub/qubic-core/core/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building C object lib/platform_common/CMakeFiles/platform_common.dir/edk2_mdepkg/Library/BaseLib/SetJump.c.o" + cd /Users/graf/Documents/GitHub/qubic-core/core/build/lib/platform_common && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT lib/platform_common/CMakeFiles/platform_common.dir/edk2_mdepkg/Library/BaseLib/SetJump.c.o -MF CMakeFiles/platform_common.dir/edk2_mdepkg/Library/BaseLib/SetJump.c.o.d -o CMakeFiles/platform_common.dir/edk2_mdepkg/Library/BaseLib/SetJump.c.o -c /Users/graf/Documents/GitHub/qubic-core/core/lib/platform_common/edk2_mdepkg/Library/BaseLib/SetJump.c + +lib/platform_common/CMakeFiles/platform_common.dir/edk2_mdepkg/Library/BaseLib/SetJump.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/platform_common.dir/edk2_mdepkg/Library/BaseLib/SetJump.c.i" + cd /Users/graf/Documents/GitHub/qubic-core/core/build/lib/platform_common && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /Users/graf/Documents/GitHub/qubic-core/core/lib/platform_common/edk2_mdepkg/Library/BaseLib/SetJump.c > CMakeFiles/platform_common.dir/edk2_mdepkg/Library/BaseLib/SetJump.c.i + +lib/platform_common/CMakeFiles/platform_common.dir/edk2_mdepkg/Library/BaseLib/SetJump.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/platform_common.dir/edk2_mdepkg/Library/BaseLib/SetJump.c.s" + cd /Users/graf/Documents/GitHub/qubic-core/core/build/lib/platform_common && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /Users/graf/Documents/GitHub/qubic-core/core/lib/platform_common/edk2_mdepkg/Library/BaseLib/SetJump.c -o CMakeFiles/platform_common.dir/edk2_mdepkg/Library/BaseLib/SetJump.c.s + +# Object files for target platform_common +platform_common_OBJECTS = \ +"CMakeFiles/platform_common.dir/edk2_mdepkg/Library/BaseLib/LongJump.c.o" \ +"CMakeFiles/platform_common.dir/edk2_mdepkg/Library/BaseLib/SetJump.c.o" + +# External object files for target platform_common +platform_common_EXTERNAL_OBJECTS = + +lib/platform_common/libplatform_common.a: lib/platform_common/CMakeFiles/platform_common.dir/edk2_mdepkg/Library/BaseLib/LongJump.c.o +lib/platform_common/libplatform_common.a: lib/platform_common/CMakeFiles/platform_common.dir/edk2_mdepkg/Library/BaseLib/SetJump.c.o +lib/platform_common/libplatform_common.a: lib/platform_common/CMakeFiles/platform_common.dir/build.make +lib/platform_common/libplatform_common.a: lib/platform_common/CMakeFiles/platform_common.dir/link.txt + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --bold --progress-dir=/Users/graf/Documents/GitHub/qubic-core/core/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Linking C static library libplatform_common.a" + cd /Users/graf/Documents/GitHub/qubic-core/core/build/lib/platform_common && $(CMAKE_COMMAND) -P CMakeFiles/platform_common.dir/cmake_clean_target.cmake + cd /Users/graf/Documents/GitHub/qubic-core/core/build/lib/platform_common && $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/platform_common.dir/link.txt --verbose=$(VERBOSE) + +# Rule to build all files generated by this target. +lib/platform_common/CMakeFiles/platform_common.dir/build: lib/platform_common/libplatform_common.a +.PHONY : lib/platform_common/CMakeFiles/platform_common.dir/build + +lib/platform_common/CMakeFiles/platform_common.dir/clean: + cd /Users/graf/Documents/GitHub/qubic-core/core/build/lib/platform_common && $(CMAKE_COMMAND) -P CMakeFiles/platform_common.dir/cmake_clean.cmake +.PHONY : lib/platform_common/CMakeFiles/platform_common.dir/clean + +lib/platform_common/CMakeFiles/platform_common.dir/depend: + cd /Users/graf/Documents/GitHub/qubic-core/core/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/graf/Documents/GitHub/qubic-core/core /Users/graf/Documents/GitHub/qubic-core/core/lib/platform_common /Users/graf/Documents/GitHub/qubic-core/core/build /Users/graf/Documents/GitHub/qubic-core/core/build/lib/platform_common /Users/graf/Documents/GitHub/qubic-core/core/build/lib/platform_common/CMakeFiles/platform_common.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : lib/platform_common/CMakeFiles/platform_common.dir/depend + diff --git a/build/lib/platform_common/CMakeFiles/platform_common.dir/cmake_clean.cmake b/build/lib/platform_common/CMakeFiles/platform_common.dir/cmake_clean.cmake new file mode 100644 index 000000000..2890ec8d5 --- /dev/null +++ b/build/lib/platform_common/CMakeFiles/platform_common.dir/cmake_clean.cmake @@ -0,0 +1,13 @@ +file(REMOVE_RECURSE + "CMakeFiles/platform_common.dir/edk2_mdepkg/Library/BaseLib/LongJump.c.o" + "CMakeFiles/platform_common.dir/edk2_mdepkg/Library/BaseLib/LongJump.c.o.d" + "CMakeFiles/platform_common.dir/edk2_mdepkg/Library/BaseLib/SetJump.c.o" + "CMakeFiles/platform_common.dir/edk2_mdepkg/Library/BaseLib/SetJump.c.o.d" + "libplatform_common.a" + "libplatform_common.pdb" +) + +# Per-language clean rules from dependency scanning. +foreach(lang C) + include(CMakeFiles/platform_common.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/lib/platform_common/CMakeFiles/platform_common.dir/cmake_clean_target.cmake b/build/lib/platform_common/CMakeFiles/platform_common.dir/cmake_clean_target.cmake new file mode 100644 index 000000000..77af77d09 --- /dev/null +++ b/build/lib/platform_common/CMakeFiles/platform_common.dir/cmake_clean_target.cmake @@ -0,0 +1,3 @@ +file(REMOVE_RECURSE + "libplatform_common.a" +) diff --git a/build/lib/platform_common/CMakeFiles/platform_common.dir/compiler_depend.make b/build/lib/platform_common/CMakeFiles/platform_common.dir/compiler_depend.make new file mode 100644 index 000000000..a1cc68251 --- /dev/null +++ b/build/lib/platform_common/CMakeFiles/platform_common.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty compiler generated dependencies file for platform_common. +# This may be replaced when dependencies are built. diff --git a/build/lib/platform_common/CMakeFiles/platform_common.dir/compiler_depend.ts b/build/lib/platform_common/CMakeFiles/platform_common.dir/compiler_depend.ts new file mode 100644 index 000000000..205449b24 --- /dev/null +++ b/build/lib/platform_common/CMakeFiles/platform_common.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for compiler generated dependencies management for platform_common. diff --git a/build/lib/platform_common/CMakeFiles/platform_common.dir/depend.make b/build/lib/platform_common/CMakeFiles/platform_common.dir/depend.make new file mode 100644 index 000000000..4a63b3293 --- /dev/null +++ b/build/lib/platform_common/CMakeFiles/platform_common.dir/depend.make @@ -0,0 +1,2 @@ +# Empty dependencies file for platform_common. +# This may be replaced when dependencies are built. diff --git a/build/lib/platform_common/CMakeFiles/platform_common.dir/flags.make b/build/lib/platform_common/CMakeFiles/platform_common.dir/flags.make new file mode 100644 index 000000000..dd9c07419 --- /dev/null +++ b/build/lib/platform_common/CMakeFiles/platform_common.dir/flags.make @@ -0,0 +1,12 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 4.1 + +# compile C with /usr/bin/cc +C_DEFINES = -DNDEBUG -D_LIB + +C_INCLUDES = -I/Users/graf/Documents/GitHub/qubic-core/core/lib/platform_common/edk2_mdepkg/Include -I/Users/graf/Documents/GitHub/qubic-core/core/lib/platform_common -I/Users/graf/Documents/GitHub/qubic-core/core + +C_FLAGSarm64 = -arch arm64 -Wall -Wextra -fshort-wchar -O2 -fomit-frame-pointer -fno-lto -mavx -mavx2 -mavx512f -mavx512cd -mavx512vl -mavx512bw -mavx512dq + +C_FLAGS = -arch arm64 -Wall -Wextra -fshort-wchar -O2 -fomit-frame-pointer -fno-lto -mavx -mavx2 -mavx512f -mavx512cd -mavx512vl -mavx512bw -mavx512dq + diff --git a/build/lib/platform_common/CMakeFiles/platform_common.dir/link.txt b/build/lib/platform_common/CMakeFiles/platform_common.dir/link.txt new file mode 100644 index 000000000..484e03b12 --- /dev/null +++ b/build/lib/platform_common/CMakeFiles/platform_common.dir/link.txt @@ -0,0 +1,2 @@ +/usr/bin/ar qc libplatform_common.a CMakeFiles/platform_common.dir/edk2_mdepkg/Library/BaseLib/LongJump.c.o CMakeFiles/platform_common.dir/edk2_mdepkg/Library/BaseLib/SetJump.c.o +/usr/bin/ranlib libplatform_common.a diff --git a/build/lib/platform_common/CMakeFiles/platform_common.dir/progress.make b/build/lib/platform_common/CMakeFiles/platform_common.dir/progress.make new file mode 100644 index 000000000..cd34084ef --- /dev/null +++ b/build/lib/platform_common/CMakeFiles/platform_common.dir/progress.make @@ -0,0 +1,4 @@ +CMAKE_PROGRESS_1 = 12 +CMAKE_PROGRESS_2 = 13 +CMAKE_PROGRESS_3 = 14 + diff --git a/build/lib/platform_common/CMakeFiles/progress.marks b/build/lib/platform_common/CMakeFiles/progress.marks new file mode 100644 index 000000000..00750edc0 --- /dev/null +++ b/build/lib/platform_common/CMakeFiles/progress.marks @@ -0,0 +1 @@ +3 diff --git a/build/lib/platform_common/Makefile b/build/lib/platform_common/Makefile new file mode 100644 index 000000000..982bb5abf --- /dev/null +++ b/build/lib/platform_common/Makefile @@ -0,0 +1,269 @@ +# 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 = /opt/homebrew/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/graf/Documents/GitHub/qubic-core/core + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/graf/Documents/GitHub/qubic-core/core/build + +#============================================================================= +# Targets provided globally by CMake. + +# Special rule for the target test +test: + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running tests..." + /opt/homebrew/bin/ctest $(ARGS) +.PHONY : test + +# Special rule for the target test +test/fast: test +.PHONY : test/fast + +# Special rule for the target edit_cache +edit_cache: + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running CMake cache editor..." + /opt/homebrew/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..." + /opt/homebrew/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 + +# Special rule for the target list_install_components +list_install_components: + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Available install components are: \"Unspecified\" \"gmock\" \"gtest\"" +.PHONY : list_install_components + +# Special rule for the target list_install_components +list_install_components/fast: list_install_components +.PHONY : list_install_components/fast + +# Special rule for the target install +install: preinstall + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Install the project..." + /opt/homebrew/bin/cmake -P cmake_install.cmake +.PHONY : install + +# Special rule for the target install +install/fast: preinstall/fast + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Install the project..." + /opt/homebrew/bin/cmake -P cmake_install.cmake +.PHONY : install/fast + +# Special rule for the target install/local +install/local: preinstall + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing only the local directory..." + /opt/homebrew/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake +.PHONY : install/local + +# Special rule for the target install/local +install/local/fast: preinstall/fast + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing only the local directory..." + /opt/homebrew/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake +.PHONY : install/local/fast + +# Special rule for the target install/strip +install/strip: preinstall + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing the project stripped..." + /opt/homebrew/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake +.PHONY : install/strip + +# Special rule for the target install/strip +install/strip/fast: preinstall/fast + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing the project stripped..." + /opt/homebrew/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake +.PHONY : install/strip/fast + +# The main all target +all: cmake_check_build_system + cd /Users/graf/Documents/GitHub/qubic-core/core/build && $(CMAKE_COMMAND) -E cmake_progress_start /Users/graf/Documents/GitHub/qubic-core/core/build/CMakeFiles /Users/graf/Documents/GitHub/qubic-core/core/build/lib/platform_common//CMakeFiles/progress.marks + cd /Users/graf/Documents/GitHub/qubic-core/core/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 lib/platform_common/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/graf/Documents/GitHub/qubic-core/core/build/CMakeFiles 0 +.PHONY : all + +# The main clean target +clean: + cd /Users/graf/Documents/GitHub/qubic-core/core/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 lib/platform_common/clean +.PHONY : clean + +# The main clean target +clean/fast: clean +.PHONY : clean/fast + +# Prepare targets for installation. +preinstall: all + cd /Users/graf/Documents/GitHub/qubic-core/core/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 lib/platform_common/preinstall +.PHONY : preinstall + +# Prepare targets for installation. +preinstall/fast: + cd /Users/graf/Documents/GitHub/qubic-core/core/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 lib/platform_common/preinstall +.PHONY : preinstall/fast + +# clear depends +depend: + cd /Users/graf/Documents/GitHub/qubic-core/core/build && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1 +.PHONY : depend + +# Convenience name for target. +lib/platform_common/CMakeFiles/platform_common.dir/rule: + cd /Users/graf/Documents/GitHub/qubic-core/core/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 lib/platform_common/CMakeFiles/platform_common.dir/rule +.PHONY : lib/platform_common/CMakeFiles/platform_common.dir/rule + +# Convenience name for target. +platform_common: lib/platform_common/CMakeFiles/platform_common.dir/rule +.PHONY : platform_common + +# fast build rule for target. +platform_common/fast: + cd /Users/graf/Documents/GitHub/qubic-core/core/build && $(MAKE) $(MAKESILENT) -f lib/platform_common/CMakeFiles/platform_common.dir/build.make lib/platform_common/CMakeFiles/platform_common.dir/build +.PHONY : platform_common/fast + +edk2_mdepkg/Library/BaseLib/LongJump.o: edk2_mdepkg/Library/BaseLib/LongJump.c.o +.PHONY : edk2_mdepkg/Library/BaseLib/LongJump.o + +# target to build an object file +edk2_mdepkg/Library/BaseLib/LongJump.c.o: + cd /Users/graf/Documents/GitHub/qubic-core/core/build && $(MAKE) $(MAKESILENT) -f lib/platform_common/CMakeFiles/platform_common.dir/build.make lib/platform_common/CMakeFiles/platform_common.dir/edk2_mdepkg/Library/BaseLib/LongJump.c.o +.PHONY : edk2_mdepkg/Library/BaseLib/LongJump.c.o + +edk2_mdepkg/Library/BaseLib/LongJump.i: edk2_mdepkg/Library/BaseLib/LongJump.c.i +.PHONY : edk2_mdepkg/Library/BaseLib/LongJump.i + +# target to preprocess a source file +edk2_mdepkg/Library/BaseLib/LongJump.c.i: + cd /Users/graf/Documents/GitHub/qubic-core/core/build && $(MAKE) $(MAKESILENT) -f lib/platform_common/CMakeFiles/platform_common.dir/build.make lib/platform_common/CMakeFiles/platform_common.dir/edk2_mdepkg/Library/BaseLib/LongJump.c.i +.PHONY : edk2_mdepkg/Library/BaseLib/LongJump.c.i + +edk2_mdepkg/Library/BaseLib/LongJump.s: edk2_mdepkg/Library/BaseLib/LongJump.c.s +.PHONY : edk2_mdepkg/Library/BaseLib/LongJump.s + +# target to generate assembly for a file +edk2_mdepkg/Library/BaseLib/LongJump.c.s: + cd /Users/graf/Documents/GitHub/qubic-core/core/build && $(MAKE) $(MAKESILENT) -f lib/platform_common/CMakeFiles/platform_common.dir/build.make lib/platform_common/CMakeFiles/platform_common.dir/edk2_mdepkg/Library/BaseLib/LongJump.c.s +.PHONY : edk2_mdepkg/Library/BaseLib/LongJump.c.s + +edk2_mdepkg/Library/BaseLib/SetJump.o: edk2_mdepkg/Library/BaseLib/SetJump.c.o +.PHONY : edk2_mdepkg/Library/BaseLib/SetJump.o + +# target to build an object file +edk2_mdepkg/Library/BaseLib/SetJump.c.o: + cd /Users/graf/Documents/GitHub/qubic-core/core/build && $(MAKE) $(MAKESILENT) -f lib/platform_common/CMakeFiles/platform_common.dir/build.make lib/platform_common/CMakeFiles/platform_common.dir/edk2_mdepkg/Library/BaseLib/SetJump.c.o +.PHONY : edk2_mdepkg/Library/BaseLib/SetJump.c.o + +edk2_mdepkg/Library/BaseLib/SetJump.i: edk2_mdepkg/Library/BaseLib/SetJump.c.i +.PHONY : edk2_mdepkg/Library/BaseLib/SetJump.i + +# target to preprocess a source file +edk2_mdepkg/Library/BaseLib/SetJump.c.i: + cd /Users/graf/Documents/GitHub/qubic-core/core/build && $(MAKE) $(MAKESILENT) -f lib/platform_common/CMakeFiles/platform_common.dir/build.make lib/platform_common/CMakeFiles/platform_common.dir/edk2_mdepkg/Library/BaseLib/SetJump.c.i +.PHONY : edk2_mdepkg/Library/BaseLib/SetJump.c.i + +edk2_mdepkg/Library/BaseLib/SetJump.s: edk2_mdepkg/Library/BaseLib/SetJump.c.s +.PHONY : edk2_mdepkg/Library/BaseLib/SetJump.s + +# target to generate assembly for a file +edk2_mdepkg/Library/BaseLib/SetJump.c.s: + cd /Users/graf/Documents/GitHub/qubic-core/core/build && $(MAKE) $(MAKESILENT) -f lib/platform_common/CMakeFiles/platform_common.dir/build.make lib/platform_common/CMakeFiles/platform_common.dir/edk2_mdepkg/Library/BaseLib/SetJump.c.s +.PHONY : edk2_mdepkg/Library/BaseLib/SetJump.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 "... install" + @echo "... install/local" + @echo "... install/strip" + @echo "... list_install_components" + @echo "... rebuild_cache" + @echo "... test" + @echo "... platform_common" + @echo "... edk2_mdepkg/Library/BaseLib/LongJump.o" + @echo "... edk2_mdepkg/Library/BaseLib/LongJump.i" + @echo "... edk2_mdepkg/Library/BaseLib/LongJump.s" + @echo "... edk2_mdepkg/Library/BaseLib/SetJump.o" + @echo "... edk2_mdepkg/Library/BaseLib/SetJump.i" + @echo "... edk2_mdepkg/Library/BaseLib/SetJump.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: + cd /Users/graf/Documents/GitHub/qubic-core/core/build && $(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/lib/platform_common/cmake_install.cmake b/build/lib/platform_common/cmake_install.cmake new file mode 100644 index 000000000..8f9b94a8b --- /dev/null +++ b/build/lib/platform_common/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: /Users/graf/Documents/GitHub/qubic-core/core/lib/platform_common + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "Release") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "FALSE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/usr/bin/objdump") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "/Users/graf/Documents/GitHub/qubic-core/core/build/lib/platform_common/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/lib/platform_efi/CMakeFiles/CMakeDirectoryInformation.cmake b/build/lib/platform_efi/CMakeFiles/CMakeDirectoryInformation.cmake new file mode 100644 index 000000000..e2771e437 --- /dev/null +++ b/build/lib/platform_efi/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 "/Users/graf/Documents/GitHub/qubic-core/core") +set(CMAKE_RELATIVE_PATH_TOP_BINARY "/Users/graf/Documents/GitHub/qubic-core/core/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/lib/platform_efi/CMakeFiles/platform_efi.dir/DependInfo.cmake b/build/lib/platform_efi/CMakeFiles/platform_efi.dir/DependInfo.cmake new file mode 100644 index 000000000..d9ef33369 --- /dev/null +++ b/build/lib/platform_efi/CMakeFiles/platform_efi.dir/DependInfo.cmake @@ -0,0 +1,26 @@ + +# 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 + "/Users/graf/Documents/GitHub/qubic-core/core/lib/platform_efi/edk2_debug.c" "lib/platform_efi/CMakeFiles/platform_efi.dir/edk2_debug.c.o" "gcc" "lib/platform_efi/CMakeFiles/platform_efi.dir/edk2_debug.c.o.d" + "/Users/graf/Documents/GitHub/qubic-core/core/lib/platform_efi/processor.cpp" "lib/platform_efi/CMakeFiles/platform_efi.dir/processor.cpp.o" "gcc" "lib/platform_efi/CMakeFiles/platform_efi.dir/processor.cpp.o.d" + "/Users/graf/Documents/GitHub/qubic-core/core/lib/platform_efi/sleep.cpp" "lib/platform_efi/CMakeFiles/platform_efi.dir/sleep.cpp.o" "gcc" "lib/platform_efi/CMakeFiles/platform_efi.dir/sleep.cpp.o.d" + "/Users/graf/Documents/GitHub/qubic-core/core/lib/platform_efi/uefi_globals.cpp" "lib/platform_efi/CMakeFiles/platform_efi.dir/uefi_globals.cpp.o" "gcc" "lib/platform_efi/CMakeFiles/platform_efi.dir/uefi_globals.cpp.o.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/lib/platform_efi/CMakeFiles/platform_efi.dir/build.make b/build/lib/platform_efi/CMakeFiles/platform_efi.dir/build.make new file mode 100644 index 000000000..1116714dc --- /dev/null +++ b/build/lib/platform_efi/CMakeFiles/platform_efi.dir/build.make @@ -0,0 +1,162 @@ +# 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 = /opt/homebrew/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/graf/Documents/GitHub/qubic-core/core + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/graf/Documents/GitHub/qubic-core/core/build + +# Include any dependencies generated for this target. +include lib/platform_efi/CMakeFiles/platform_efi.dir/depend.make +# Include any dependencies generated by the compiler for this target. +include lib/platform_efi/CMakeFiles/platform_efi.dir/compiler_depend.make + +# Include the progress variables for this target. +include lib/platform_efi/CMakeFiles/platform_efi.dir/progress.make + +# Include the compile flags for this target's objects. +include lib/platform_efi/CMakeFiles/platform_efi.dir/flags.make + +lib/platform_efi/CMakeFiles/platform_efi.dir/codegen: +.PHONY : lib/platform_efi/CMakeFiles/platform_efi.dir/codegen + +lib/platform_efi/CMakeFiles/platform_efi.dir/edk2_debug.c.o: lib/platform_efi/CMakeFiles/platform_efi.dir/flags.make +lib/platform_efi/CMakeFiles/platform_efi.dir/edk2_debug.c.o: /Users/graf/Documents/GitHub/qubic-core/core/lib/platform_efi/edk2_debug.c +lib/platform_efi/CMakeFiles/platform_efi.dir/edk2_debug.c.o: lib/platform_efi/CMakeFiles/platform_efi.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/graf/Documents/GitHub/qubic-core/core/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building C object lib/platform_efi/CMakeFiles/platform_efi.dir/edk2_debug.c.o" + cd /Users/graf/Documents/GitHub/qubic-core/core/build/lib/platform_efi && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT lib/platform_efi/CMakeFiles/platform_efi.dir/edk2_debug.c.o -MF CMakeFiles/platform_efi.dir/edk2_debug.c.o.d -o CMakeFiles/platform_efi.dir/edk2_debug.c.o -c /Users/graf/Documents/GitHub/qubic-core/core/lib/platform_efi/edk2_debug.c + +lib/platform_efi/CMakeFiles/platform_efi.dir/edk2_debug.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/platform_efi.dir/edk2_debug.c.i" + cd /Users/graf/Documents/GitHub/qubic-core/core/build/lib/platform_efi && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /Users/graf/Documents/GitHub/qubic-core/core/lib/platform_efi/edk2_debug.c > CMakeFiles/platform_efi.dir/edk2_debug.c.i + +lib/platform_efi/CMakeFiles/platform_efi.dir/edk2_debug.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/platform_efi.dir/edk2_debug.c.s" + cd /Users/graf/Documents/GitHub/qubic-core/core/build/lib/platform_efi && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /Users/graf/Documents/GitHub/qubic-core/core/lib/platform_efi/edk2_debug.c -o CMakeFiles/platform_efi.dir/edk2_debug.c.s + +lib/platform_efi/CMakeFiles/platform_efi.dir/processor.cpp.o: lib/platform_efi/CMakeFiles/platform_efi.dir/flags.make +lib/platform_efi/CMakeFiles/platform_efi.dir/processor.cpp.o: /Users/graf/Documents/GitHub/qubic-core/core/lib/platform_efi/processor.cpp +lib/platform_efi/CMakeFiles/platform_efi.dir/processor.cpp.o: lib/platform_efi/CMakeFiles/platform_efi.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/graf/Documents/GitHub/qubic-core/core/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building CXX object lib/platform_efi/CMakeFiles/platform_efi.dir/processor.cpp.o" + cd /Users/graf/Documents/GitHub/qubic-core/core/build/lib/platform_efi && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT lib/platform_efi/CMakeFiles/platform_efi.dir/processor.cpp.o -MF CMakeFiles/platform_efi.dir/processor.cpp.o.d -o CMakeFiles/platform_efi.dir/processor.cpp.o -c /Users/graf/Documents/GitHub/qubic-core/core/lib/platform_efi/processor.cpp + +lib/platform_efi/CMakeFiles/platform_efi.dir/processor.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/platform_efi.dir/processor.cpp.i" + cd /Users/graf/Documents/GitHub/qubic-core/core/build/lib/platform_efi && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/graf/Documents/GitHub/qubic-core/core/lib/platform_efi/processor.cpp > CMakeFiles/platform_efi.dir/processor.cpp.i + +lib/platform_efi/CMakeFiles/platform_efi.dir/processor.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/platform_efi.dir/processor.cpp.s" + cd /Users/graf/Documents/GitHub/qubic-core/core/build/lib/platform_efi && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/graf/Documents/GitHub/qubic-core/core/lib/platform_efi/processor.cpp -o CMakeFiles/platform_efi.dir/processor.cpp.s + +lib/platform_efi/CMakeFiles/platform_efi.dir/sleep.cpp.o: lib/platform_efi/CMakeFiles/platform_efi.dir/flags.make +lib/platform_efi/CMakeFiles/platform_efi.dir/sleep.cpp.o: /Users/graf/Documents/GitHub/qubic-core/core/lib/platform_efi/sleep.cpp +lib/platform_efi/CMakeFiles/platform_efi.dir/sleep.cpp.o: lib/platform_efi/CMakeFiles/platform_efi.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/graf/Documents/GitHub/qubic-core/core/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Building CXX object lib/platform_efi/CMakeFiles/platform_efi.dir/sleep.cpp.o" + cd /Users/graf/Documents/GitHub/qubic-core/core/build/lib/platform_efi && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT lib/platform_efi/CMakeFiles/platform_efi.dir/sleep.cpp.o -MF CMakeFiles/platform_efi.dir/sleep.cpp.o.d -o CMakeFiles/platform_efi.dir/sleep.cpp.o -c /Users/graf/Documents/GitHub/qubic-core/core/lib/platform_efi/sleep.cpp + +lib/platform_efi/CMakeFiles/platform_efi.dir/sleep.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/platform_efi.dir/sleep.cpp.i" + cd /Users/graf/Documents/GitHub/qubic-core/core/build/lib/platform_efi && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/graf/Documents/GitHub/qubic-core/core/lib/platform_efi/sleep.cpp > CMakeFiles/platform_efi.dir/sleep.cpp.i + +lib/platform_efi/CMakeFiles/platform_efi.dir/sleep.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/platform_efi.dir/sleep.cpp.s" + cd /Users/graf/Documents/GitHub/qubic-core/core/build/lib/platform_efi && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/graf/Documents/GitHub/qubic-core/core/lib/platform_efi/sleep.cpp -o CMakeFiles/platform_efi.dir/sleep.cpp.s + +lib/platform_efi/CMakeFiles/platform_efi.dir/uefi_globals.cpp.o: lib/platform_efi/CMakeFiles/platform_efi.dir/flags.make +lib/platform_efi/CMakeFiles/platform_efi.dir/uefi_globals.cpp.o: /Users/graf/Documents/GitHub/qubic-core/core/lib/platform_efi/uefi_globals.cpp +lib/platform_efi/CMakeFiles/platform_efi.dir/uefi_globals.cpp.o: lib/platform_efi/CMakeFiles/platform_efi.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/graf/Documents/GitHub/qubic-core/core/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_4) "Building CXX object lib/platform_efi/CMakeFiles/platform_efi.dir/uefi_globals.cpp.o" + cd /Users/graf/Documents/GitHub/qubic-core/core/build/lib/platform_efi && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT lib/platform_efi/CMakeFiles/platform_efi.dir/uefi_globals.cpp.o -MF CMakeFiles/platform_efi.dir/uefi_globals.cpp.o.d -o CMakeFiles/platform_efi.dir/uefi_globals.cpp.o -c /Users/graf/Documents/GitHub/qubic-core/core/lib/platform_efi/uefi_globals.cpp + +lib/platform_efi/CMakeFiles/platform_efi.dir/uefi_globals.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/platform_efi.dir/uefi_globals.cpp.i" + cd /Users/graf/Documents/GitHub/qubic-core/core/build/lib/platform_efi && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/graf/Documents/GitHub/qubic-core/core/lib/platform_efi/uefi_globals.cpp > CMakeFiles/platform_efi.dir/uefi_globals.cpp.i + +lib/platform_efi/CMakeFiles/platform_efi.dir/uefi_globals.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/platform_efi.dir/uefi_globals.cpp.s" + cd /Users/graf/Documents/GitHub/qubic-core/core/build/lib/platform_efi && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/graf/Documents/GitHub/qubic-core/core/lib/platform_efi/uefi_globals.cpp -o CMakeFiles/platform_efi.dir/uefi_globals.cpp.s + +# Object files for target platform_efi +platform_efi_OBJECTS = \ +"CMakeFiles/platform_efi.dir/edk2_debug.c.o" \ +"CMakeFiles/platform_efi.dir/processor.cpp.o" \ +"CMakeFiles/platform_efi.dir/sleep.cpp.o" \ +"CMakeFiles/platform_efi.dir/uefi_globals.cpp.o" + +# External object files for target platform_efi +platform_efi_EXTERNAL_OBJECTS = + +lib/platform_efi/libplatform_efi.a: lib/platform_efi/CMakeFiles/platform_efi.dir/edk2_debug.c.o +lib/platform_efi/libplatform_efi.a: lib/platform_efi/CMakeFiles/platform_efi.dir/processor.cpp.o +lib/platform_efi/libplatform_efi.a: lib/platform_efi/CMakeFiles/platform_efi.dir/sleep.cpp.o +lib/platform_efi/libplatform_efi.a: lib/platform_efi/CMakeFiles/platform_efi.dir/uefi_globals.cpp.o +lib/platform_efi/libplatform_efi.a: lib/platform_efi/CMakeFiles/platform_efi.dir/build.make +lib/platform_efi/libplatform_efi.a: lib/platform_efi/CMakeFiles/platform_efi.dir/link.txt + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --bold --progress-dir=/Users/graf/Documents/GitHub/qubic-core/core/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_5) "Linking CXX static library libplatform_efi.a" + cd /Users/graf/Documents/GitHub/qubic-core/core/build/lib/platform_efi && $(CMAKE_COMMAND) -P CMakeFiles/platform_efi.dir/cmake_clean_target.cmake + cd /Users/graf/Documents/GitHub/qubic-core/core/build/lib/platform_efi && $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/platform_efi.dir/link.txt --verbose=$(VERBOSE) + +# Rule to build all files generated by this target. +lib/platform_efi/CMakeFiles/platform_efi.dir/build: lib/platform_efi/libplatform_efi.a +.PHONY : lib/platform_efi/CMakeFiles/platform_efi.dir/build + +lib/platform_efi/CMakeFiles/platform_efi.dir/clean: + cd /Users/graf/Documents/GitHub/qubic-core/core/build/lib/platform_efi && $(CMAKE_COMMAND) -P CMakeFiles/platform_efi.dir/cmake_clean.cmake +.PHONY : lib/platform_efi/CMakeFiles/platform_efi.dir/clean + +lib/platform_efi/CMakeFiles/platform_efi.dir/depend: + cd /Users/graf/Documents/GitHub/qubic-core/core/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/graf/Documents/GitHub/qubic-core/core /Users/graf/Documents/GitHub/qubic-core/core/lib/platform_efi /Users/graf/Documents/GitHub/qubic-core/core/build /Users/graf/Documents/GitHub/qubic-core/core/build/lib/platform_efi /Users/graf/Documents/GitHub/qubic-core/core/build/lib/platform_efi/CMakeFiles/platform_efi.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : lib/platform_efi/CMakeFiles/platform_efi.dir/depend + diff --git a/build/lib/platform_efi/CMakeFiles/platform_efi.dir/cmake_clean.cmake b/build/lib/platform_efi/CMakeFiles/platform_efi.dir/cmake_clean.cmake new file mode 100644 index 000000000..b80baad16 --- /dev/null +++ b/build/lib/platform_efi/CMakeFiles/platform_efi.dir/cmake_clean.cmake @@ -0,0 +1,17 @@ +file(REMOVE_RECURSE + "CMakeFiles/platform_efi.dir/edk2_debug.c.o" + "CMakeFiles/platform_efi.dir/edk2_debug.c.o.d" + "CMakeFiles/platform_efi.dir/processor.cpp.o" + "CMakeFiles/platform_efi.dir/processor.cpp.o.d" + "CMakeFiles/platform_efi.dir/sleep.cpp.o" + "CMakeFiles/platform_efi.dir/sleep.cpp.o.d" + "CMakeFiles/platform_efi.dir/uefi_globals.cpp.o" + "CMakeFiles/platform_efi.dir/uefi_globals.cpp.o.d" + "libplatform_efi.a" + "libplatform_efi.pdb" +) + +# Per-language clean rules from dependency scanning. +foreach(lang C CXX) + include(CMakeFiles/platform_efi.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/lib/platform_efi/CMakeFiles/platform_efi.dir/cmake_clean_target.cmake b/build/lib/platform_efi/CMakeFiles/platform_efi.dir/cmake_clean_target.cmake new file mode 100644 index 000000000..93087a670 --- /dev/null +++ b/build/lib/platform_efi/CMakeFiles/platform_efi.dir/cmake_clean_target.cmake @@ -0,0 +1,3 @@ +file(REMOVE_RECURSE + "libplatform_efi.a" +) diff --git a/build/lib/platform_efi/CMakeFiles/platform_efi.dir/compiler_depend.make b/build/lib/platform_efi/CMakeFiles/platform_efi.dir/compiler_depend.make new file mode 100644 index 000000000..314356524 --- /dev/null +++ b/build/lib/platform_efi/CMakeFiles/platform_efi.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty compiler generated dependencies file for platform_efi. +# This may be replaced when dependencies are built. diff --git a/build/lib/platform_efi/CMakeFiles/platform_efi.dir/compiler_depend.ts b/build/lib/platform_efi/CMakeFiles/platform_efi.dir/compiler_depend.ts new file mode 100644 index 000000000..dc73154d4 --- /dev/null +++ b/build/lib/platform_efi/CMakeFiles/platform_efi.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for compiler generated dependencies management for platform_efi. diff --git a/build/lib/platform_efi/CMakeFiles/platform_efi.dir/depend.make b/build/lib/platform_efi/CMakeFiles/platform_efi.dir/depend.make new file mode 100644 index 000000000..121c31f31 --- /dev/null +++ b/build/lib/platform_efi/CMakeFiles/platform_efi.dir/depend.make @@ -0,0 +1,2 @@ +# Empty dependencies file for platform_efi. +# This may be replaced when dependencies are built. diff --git a/build/lib/platform_efi/CMakeFiles/platform_efi.dir/flags.make b/build/lib/platform_efi/CMakeFiles/platform_efi.dir/flags.make new file mode 100644 index 000000000..0e26d1177 --- /dev/null +++ b/build/lib/platform_efi/CMakeFiles/platform_efi.dir/flags.make @@ -0,0 +1,21 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 4.1 + +# compile C with /usr/bin/cc +# compile CXX with /usr/bin/c++ +C_DEFINES = -DNDEBUG -D_LIB + +C_INCLUDES = -I/Users/graf/Documents/GitHub/qubic-core/core/lib/platform_efi -I/Users/graf/Documents/GitHub/qubic-core/core + +C_FLAGSarm64 = -std=gnu11 -arch arm64 -Wall -Wextra -fshort-wchar -O2 -fomit-frame-pointer -fno-lto -mavx -mavx2 -mavx512f -mavx512cd -mavx512vl -mavx512bw -mavx512dq -ffreestanding -mno-red-zone -fno-stack-protector -fno-strict-aliasing -fno-builtin + +C_FLAGS = -std=gnu11 -arch arm64 -Wall -Wextra -fshort-wchar -O2 -fomit-frame-pointer -fno-lto -mavx -mavx2 -mavx512f -mavx512cd -mavx512vl -mavx512bw -mavx512dq -ffreestanding -mno-red-zone -fno-stack-protector -fno-strict-aliasing -fno-builtin + +CXX_DEFINES = -DNDEBUG -D_LIB + +CXX_INCLUDES = -I/Users/graf/Documents/GitHub/qubic-core/core/lib/platform_efi -I/Users/graf/Documents/GitHub/qubic-core/core + +CXX_FLAGSarm64 = -std=gnu++20 -arch arm64 -Wall -Wextra -fshort-wchar -O2 -fomit-frame-pointer -fno-lto -mavx -mavx2 -mavx512f -mavx512cd -mavx512vl -mavx512bw -mavx512dq -ffreestanding -mno-red-zone -fno-stack-protector -fno-strict-aliasing -fno-builtin -fno-rtti -fno-exceptions + +CXX_FLAGS = -std=gnu++20 -arch arm64 -Wall -Wextra -fshort-wchar -O2 -fomit-frame-pointer -fno-lto -mavx -mavx2 -mavx512f -mavx512cd -mavx512vl -mavx512bw -mavx512dq -ffreestanding -mno-red-zone -fno-stack-protector -fno-strict-aliasing -fno-builtin -fno-rtti -fno-exceptions + diff --git a/build/lib/platform_efi/CMakeFiles/platform_efi.dir/link.txt b/build/lib/platform_efi/CMakeFiles/platform_efi.dir/link.txt new file mode 100644 index 000000000..90c843730 --- /dev/null +++ b/build/lib/platform_efi/CMakeFiles/platform_efi.dir/link.txt @@ -0,0 +1,2 @@ +/usr/bin/ar qc libplatform_efi.a CMakeFiles/platform_efi.dir/edk2_debug.c.o CMakeFiles/platform_efi.dir/processor.cpp.o CMakeFiles/platform_efi.dir/sleep.cpp.o CMakeFiles/platform_efi.dir/uefi_globals.cpp.o +/usr/bin/ranlib libplatform_efi.a diff --git a/build/lib/platform_efi/CMakeFiles/platform_efi.dir/progress.make b/build/lib/platform_efi/CMakeFiles/platform_efi.dir/progress.make new file mode 100644 index 000000000..cf53ae886 --- /dev/null +++ b/build/lib/platform_efi/CMakeFiles/platform_efi.dir/progress.make @@ -0,0 +1,6 @@ +CMAKE_PROGRESS_1 = 15 +CMAKE_PROGRESS_2 = 16 +CMAKE_PROGRESS_3 = 17 +CMAKE_PROGRESS_4 = 18 +CMAKE_PROGRESS_5 = 19 + diff --git a/build/lib/platform_efi/CMakeFiles/progress.marks b/build/lib/platform_efi/CMakeFiles/progress.marks new file mode 100644 index 000000000..7ed6ff82d --- /dev/null +++ b/build/lib/platform_efi/CMakeFiles/progress.marks @@ -0,0 +1 @@ +5 diff --git a/build/lib/platform_efi/Makefile b/build/lib/platform_efi/Makefile new file mode 100644 index 000000000..4df7cb018 --- /dev/null +++ b/build/lib/platform_efi/Makefile @@ -0,0 +1,323 @@ +# 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 = /opt/homebrew/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/graf/Documents/GitHub/qubic-core/core + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/graf/Documents/GitHub/qubic-core/core/build + +#============================================================================= +# Targets provided globally by CMake. + +# Special rule for the target test +test: + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running tests..." + /opt/homebrew/bin/ctest $(ARGS) +.PHONY : test + +# Special rule for the target test +test/fast: test +.PHONY : test/fast + +# Special rule for the target edit_cache +edit_cache: + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running CMake cache editor..." + /opt/homebrew/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..." + /opt/homebrew/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 + +# Special rule for the target list_install_components +list_install_components: + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Available install components are: \"Unspecified\" \"gmock\" \"gtest\"" +.PHONY : list_install_components + +# Special rule for the target list_install_components +list_install_components/fast: list_install_components +.PHONY : list_install_components/fast + +# Special rule for the target install +install: preinstall + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Install the project..." + /opt/homebrew/bin/cmake -P cmake_install.cmake +.PHONY : install + +# Special rule for the target install +install/fast: preinstall/fast + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Install the project..." + /opt/homebrew/bin/cmake -P cmake_install.cmake +.PHONY : install/fast + +# Special rule for the target install/local +install/local: preinstall + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing only the local directory..." + /opt/homebrew/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake +.PHONY : install/local + +# Special rule for the target install/local +install/local/fast: preinstall/fast + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing only the local directory..." + /opt/homebrew/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake +.PHONY : install/local/fast + +# Special rule for the target install/strip +install/strip: preinstall + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing the project stripped..." + /opt/homebrew/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake +.PHONY : install/strip + +# Special rule for the target install/strip +install/strip/fast: preinstall/fast + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing the project stripped..." + /opt/homebrew/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake +.PHONY : install/strip/fast + +# The main all target +all: cmake_check_build_system + cd /Users/graf/Documents/GitHub/qubic-core/core/build && $(CMAKE_COMMAND) -E cmake_progress_start /Users/graf/Documents/GitHub/qubic-core/core/build/CMakeFiles /Users/graf/Documents/GitHub/qubic-core/core/build/lib/platform_efi//CMakeFiles/progress.marks + cd /Users/graf/Documents/GitHub/qubic-core/core/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 lib/platform_efi/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/graf/Documents/GitHub/qubic-core/core/build/CMakeFiles 0 +.PHONY : all + +# The main clean target +clean: + cd /Users/graf/Documents/GitHub/qubic-core/core/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 lib/platform_efi/clean +.PHONY : clean + +# The main clean target +clean/fast: clean +.PHONY : clean/fast + +# Prepare targets for installation. +preinstall: all + cd /Users/graf/Documents/GitHub/qubic-core/core/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 lib/platform_efi/preinstall +.PHONY : preinstall + +# Prepare targets for installation. +preinstall/fast: + cd /Users/graf/Documents/GitHub/qubic-core/core/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 lib/platform_efi/preinstall +.PHONY : preinstall/fast + +# clear depends +depend: + cd /Users/graf/Documents/GitHub/qubic-core/core/build && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1 +.PHONY : depend + +# Convenience name for target. +lib/platform_efi/CMakeFiles/platform_efi.dir/rule: + cd /Users/graf/Documents/GitHub/qubic-core/core/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 lib/platform_efi/CMakeFiles/platform_efi.dir/rule +.PHONY : lib/platform_efi/CMakeFiles/platform_efi.dir/rule + +# Convenience name for target. +platform_efi: lib/platform_efi/CMakeFiles/platform_efi.dir/rule +.PHONY : platform_efi + +# fast build rule for target. +platform_efi/fast: + cd /Users/graf/Documents/GitHub/qubic-core/core/build && $(MAKE) $(MAKESILENT) -f lib/platform_efi/CMakeFiles/platform_efi.dir/build.make lib/platform_efi/CMakeFiles/platform_efi.dir/build +.PHONY : platform_efi/fast + +edk2_debug.o: edk2_debug.c.o +.PHONY : edk2_debug.o + +# target to build an object file +edk2_debug.c.o: + cd /Users/graf/Documents/GitHub/qubic-core/core/build && $(MAKE) $(MAKESILENT) -f lib/platform_efi/CMakeFiles/platform_efi.dir/build.make lib/platform_efi/CMakeFiles/platform_efi.dir/edk2_debug.c.o +.PHONY : edk2_debug.c.o + +edk2_debug.i: edk2_debug.c.i +.PHONY : edk2_debug.i + +# target to preprocess a source file +edk2_debug.c.i: + cd /Users/graf/Documents/GitHub/qubic-core/core/build && $(MAKE) $(MAKESILENT) -f lib/platform_efi/CMakeFiles/platform_efi.dir/build.make lib/platform_efi/CMakeFiles/platform_efi.dir/edk2_debug.c.i +.PHONY : edk2_debug.c.i + +edk2_debug.s: edk2_debug.c.s +.PHONY : edk2_debug.s + +# target to generate assembly for a file +edk2_debug.c.s: + cd /Users/graf/Documents/GitHub/qubic-core/core/build && $(MAKE) $(MAKESILENT) -f lib/platform_efi/CMakeFiles/platform_efi.dir/build.make lib/platform_efi/CMakeFiles/platform_efi.dir/edk2_debug.c.s +.PHONY : edk2_debug.c.s + +processor.o: processor.cpp.o +.PHONY : processor.o + +# target to build an object file +processor.cpp.o: + cd /Users/graf/Documents/GitHub/qubic-core/core/build && $(MAKE) $(MAKESILENT) -f lib/platform_efi/CMakeFiles/platform_efi.dir/build.make lib/platform_efi/CMakeFiles/platform_efi.dir/processor.cpp.o +.PHONY : processor.cpp.o + +processor.i: processor.cpp.i +.PHONY : processor.i + +# target to preprocess a source file +processor.cpp.i: + cd /Users/graf/Documents/GitHub/qubic-core/core/build && $(MAKE) $(MAKESILENT) -f lib/platform_efi/CMakeFiles/platform_efi.dir/build.make lib/platform_efi/CMakeFiles/platform_efi.dir/processor.cpp.i +.PHONY : processor.cpp.i + +processor.s: processor.cpp.s +.PHONY : processor.s + +# target to generate assembly for a file +processor.cpp.s: + cd /Users/graf/Documents/GitHub/qubic-core/core/build && $(MAKE) $(MAKESILENT) -f lib/platform_efi/CMakeFiles/platform_efi.dir/build.make lib/platform_efi/CMakeFiles/platform_efi.dir/processor.cpp.s +.PHONY : processor.cpp.s + +sleep.o: sleep.cpp.o +.PHONY : sleep.o + +# target to build an object file +sleep.cpp.o: + cd /Users/graf/Documents/GitHub/qubic-core/core/build && $(MAKE) $(MAKESILENT) -f lib/platform_efi/CMakeFiles/platform_efi.dir/build.make lib/platform_efi/CMakeFiles/platform_efi.dir/sleep.cpp.o +.PHONY : sleep.cpp.o + +sleep.i: sleep.cpp.i +.PHONY : sleep.i + +# target to preprocess a source file +sleep.cpp.i: + cd /Users/graf/Documents/GitHub/qubic-core/core/build && $(MAKE) $(MAKESILENT) -f lib/platform_efi/CMakeFiles/platform_efi.dir/build.make lib/platform_efi/CMakeFiles/platform_efi.dir/sleep.cpp.i +.PHONY : sleep.cpp.i + +sleep.s: sleep.cpp.s +.PHONY : sleep.s + +# target to generate assembly for a file +sleep.cpp.s: + cd /Users/graf/Documents/GitHub/qubic-core/core/build && $(MAKE) $(MAKESILENT) -f lib/platform_efi/CMakeFiles/platform_efi.dir/build.make lib/platform_efi/CMakeFiles/platform_efi.dir/sleep.cpp.s +.PHONY : sleep.cpp.s + +uefi_globals.o: uefi_globals.cpp.o +.PHONY : uefi_globals.o + +# target to build an object file +uefi_globals.cpp.o: + cd /Users/graf/Documents/GitHub/qubic-core/core/build && $(MAKE) $(MAKESILENT) -f lib/platform_efi/CMakeFiles/platform_efi.dir/build.make lib/platform_efi/CMakeFiles/platform_efi.dir/uefi_globals.cpp.o +.PHONY : uefi_globals.cpp.o + +uefi_globals.i: uefi_globals.cpp.i +.PHONY : uefi_globals.i + +# target to preprocess a source file +uefi_globals.cpp.i: + cd /Users/graf/Documents/GitHub/qubic-core/core/build && $(MAKE) $(MAKESILENT) -f lib/platform_efi/CMakeFiles/platform_efi.dir/build.make lib/platform_efi/CMakeFiles/platform_efi.dir/uefi_globals.cpp.i +.PHONY : uefi_globals.cpp.i + +uefi_globals.s: uefi_globals.cpp.s +.PHONY : uefi_globals.s + +# target to generate assembly for a file +uefi_globals.cpp.s: + cd /Users/graf/Documents/GitHub/qubic-core/core/build && $(MAKE) $(MAKESILENT) -f lib/platform_efi/CMakeFiles/platform_efi.dir/build.make lib/platform_efi/CMakeFiles/platform_efi.dir/uefi_globals.cpp.s +.PHONY : uefi_globals.cpp.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 "... install" + @echo "... install/local" + @echo "... install/strip" + @echo "... list_install_components" + @echo "... rebuild_cache" + @echo "... test" + @echo "... platform_efi" + @echo "... edk2_debug.o" + @echo "... edk2_debug.i" + @echo "... edk2_debug.s" + @echo "... processor.o" + @echo "... processor.i" + @echo "... processor.s" + @echo "... sleep.o" + @echo "... sleep.i" + @echo "... sleep.s" + @echo "... uefi_globals.o" + @echo "... uefi_globals.i" + @echo "... uefi_globals.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: + cd /Users/graf/Documents/GitHub/qubic-core/core/build && $(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/lib/platform_efi/cmake_install.cmake b/build/lib/platform_efi/cmake_install.cmake new file mode 100644 index 000000000..e70be4955 --- /dev/null +++ b/build/lib/platform_efi/cmake_install.cmake @@ -0,0 +1,60 @@ +# Install script for directory: /Users/graf/Documents/GitHub/qubic-core/core/lib/platform_efi + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "Release") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "FALSE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/usr/bin/objdump") +endif() + +if(CMAKE_INSTALL_COMPONENT STREQUAL "Unspecified" OR NOT CMAKE_INSTALL_COMPONENT) + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/lib" TYPE STATIC_LIBRARY FILES "/Users/graf/Documents/GitHub/qubic-core/core/build/lib/platform_efi/libplatform_efi.a") + if(EXISTS "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/libplatform_efi.a" AND + NOT IS_SYMLINK "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/libplatform_efi.a") + execute_process(COMMAND "/usr/bin/ranlib" "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/libplatform_efi.a") + endif() +endif() + +if(CMAKE_INSTALL_COMPONENT STREQUAL "Unspecified" OR NOT CMAKE_INSTALL_COMPONENT) + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/include/platform_efi" TYPE FILE FILES + "/Users/graf/Documents/GitHub/qubic-core/core/lib/platform_efi/uefi.h" + "/Users/graf/Documents/GitHub/qubic-core/core/lib/platform_efi/uefi_globals.h" + ) +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "/Users/graf/Documents/GitHub/qubic-core/core/build/lib/platform_efi/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/lib/platform_os/CMakeFiles/CMakeDirectoryInformation.cmake b/build/lib/platform_os/CMakeFiles/CMakeDirectoryInformation.cmake new file mode 100644 index 000000000..e2771e437 --- /dev/null +++ b/build/lib/platform_os/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 "/Users/graf/Documents/GitHub/qubic-core/core") +set(CMAKE_RELATIVE_PATH_TOP_BINARY "/Users/graf/Documents/GitHub/qubic-core/core/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/lib/platform_os/CMakeFiles/platform_os.dir/DependInfo.cmake b/build/lib/platform_os/CMakeFiles/platform_os.dir/DependInfo.cmake new file mode 100644 index 000000000..4bd3ef5b5 --- /dev/null +++ b/build/lib/platform_os/CMakeFiles/platform_os.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 + "/Users/graf/Documents/GitHub/qubic-core/core/lib/platform_os/edk2_debug.c" "lib/platform_os/CMakeFiles/platform_os.dir/edk2_debug.c.o" "gcc" "lib/platform_os/CMakeFiles/platform_os.dir/edk2_debug.c.o.d" + "/Users/graf/Documents/GitHub/qubic-core/core/lib/platform_os/sleep.cpp" "lib/platform_os/CMakeFiles/platform_os.dir/sleep.cpp.o" "gcc" "lib/platform_os/CMakeFiles/platform_os.dir/sleep.cpp.o.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/lib/platform_os/CMakeFiles/platform_os.dir/build.make b/build/lib/platform_os/CMakeFiles/platform_os.dir/build.make new file mode 100644 index 000000000..f75cf221a --- /dev/null +++ b/build/lib/platform_os/CMakeFiles/platform_os.dir/build.make @@ -0,0 +1,130 @@ +# 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 = /opt/homebrew/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/graf/Documents/GitHub/qubic-core/core + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/graf/Documents/GitHub/qubic-core/core/build + +# Include any dependencies generated for this target. +include lib/platform_os/CMakeFiles/platform_os.dir/depend.make +# Include any dependencies generated by the compiler for this target. +include lib/platform_os/CMakeFiles/platform_os.dir/compiler_depend.make + +# Include the progress variables for this target. +include lib/platform_os/CMakeFiles/platform_os.dir/progress.make + +# Include the compile flags for this target's objects. +include lib/platform_os/CMakeFiles/platform_os.dir/flags.make + +lib/platform_os/CMakeFiles/platform_os.dir/codegen: +.PHONY : lib/platform_os/CMakeFiles/platform_os.dir/codegen + +lib/platform_os/CMakeFiles/platform_os.dir/edk2_debug.c.o: lib/platform_os/CMakeFiles/platform_os.dir/flags.make +lib/platform_os/CMakeFiles/platform_os.dir/edk2_debug.c.o: /Users/graf/Documents/GitHub/qubic-core/core/lib/platform_os/edk2_debug.c +lib/platform_os/CMakeFiles/platform_os.dir/edk2_debug.c.o: lib/platform_os/CMakeFiles/platform_os.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/graf/Documents/GitHub/qubic-core/core/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building C object lib/platform_os/CMakeFiles/platform_os.dir/edk2_debug.c.o" + cd /Users/graf/Documents/GitHub/qubic-core/core/build/lib/platform_os && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT lib/platform_os/CMakeFiles/platform_os.dir/edk2_debug.c.o -MF CMakeFiles/platform_os.dir/edk2_debug.c.o.d -o CMakeFiles/platform_os.dir/edk2_debug.c.o -c /Users/graf/Documents/GitHub/qubic-core/core/lib/platform_os/edk2_debug.c + +lib/platform_os/CMakeFiles/platform_os.dir/edk2_debug.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/platform_os.dir/edk2_debug.c.i" + cd /Users/graf/Documents/GitHub/qubic-core/core/build/lib/platform_os && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /Users/graf/Documents/GitHub/qubic-core/core/lib/platform_os/edk2_debug.c > CMakeFiles/platform_os.dir/edk2_debug.c.i + +lib/platform_os/CMakeFiles/platform_os.dir/edk2_debug.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/platform_os.dir/edk2_debug.c.s" + cd /Users/graf/Documents/GitHub/qubic-core/core/build/lib/platform_os && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /Users/graf/Documents/GitHub/qubic-core/core/lib/platform_os/edk2_debug.c -o CMakeFiles/platform_os.dir/edk2_debug.c.s + +lib/platform_os/CMakeFiles/platform_os.dir/sleep.cpp.o: lib/platform_os/CMakeFiles/platform_os.dir/flags.make +lib/platform_os/CMakeFiles/platform_os.dir/sleep.cpp.o: /Users/graf/Documents/GitHub/qubic-core/core/lib/platform_os/sleep.cpp +lib/platform_os/CMakeFiles/platform_os.dir/sleep.cpp.o: lib/platform_os/CMakeFiles/platform_os.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/graf/Documents/GitHub/qubic-core/core/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building CXX object lib/platform_os/CMakeFiles/platform_os.dir/sleep.cpp.o" + cd /Users/graf/Documents/GitHub/qubic-core/core/build/lib/platform_os && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT lib/platform_os/CMakeFiles/platform_os.dir/sleep.cpp.o -MF CMakeFiles/platform_os.dir/sleep.cpp.o.d -o CMakeFiles/platform_os.dir/sleep.cpp.o -c /Users/graf/Documents/GitHub/qubic-core/core/lib/platform_os/sleep.cpp + +lib/platform_os/CMakeFiles/platform_os.dir/sleep.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/platform_os.dir/sleep.cpp.i" + cd /Users/graf/Documents/GitHub/qubic-core/core/build/lib/platform_os && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/graf/Documents/GitHub/qubic-core/core/lib/platform_os/sleep.cpp > CMakeFiles/platform_os.dir/sleep.cpp.i + +lib/platform_os/CMakeFiles/platform_os.dir/sleep.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/platform_os.dir/sleep.cpp.s" + cd /Users/graf/Documents/GitHub/qubic-core/core/build/lib/platform_os && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/graf/Documents/GitHub/qubic-core/core/lib/platform_os/sleep.cpp -o CMakeFiles/platform_os.dir/sleep.cpp.s + +# Object files for target platform_os +platform_os_OBJECTS = \ +"CMakeFiles/platform_os.dir/edk2_debug.c.o" \ +"CMakeFiles/platform_os.dir/sleep.cpp.o" + +# External object files for target platform_os +platform_os_EXTERNAL_OBJECTS = + +lib/platform_os/libplatform_os.a: lib/platform_os/CMakeFiles/platform_os.dir/edk2_debug.c.o +lib/platform_os/libplatform_os.a: lib/platform_os/CMakeFiles/platform_os.dir/sleep.cpp.o +lib/platform_os/libplatform_os.a: lib/platform_os/CMakeFiles/platform_os.dir/build.make +lib/platform_os/libplatform_os.a: lib/platform_os/CMakeFiles/platform_os.dir/link.txt + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --bold --progress-dir=/Users/graf/Documents/GitHub/qubic-core/core/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Linking CXX static library libplatform_os.a" + cd /Users/graf/Documents/GitHub/qubic-core/core/build/lib/platform_os && $(CMAKE_COMMAND) -P CMakeFiles/platform_os.dir/cmake_clean_target.cmake + cd /Users/graf/Documents/GitHub/qubic-core/core/build/lib/platform_os && $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/platform_os.dir/link.txt --verbose=$(VERBOSE) + +# Rule to build all files generated by this target. +lib/platform_os/CMakeFiles/platform_os.dir/build: lib/platform_os/libplatform_os.a +.PHONY : lib/platform_os/CMakeFiles/platform_os.dir/build + +lib/platform_os/CMakeFiles/platform_os.dir/clean: + cd /Users/graf/Documents/GitHub/qubic-core/core/build/lib/platform_os && $(CMAKE_COMMAND) -P CMakeFiles/platform_os.dir/cmake_clean.cmake +.PHONY : lib/platform_os/CMakeFiles/platform_os.dir/clean + +lib/platform_os/CMakeFiles/platform_os.dir/depend: + cd /Users/graf/Documents/GitHub/qubic-core/core/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/graf/Documents/GitHub/qubic-core/core /Users/graf/Documents/GitHub/qubic-core/core/lib/platform_os /Users/graf/Documents/GitHub/qubic-core/core/build /Users/graf/Documents/GitHub/qubic-core/core/build/lib/platform_os /Users/graf/Documents/GitHub/qubic-core/core/build/lib/platform_os/CMakeFiles/platform_os.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : lib/platform_os/CMakeFiles/platform_os.dir/depend + diff --git a/build/lib/platform_os/CMakeFiles/platform_os.dir/cmake_clean.cmake b/build/lib/platform_os/CMakeFiles/platform_os.dir/cmake_clean.cmake new file mode 100644 index 000000000..91ef4a137 --- /dev/null +++ b/build/lib/platform_os/CMakeFiles/platform_os.dir/cmake_clean.cmake @@ -0,0 +1,13 @@ +file(REMOVE_RECURSE + "CMakeFiles/platform_os.dir/edk2_debug.c.o" + "CMakeFiles/platform_os.dir/edk2_debug.c.o.d" + "CMakeFiles/platform_os.dir/sleep.cpp.o" + "CMakeFiles/platform_os.dir/sleep.cpp.o.d" + "libplatform_os.a" + "libplatform_os.pdb" +) + +# Per-language clean rules from dependency scanning. +foreach(lang C CXX) + include(CMakeFiles/platform_os.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/lib/platform_os/CMakeFiles/platform_os.dir/cmake_clean_target.cmake b/build/lib/platform_os/CMakeFiles/platform_os.dir/cmake_clean_target.cmake new file mode 100644 index 000000000..1de3a2ce2 --- /dev/null +++ b/build/lib/platform_os/CMakeFiles/platform_os.dir/cmake_clean_target.cmake @@ -0,0 +1,3 @@ +file(REMOVE_RECURSE + "libplatform_os.a" +) diff --git a/build/lib/platform_os/CMakeFiles/platform_os.dir/compiler_depend.make b/build/lib/platform_os/CMakeFiles/platform_os.dir/compiler_depend.make new file mode 100644 index 000000000..8a44e2f91 --- /dev/null +++ b/build/lib/platform_os/CMakeFiles/platform_os.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty compiler generated dependencies file for platform_os. +# This may be replaced when dependencies are built. diff --git a/build/lib/platform_os/CMakeFiles/platform_os.dir/compiler_depend.ts b/build/lib/platform_os/CMakeFiles/platform_os.dir/compiler_depend.ts new file mode 100644 index 000000000..9c7668b29 --- /dev/null +++ b/build/lib/platform_os/CMakeFiles/platform_os.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for compiler generated dependencies management for platform_os. diff --git a/build/lib/platform_os/CMakeFiles/platform_os.dir/depend.make b/build/lib/platform_os/CMakeFiles/platform_os.dir/depend.make new file mode 100644 index 000000000..422a8d9b7 --- /dev/null +++ b/build/lib/platform_os/CMakeFiles/platform_os.dir/depend.make @@ -0,0 +1,2 @@ +# Empty dependencies file for platform_os. +# This may be replaced when dependencies are built. diff --git a/build/lib/platform_os/CMakeFiles/platform_os.dir/flags.make b/build/lib/platform_os/CMakeFiles/platform_os.dir/flags.make new file mode 100644 index 000000000..e8f669e34 --- /dev/null +++ b/build/lib/platform_os/CMakeFiles/platform_os.dir/flags.make @@ -0,0 +1,21 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 4.1 + +# compile C with /usr/bin/cc +# compile CXX with /usr/bin/c++ +C_DEFINES = -DNDEBUG -D_LIB + +C_INCLUDES = -I/Users/graf/Documents/GitHub/qubic-core/core/lib/platform_os -I/Users/graf/Documents/GitHub/qubic-core/core + +C_FLAGSarm64 = -std=gnu11 -arch arm64 -Wall -Wextra -fshort-wchar -O2 -fomit-frame-pointer -fno-lto -mavx -mavx2 -mavx512f -mavx512cd -mavx512vl -mavx512bw -mavx512dq -fno-stack-protector + +C_FLAGS = -std=gnu11 -arch arm64 -Wall -Wextra -fshort-wchar -O2 -fomit-frame-pointer -fno-lto -mavx -mavx2 -mavx512f -mavx512cd -mavx512vl -mavx512bw -mavx512dq -fno-stack-protector + +CXX_DEFINES = -DNDEBUG -D_LIB + +CXX_INCLUDES = -I/Users/graf/Documents/GitHub/qubic-core/core/lib/platform_os -I/Users/graf/Documents/GitHub/qubic-core/core + +CXX_FLAGSarm64 = -std=gnu++20 -arch arm64 -Wall -Wextra -fshort-wchar -O2 -fomit-frame-pointer -fno-lto -mavx -mavx2 -mavx512f -mavx512cd -mavx512vl -mavx512bw -mavx512dq -fno-stack-protector + +CXX_FLAGS = -std=gnu++20 -arch arm64 -Wall -Wextra -fshort-wchar -O2 -fomit-frame-pointer -fno-lto -mavx -mavx2 -mavx512f -mavx512cd -mavx512vl -mavx512bw -mavx512dq -fno-stack-protector + diff --git a/build/lib/platform_os/CMakeFiles/platform_os.dir/link.txt b/build/lib/platform_os/CMakeFiles/platform_os.dir/link.txt new file mode 100644 index 000000000..97aa96213 --- /dev/null +++ b/build/lib/platform_os/CMakeFiles/platform_os.dir/link.txt @@ -0,0 +1,2 @@ +/usr/bin/ar qc libplatform_os.a CMakeFiles/platform_os.dir/edk2_debug.c.o CMakeFiles/platform_os.dir/sleep.cpp.o +/usr/bin/ranlib libplatform_os.a diff --git a/build/lib/platform_os/CMakeFiles/platform_os.dir/progress.make b/build/lib/platform_os/CMakeFiles/platform_os.dir/progress.make new file mode 100644 index 000000000..e6d9ab3ad --- /dev/null +++ b/build/lib/platform_os/CMakeFiles/platform_os.dir/progress.make @@ -0,0 +1,4 @@ +CMAKE_PROGRESS_1 = 20 +CMAKE_PROGRESS_2 = 21 +CMAKE_PROGRESS_3 = 22 + diff --git a/build/lib/platform_os/CMakeFiles/progress.marks b/build/lib/platform_os/CMakeFiles/progress.marks new file mode 100644 index 000000000..00750edc0 --- /dev/null +++ b/build/lib/platform_os/CMakeFiles/progress.marks @@ -0,0 +1 @@ +3 diff --git a/build/lib/platform_os/CTestTestfile.cmake b/build/lib/platform_os/CTestTestfile.cmake new file mode 100644 index 000000000..9bb7467e6 --- /dev/null +++ b/build/lib/platform_os/CTestTestfile.cmake @@ -0,0 +1,6 @@ +# CMake generated Testfile for +# Source directory: /Users/graf/Documents/GitHub/qubic-core/core/lib/platform_os +# Build directory: /Users/graf/Documents/GitHub/qubic-core/core/build/lib/platform_os +# +# This file includes the relevant testing commands required for +# testing this directory and lists subdirectories to be tested as well. diff --git a/build/lib/platform_os/Makefile b/build/lib/platform_os/Makefile new file mode 100644 index 000000000..5e4c4f2ce --- /dev/null +++ b/build/lib/platform_os/Makefile @@ -0,0 +1,269 @@ +# 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 = /opt/homebrew/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/graf/Documents/GitHub/qubic-core/core + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/graf/Documents/GitHub/qubic-core/core/build + +#============================================================================= +# Targets provided globally by CMake. + +# Special rule for the target test +test: + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running tests..." + /opt/homebrew/bin/ctest $(ARGS) +.PHONY : test + +# Special rule for the target test +test/fast: test +.PHONY : test/fast + +# Special rule for the target edit_cache +edit_cache: + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running CMake cache editor..." + /opt/homebrew/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..." + /opt/homebrew/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 + +# Special rule for the target list_install_components +list_install_components: + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Available install components are: \"Unspecified\" \"gmock\" \"gtest\"" +.PHONY : list_install_components + +# Special rule for the target list_install_components +list_install_components/fast: list_install_components +.PHONY : list_install_components/fast + +# Special rule for the target install +install: preinstall + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Install the project..." + /opt/homebrew/bin/cmake -P cmake_install.cmake +.PHONY : install + +# Special rule for the target install +install/fast: preinstall/fast + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Install the project..." + /opt/homebrew/bin/cmake -P cmake_install.cmake +.PHONY : install/fast + +# Special rule for the target install/local +install/local: preinstall + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing only the local directory..." + /opt/homebrew/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake +.PHONY : install/local + +# Special rule for the target install/local +install/local/fast: preinstall/fast + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing only the local directory..." + /opt/homebrew/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake +.PHONY : install/local/fast + +# Special rule for the target install/strip +install/strip: preinstall + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing the project stripped..." + /opt/homebrew/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake +.PHONY : install/strip + +# Special rule for the target install/strip +install/strip/fast: preinstall/fast + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing the project stripped..." + /opt/homebrew/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake +.PHONY : install/strip/fast + +# The main all target +all: cmake_check_build_system + cd /Users/graf/Documents/GitHub/qubic-core/core/build && $(CMAKE_COMMAND) -E cmake_progress_start /Users/graf/Documents/GitHub/qubic-core/core/build/CMakeFiles /Users/graf/Documents/GitHub/qubic-core/core/build/lib/platform_os//CMakeFiles/progress.marks + cd /Users/graf/Documents/GitHub/qubic-core/core/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 lib/platform_os/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/graf/Documents/GitHub/qubic-core/core/build/CMakeFiles 0 +.PHONY : all + +# The main clean target +clean: + cd /Users/graf/Documents/GitHub/qubic-core/core/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 lib/platform_os/clean +.PHONY : clean + +# The main clean target +clean/fast: clean +.PHONY : clean/fast + +# Prepare targets for installation. +preinstall: all + cd /Users/graf/Documents/GitHub/qubic-core/core/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 lib/platform_os/preinstall +.PHONY : preinstall + +# Prepare targets for installation. +preinstall/fast: + cd /Users/graf/Documents/GitHub/qubic-core/core/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 lib/platform_os/preinstall +.PHONY : preinstall/fast + +# clear depends +depend: + cd /Users/graf/Documents/GitHub/qubic-core/core/build && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1 +.PHONY : depend + +# Convenience name for target. +lib/platform_os/CMakeFiles/platform_os.dir/rule: + cd /Users/graf/Documents/GitHub/qubic-core/core/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 lib/platform_os/CMakeFiles/platform_os.dir/rule +.PHONY : lib/platform_os/CMakeFiles/platform_os.dir/rule + +# Convenience name for target. +platform_os: lib/platform_os/CMakeFiles/platform_os.dir/rule +.PHONY : platform_os + +# fast build rule for target. +platform_os/fast: + cd /Users/graf/Documents/GitHub/qubic-core/core/build && $(MAKE) $(MAKESILENT) -f lib/platform_os/CMakeFiles/platform_os.dir/build.make lib/platform_os/CMakeFiles/platform_os.dir/build +.PHONY : platform_os/fast + +edk2_debug.o: edk2_debug.c.o +.PHONY : edk2_debug.o + +# target to build an object file +edk2_debug.c.o: + cd /Users/graf/Documents/GitHub/qubic-core/core/build && $(MAKE) $(MAKESILENT) -f lib/platform_os/CMakeFiles/platform_os.dir/build.make lib/platform_os/CMakeFiles/platform_os.dir/edk2_debug.c.o +.PHONY : edk2_debug.c.o + +edk2_debug.i: edk2_debug.c.i +.PHONY : edk2_debug.i + +# target to preprocess a source file +edk2_debug.c.i: + cd /Users/graf/Documents/GitHub/qubic-core/core/build && $(MAKE) $(MAKESILENT) -f lib/platform_os/CMakeFiles/platform_os.dir/build.make lib/platform_os/CMakeFiles/platform_os.dir/edk2_debug.c.i +.PHONY : edk2_debug.c.i + +edk2_debug.s: edk2_debug.c.s +.PHONY : edk2_debug.s + +# target to generate assembly for a file +edk2_debug.c.s: + cd /Users/graf/Documents/GitHub/qubic-core/core/build && $(MAKE) $(MAKESILENT) -f lib/platform_os/CMakeFiles/platform_os.dir/build.make lib/platform_os/CMakeFiles/platform_os.dir/edk2_debug.c.s +.PHONY : edk2_debug.c.s + +sleep.o: sleep.cpp.o +.PHONY : sleep.o + +# target to build an object file +sleep.cpp.o: + cd /Users/graf/Documents/GitHub/qubic-core/core/build && $(MAKE) $(MAKESILENT) -f lib/platform_os/CMakeFiles/platform_os.dir/build.make lib/platform_os/CMakeFiles/platform_os.dir/sleep.cpp.o +.PHONY : sleep.cpp.o + +sleep.i: sleep.cpp.i +.PHONY : sleep.i + +# target to preprocess a source file +sleep.cpp.i: + cd /Users/graf/Documents/GitHub/qubic-core/core/build && $(MAKE) $(MAKESILENT) -f lib/platform_os/CMakeFiles/platform_os.dir/build.make lib/platform_os/CMakeFiles/platform_os.dir/sleep.cpp.i +.PHONY : sleep.cpp.i + +sleep.s: sleep.cpp.s +.PHONY : sleep.s + +# target to generate assembly for a file +sleep.cpp.s: + cd /Users/graf/Documents/GitHub/qubic-core/core/build && $(MAKE) $(MAKESILENT) -f lib/platform_os/CMakeFiles/platform_os.dir/build.make lib/platform_os/CMakeFiles/platform_os.dir/sleep.cpp.s +.PHONY : sleep.cpp.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 "... install" + @echo "... install/local" + @echo "... install/strip" + @echo "... list_install_components" + @echo "... rebuild_cache" + @echo "... test" + @echo "... platform_os" + @echo "... edk2_debug.o" + @echo "... edk2_debug.i" + @echo "... edk2_debug.s" + @echo "... sleep.o" + @echo "... sleep.i" + @echo "... sleep.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: + cd /Users/graf/Documents/GitHub/qubic-core/core/build && $(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/lib/platform_os/cmake_install.cmake b/build/lib/platform_os/cmake_install.cmake new file mode 100644 index 000000000..27b780cb6 --- /dev/null +++ b/build/lib/platform_os/cmake_install.cmake @@ -0,0 +1,53 @@ +# Install script for directory: /Users/graf/Documents/GitHub/qubic-core/core/lib/platform_os + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "Release") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "FALSE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/usr/bin/objdump") +endif() + +if(CMAKE_INSTALL_COMPONENT STREQUAL "Unspecified" OR NOT CMAKE_INSTALL_COMPONENT) + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/lib" TYPE STATIC_LIBRARY FILES "/Users/graf/Documents/GitHub/qubic-core/core/build/lib/platform_os/libplatform_os.a") + if(EXISTS "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/libplatform_os.a" AND + NOT IS_SYMLINK "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/libplatform_os.a") + execute_process(COMMAND "/usr/bin/ranlib" "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/libplatform_os.a") + endif() +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "/Users/graf/Documents/GitHub/qubic-core/core/build/lib/platform_os/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/src/CMakeFiles/CMakeDirectoryInformation.cmake b/build/src/CMakeFiles/CMakeDirectoryInformation.cmake new file mode 100644 index 000000000..e2771e437 --- /dev/null +++ b/build/src/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 "/Users/graf/Documents/GitHub/qubic-core/core") +set(CMAKE_RELATIVE_PATH_TOP_BINARY "/Users/graf/Documents/GitHub/qubic-core/core/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/src/CMakeFiles/Qubic.dir/DependInfo.cmake b/build/src/CMakeFiles/Qubic.dir/DependInfo.cmake new file mode 100644 index 000000000..9a63d80b5 --- /dev/null +++ b/build/src/CMakeFiles/Qubic.dir/DependInfo.cmake @@ -0,0 +1,44 @@ + +# 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 + "ASM_MASM" + ) +# The set of files for implicit dependencies of each language: +set(CMAKE_DEPENDS_CHECK_ASM_MASM + "/Users/graf/Documents/GitHub/qubic-core/core/src/platform/custom_stack.asm" "/Users/graf/Documents/GitHub/qubic-core/core/build/src/CMakeFiles/Qubic.dir/platform/custom_stack.asm.o" + ) + +# Preprocessor definitions for this target. +set(CMAKE_TARGET_DEFINITIONS_ASM_MASM + "NDEBUG" + "Qubic_EXPORTS" + "_LIB" + ) + +# The include file search paths: +set(CMAKE_ASM_MASM_TARGET_INCLUDE_PATH + "/Users/graf/Documents/GitHub/qubic-core/core/src" + "/Users/graf/Documents/GitHub/qubic-core/core/lib" + "/Users/graf/Documents/GitHub/qubic-core/core/lib/platform_common/edk2_mdepkg/Include" + "/Users/graf/Documents/GitHub/qubic-core/core/lib/platform_common" + "/Users/graf/Documents/GitHub/qubic-core/core" + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + "/Users/graf/Documents/GitHub/qubic-core/core/src/qubic.cpp" "src/CMakeFiles/Qubic.dir/qubic.cpp.o" "gcc" "src/CMakeFiles/Qubic.dir/qubic.cpp.o.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/src/CMakeFiles/Qubic.dir/build.make b/build/src/CMakeFiles/Qubic.dir/build.make new file mode 100644 index 000000000..e3bb8db5c --- /dev/null +++ b/build/src/CMakeFiles/Qubic.dir/build.make @@ -0,0 +1,122 @@ +# 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 = /opt/homebrew/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/graf/Documents/GitHub/qubic-core/core + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/graf/Documents/GitHub/qubic-core/core/build + +# Include any dependencies generated for this target. +include src/CMakeFiles/Qubic.dir/depend.make +# Include any dependencies generated by the compiler for this target. +include src/CMakeFiles/Qubic.dir/compiler_depend.make + +# Include the progress variables for this target. +include src/CMakeFiles/Qubic.dir/progress.make + +# Include the compile flags for this target's objects. +include src/CMakeFiles/Qubic.dir/flags.make + +src/CMakeFiles/Qubic.dir/codegen: +.PHONY : src/CMakeFiles/Qubic.dir/codegen + +src/CMakeFiles/Qubic.dir/qubic.cpp.o: src/CMakeFiles/Qubic.dir/flags.make +src/CMakeFiles/Qubic.dir/qubic.cpp.o: /Users/graf/Documents/GitHub/qubic-core/core/src/qubic.cpp +src/CMakeFiles/Qubic.dir/qubic.cpp.o: src/CMakeFiles/Qubic.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/graf/Documents/GitHub/qubic-core/core/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object src/CMakeFiles/Qubic.dir/qubic.cpp.o" + cd /Users/graf/Documents/GitHub/qubic-core/core/build/src && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT src/CMakeFiles/Qubic.dir/qubic.cpp.o -MF CMakeFiles/Qubic.dir/qubic.cpp.o.d -o CMakeFiles/Qubic.dir/qubic.cpp.o -c /Users/graf/Documents/GitHub/qubic-core/core/src/qubic.cpp + +src/CMakeFiles/Qubic.dir/qubic.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/Qubic.dir/qubic.cpp.i" + cd /Users/graf/Documents/GitHub/qubic-core/core/build/src && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/graf/Documents/GitHub/qubic-core/core/src/qubic.cpp > CMakeFiles/Qubic.dir/qubic.cpp.i + +src/CMakeFiles/Qubic.dir/qubic.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/Qubic.dir/qubic.cpp.s" + cd /Users/graf/Documents/GitHub/qubic-core/core/build/src && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/graf/Documents/GitHub/qubic-core/core/src/qubic.cpp -o CMakeFiles/Qubic.dir/qubic.cpp.s + +src/CMakeFiles/Qubic.dir/platform/custom_stack.asm.o: src/CMakeFiles/Qubic.dir/flags.make +src/CMakeFiles/Qubic.dir/platform/custom_stack.asm.o: /Users/graf/Documents/GitHub/qubic-core/core/src/platform/custom_stack.asm + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/graf/Documents/GitHub/qubic-core/core/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building ASM_MASM object src/CMakeFiles/Qubic.dir/platform/custom_stack.asm.o" + cd /Users/graf/Documents/GitHub/qubic-core/core/build/src && ml $(ASM_MASM_DEFINES) $(ASM_MASM_INCLUDES) $(ASM_MASM_FLAGS) -c -Fo CMakeFiles/Qubic.dir/platform/custom_stack.asm.o /Users/graf/Documents/GitHub/qubic-core/core/src/platform/custom_stack.asm + +# Object files for target Qubic +Qubic_OBJECTS = \ +"CMakeFiles/Qubic.dir/qubic.cpp.o" \ +"CMakeFiles/Qubic.dir/platform/custom_stack.asm.o" + +# External object files for target Qubic +Qubic_EXTERNAL_OBJECTS = + +src/libQubic.efi: src/CMakeFiles/Qubic.dir/qubic.cpp.o +src/libQubic.efi: src/CMakeFiles/Qubic.dir/platform/custom_stack.asm.o +src/libQubic.efi: src/CMakeFiles/Qubic.dir/build.make +src/libQubic.efi: lib/platform_common/libplatform_common.a +src/libQubic.efi: lib/platform_efi/libplatform_efi.a +src/libQubic.efi: src/CMakeFiles/Qubic.dir/link.txt + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --bold --progress-dir=/Users/graf/Documents/GitHub/qubic-core/core/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Linking CXX shared library libQubic.efi" + cd /Users/graf/Documents/GitHub/qubic-core/core/build/src && $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/Qubic.dir/link.txt --verbose=$(VERBOSE) + +# Rule to build all files generated by this target. +src/CMakeFiles/Qubic.dir/build: src/libQubic.efi +.PHONY : src/CMakeFiles/Qubic.dir/build + +src/CMakeFiles/Qubic.dir/clean: + cd /Users/graf/Documents/GitHub/qubic-core/core/build/src && $(CMAKE_COMMAND) -P CMakeFiles/Qubic.dir/cmake_clean.cmake +.PHONY : src/CMakeFiles/Qubic.dir/clean + +src/CMakeFiles/Qubic.dir/depend: + cd /Users/graf/Documents/GitHub/qubic-core/core/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/graf/Documents/GitHub/qubic-core/core /Users/graf/Documents/GitHub/qubic-core/core/src /Users/graf/Documents/GitHub/qubic-core/core/build /Users/graf/Documents/GitHub/qubic-core/core/build/src /Users/graf/Documents/GitHub/qubic-core/core/build/src/CMakeFiles/Qubic.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : src/CMakeFiles/Qubic.dir/depend + diff --git a/build/src/CMakeFiles/Qubic.dir/cmake_clean.cmake b/build/src/CMakeFiles/Qubic.dir/cmake_clean.cmake new file mode 100644 index 000000000..29333630a --- /dev/null +++ b/build/src/CMakeFiles/Qubic.dir/cmake_clean.cmake @@ -0,0 +1,12 @@ +file(REMOVE_RECURSE + "CMakeFiles/Qubic.dir/platform/custom_stack.asm.o" + "CMakeFiles/Qubic.dir/qubic.cpp.o" + "CMakeFiles/Qubic.dir/qubic.cpp.o.d" + "libQubic.efi" + "libQubic.pdb" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ASM_MASM CXX) + include(CMakeFiles/Qubic.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/src/CMakeFiles/Qubic.dir/compiler_depend.make b/build/src/CMakeFiles/Qubic.dir/compiler_depend.make new file mode 100644 index 000000000..f74b3a124 --- /dev/null +++ b/build/src/CMakeFiles/Qubic.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty compiler generated dependencies file for Qubic. +# This may be replaced when dependencies are built. diff --git a/build/src/CMakeFiles/Qubic.dir/compiler_depend.ts b/build/src/CMakeFiles/Qubic.dir/compiler_depend.ts new file mode 100644 index 000000000..82ce9a184 --- /dev/null +++ b/build/src/CMakeFiles/Qubic.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for compiler generated dependencies management for Qubic. diff --git a/build/src/CMakeFiles/Qubic.dir/depend.make b/build/src/CMakeFiles/Qubic.dir/depend.make new file mode 100644 index 000000000..6c25962f1 --- /dev/null +++ b/build/src/CMakeFiles/Qubic.dir/depend.make @@ -0,0 +1,2 @@ +# Empty dependencies file for Qubic. +# This may be replaced when dependencies are built. diff --git a/build/src/CMakeFiles/Qubic.dir/flags.make b/build/src/CMakeFiles/Qubic.dir/flags.make new file mode 100644 index 000000000..e3edeb8fc --- /dev/null +++ b/build/src/CMakeFiles/Qubic.dir/flags.make @@ -0,0 +1,23 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 4.1 + +# compile ASM_MASM with ml +# compile CXX with /usr/bin/c++ +ASM_MASM_DEFINES = -DNDEBUG -DQubic_EXPORTS -D_LIB + +ASM_MASM_INCLUDES = -I/Users/graf/Documents/GitHub/qubic-core/core/src -I/Users/graf/Documents/GitHub/qubic-core/core/lib -I/Users/graf/Documents/GitHub/qubic-core/core/lib/platform_common/edk2_mdepkg/Include -I/Users/graf/Documents/GitHub/qubic-core/core/lib/platform_common -I/Users/graf/Documents/GitHub/qubic-core/core + +ASM_MASM_FLAGSarm64 = -D_CONSOLE -DNDEBUG -mrdrnd -target x86_64-unknown-windows -Werror -Wno-unused-parameter -Wall -Wextra -fshort-wchar -O2 -fomit-frame-pointer -fno-lto -mavx -mavx2 -mavx512f -mavx512cd -mavx512vl -mavx512bw -mavx512dq -ffreestanding -mno-red-zone -fno-stack-protector -fno-strict-aliasing -fno-builtin + +ASM_MASM_FLAGS = -D_CONSOLE -DNDEBUG -mrdrnd -target x86_64-unknown-windows -Werror -Wno-unused-parameter -Wall -Wextra -fshort-wchar -O2 -fomit-frame-pointer -fno-lto -mavx -mavx2 -mavx512f -mavx512cd -mavx512vl -mavx512bw -mavx512dq -ffreestanding -mno-red-zone -fno-stack-protector -fno-strict-aliasing -fno-builtin + +CXX_DEFINES = -DNDEBUG -DQubic_EXPORTS -D_LIB + +CXX_INCLUDES = -I/Users/graf/Documents/GitHub/qubic-core/core/src -I/Users/graf/Documents/GitHub/qubic-core/core/lib -I/Users/graf/Documents/GitHub/qubic-core/core/lib/platform_common/edk2_mdepkg/Include -I/Users/graf/Documents/GitHub/qubic-core/core/lib/platform_common -I/Users/graf/Documents/GitHub/qubic-core/core + +CXX_FLAGSarm64 = -std=gnu++20 -arch arm64 -fPIC -D_CONSOLE -DNDEBUG -mrdrnd -target x86_64-unknown-windows -Werror -Wno-unused-parameter -Wall -Wextra -fshort-wchar -O2 -fomit-frame-pointer -fno-lto -mavx -mavx2 -mavx512f -mavx512cd -mavx512vl -mavx512bw -mavx512dq -ffreestanding -mno-red-zone -fno-stack-protector -fno-strict-aliasing -fno-builtin -fno-rtti -fno-exceptions + +CXX_FLAGS = -std=gnu++20 -arch arm64 -fPIC -D_CONSOLE -DNDEBUG -mrdrnd -target x86_64-unknown-windows -Werror -Wno-unused-parameter -Wall -Wextra -fshort-wchar -O2 -fomit-frame-pointer -fno-lto -mavx -mavx2 -mavx512f -mavx512cd -mavx512vl -mavx512bw -mavx512dq -ffreestanding -mno-red-zone -fno-stack-protector -fno-strict-aliasing -fno-builtin -fno-rtti -fno-exceptions + +# Custom flags: src/CMakeFiles/Qubic.dir/platform/custom_stack.asm.o_FLAGS = + diff --git a/build/src/CMakeFiles/Qubic.dir/link.txt b/build/src/CMakeFiles/Qubic.dir/link.txt new file mode 100644 index 000000000..ef3c29288 --- /dev/null +++ b/build/src/CMakeFiles/Qubic.dir/link.txt @@ -0,0 +1 @@ +/usr/bin/c++ -arch arm64 -dynamiclib -Wl,-headerpad_max_install_names -o libQubic.efi -install_name @rpath/libQubic.efi CMakeFiles/Qubic.dir/qubic.cpp.o CMakeFiles/Qubic.dir/platform/custom_stack.asm.o ../lib/platform_common/libplatform_common.a ../lib/platform_efi/libplatform_efi.a diff --git a/build/src/CMakeFiles/Qubic.dir/progress.make b/build/src/CMakeFiles/Qubic.dir/progress.make new file mode 100644 index 000000000..6a9dc74f4 --- /dev/null +++ b/build/src/CMakeFiles/Qubic.dir/progress.make @@ -0,0 +1,4 @@ +CMAKE_PROGRESS_1 = 1 +CMAKE_PROGRESS_2 = 2 +CMAKE_PROGRESS_3 = 3 + diff --git a/build/src/CMakeFiles/progress.marks b/build/src/CMakeFiles/progress.marks new file mode 100644 index 000000000..b4de39476 --- /dev/null +++ b/build/src/CMakeFiles/progress.marks @@ -0,0 +1 @@ +11 diff --git a/build/src/CTestTestfile.cmake b/build/src/CTestTestfile.cmake new file mode 100644 index 000000000..ff154880a --- /dev/null +++ b/build/src/CTestTestfile.cmake @@ -0,0 +1,6 @@ +# CMake generated Testfile for +# Source directory: /Users/graf/Documents/GitHub/qubic-core/core/src +# Build directory: /Users/graf/Documents/GitHub/qubic-core/core/build/src +# +# This file includes the relevant testing commands required for +# testing this directory and lists subdirectories to be tested as well. diff --git a/build/src/Makefile b/build/src/Makefile new file mode 100644 index 000000000..48e3a2f23 --- /dev/null +++ b/build/src/Makefile @@ -0,0 +1,251 @@ +# 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 = /opt/homebrew/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/graf/Documents/GitHub/qubic-core/core + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/graf/Documents/GitHub/qubic-core/core/build + +#============================================================================= +# Targets provided globally by CMake. + +# Special rule for the target test +test: + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running tests..." + /opt/homebrew/bin/ctest $(ARGS) +.PHONY : test + +# Special rule for the target test +test/fast: test +.PHONY : test/fast + +# Special rule for the target edit_cache +edit_cache: + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running CMake cache editor..." + /opt/homebrew/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..." + /opt/homebrew/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 + +# Special rule for the target list_install_components +list_install_components: + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Available install components are: \"Unspecified\" \"gmock\" \"gtest\"" +.PHONY : list_install_components + +# Special rule for the target list_install_components +list_install_components/fast: list_install_components +.PHONY : list_install_components/fast + +# Special rule for the target install +install: preinstall + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Install the project..." + /opt/homebrew/bin/cmake -P cmake_install.cmake +.PHONY : install + +# Special rule for the target install +install/fast: preinstall/fast + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Install the project..." + /opt/homebrew/bin/cmake -P cmake_install.cmake +.PHONY : install/fast + +# Special rule for the target install/local +install/local: preinstall + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing only the local directory..." + /opt/homebrew/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake +.PHONY : install/local + +# Special rule for the target install/local +install/local/fast: preinstall/fast + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing only the local directory..." + /opt/homebrew/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake +.PHONY : install/local/fast + +# Special rule for the target install/strip +install/strip: preinstall + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing the project stripped..." + /opt/homebrew/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake +.PHONY : install/strip + +# Special rule for the target install/strip +install/strip/fast: preinstall/fast + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing the project stripped..." + /opt/homebrew/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake +.PHONY : install/strip/fast + +# The main all target +all: cmake_check_build_system + cd /Users/graf/Documents/GitHub/qubic-core/core/build && $(CMAKE_COMMAND) -E cmake_progress_start /Users/graf/Documents/GitHub/qubic-core/core/build/CMakeFiles /Users/graf/Documents/GitHub/qubic-core/core/build/src//CMakeFiles/progress.marks + cd /Users/graf/Documents/GitHub/qubic-core/core/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 src/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/graf/Documents/GitHub/qubic-core/core/build/CMakeFiles 0 +.PHONY : all + +# The main clean target +clean: + cd /Users/graf/Documents/GitHub/qubic-core/core/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 src/clean +.PHONY : clean + +# The main clean target +clean/fast: clean +.PHONY : clean/fast + +# Prepare targets for installation. +preinstall: all + cd /Users/graf/Documents/GitHub/qubic-core/core/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 src/preinstall +.PHONY : preinstall + +# Prepare targets for installation. +preinstall/fast: + cd /Users/graf/Documents/GitHub/qubic-core/core/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 src/preinstall +.PHONY : preinstall/fast + +# clear depends +depend: + cd /Users/graf/Documents/GitHub/qubic-core/core/build && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1 +.PHONY : depend + +# Convenience name for target. +src/CMakeFiles/Qubic.dir/rule: + cd /Users/graf/Documents/GitHub/qubic-core/core/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 src/CMakeFiles/Qubic.dir/rule +.PHONY : src/CMakeFiles/Qubic.dir/rule + +# Convenience name for target. +Qubic: src/CMakeFiles/Qubic.dir/rule +.PHONY : Qubic + +# fast build rule for target. +Qubic/fast: + cd /Users/graf/Documents/GitHub/qubic-core/core/build && $(MAKE) $(MAKESILENT) -f src/CMakeFiles/Qubic.dir/build.make src/CMakeFiles/Qubic.dir/build +.PHONY : Qubic/fast + +platform/custom_stack.o: platform/custom_stack.asm.o +.PHONY : platform/custom_stack.o + +# target to build an object file +platform/custom_stack.asm.o: + cd /Users/graf/Documents/GitHub/qubic-core/core/build && $(MAKE) $(MAKESILENT) -f src/CMakeFiles/Qubic.dir/build.make src/CMakeFiles/Qubic.dir/platform/custom_stack.asm.o +.PHONY : platform/custom_stack.asm.o + +qubic.o: qubic.cpp.o +.PHONY : qubic.o + +# target to build an object file +qubic.cpp.o: + cd /Users/graf/Documents/GitHub/qubic-core/core/build && $(MAKE) $(MAKESILENT) -f src/CMakeFiles/Qubic.dir/build.make src/CMakeFiles/Qubic.dir/qubic.cpp.o +.PHONY : qubic.cpp.o + +qubic.i: qubic.cpp.i +.PHONY : qubic.i + +# target to preprocess a source file +qubic.cpp.i: + cd /Users/graf/Documents/GitHub/qubic-core/core/build && $(MAKE) $(MAKESILENT) -f src/CMakeFiles/Qubic.dir/build.make src/CMakeFiles/Qubic.dir/qubic.cpp.i +.PHONY : qubic.cpp.i + +qubic.s: qubic.cpp.s +.PHONY : qubic.s + +# target to generate assembly for a file +qubic.cpp.s: + cd /Users/graf/Documents/GitHub/qubic-core/core/build && $(MAKE) $(MAKESILENT) -f src/CMakeFiles/Qubic.dir/build.make src/CMakeFiles/Qubic.dir/qubic.cpp.s +.PHONY : qubic.cpp.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 "... install" + @echo "... install/local" + @echo "... install/strip" + @echo "... list_install_components" + @echo "... rebuild_cache" + @echo "... test" + @echo "... Qubic" + @echo "... platform/custom_stack.o" + @echo "... qubic.o" + @echo "... qubic.i" + @echo "... qubic.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: + cd /Users/graf/Documents/GitHub/qubic-core/core/build && $(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/src/cmake_install.cmake b/build/src/cmake_install.cmake new file mode 100644 index 000000000..3a47c25c5 --- /dev/null +++ b/build/src/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: /Users/graf/Documents/GitHub/qubic-core/core/src + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "Release") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "FALSE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/usr/bin/objdump") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "/Users/graf/Documents/GitHub/qubic-core/core/build/src/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/test/CMakeFiles/CMakeDirectoryInformation.cmake b/build/test/CMakeFiles/CMakeDirectoryInformation.cmake new file mode 100644 index 000000000..e2771e437 --- /dev/null +++ b/build/test/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 "/Users/graf/Documents/GitHub/qubic-core/core") +set(CMAKE_RELATIVE_PATH_TOP_BINARY "/Users/graf/Documents/GitHub/qubic-core/core/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/test/CMakeFiles/progress.marks b/build/test/CMakeFiles/progress.marks new file mode 100644 index 000000000..3c032078a --- /dev/null +++ b/build/test/CMakeFiles/progress.marks @@ -0,0 +1 @@ +18 diff --git a/build/test/CMakeFiles/qubic_core_tests.dir/DependInfo.cmake b/build/test/CMakeFiles/qubic_core_tests.dir/DependInfo.cmake new file mode 100644 index 000000000..d3df3c991 --- /dev/null +++ b/build/test/CMakeFiles/qubic_core_tests.dir/DependInfo.cmake @@ -0,0 +1,25 @@ + +# 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 + "/Users/graf/Documents/GitHub/qubic-core/core/test/m256.cpp" "test/CMakeFiles/qubic_core_tests.dir/m256.cpp.o" "gcc" "test/CMakeFiles/qubic_core_tests.dir/m256.cpp.o.d" + "/Users/graf/Documents/GitHub/qubic-core/core/test/math_lib.cpp" "test/CMakeFiles/qubic_core_tests.dir/math_lib.cpp.o" "gcc" "test/CMakeFiles/qubic_core_tests.dir/math_lib.cpp.o.d" + "/Users/graf/Documents/GitHub/qubic-core/core/test/network_messages.cpp" "test/CMakeFiles/qubic_core_tests.dir/network_messages.cpp.o" "gcc" "test/CMakeFiles/qubic_core_tests.dir/network_messages.cpp.o.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/test/CMakeFiles/qubic_core_tests.dir/build.make b/build/test/CMakeFiles/qubic_core_tests.dir/build.make new file mode 100644 index 000000000..cdf5b7e17 --- /dev/null +++ b/build/test/CMakeFiles/qubic_core_tests.dir/build.make @@ -0,0 +1,150 @@ +# 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 = /opt/homebrew/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/graf/Documents/GitHub/qubic-core/core + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/graf/Documents/GitHub/qubic-core/core/build + +# Include any dependencies generated for this target. +include test/CMakeFiles/qubic_core_tests.dir/depend.make +# Include any dependencies generated by the compiler for this target. +include test/CMakeFiles/qubic_core_tests.dir/compiler_depend.make + +# Include the progress variables for this target. +include test/CMakeFiles/qubic_core_tests.dir/progress.make + +# Include the compile flags for this target's objects. +include test/CMakeFiles/qubic_core_tests.dir/flags.make + +test/CMakeFiles/qubic_core_tests.dir/codegen: +.PHONY : test/CMakeFiles/qubic_core_tests.dir/codegen + +test/CMakeFiles/qubic_core_tests.dir/m256.cpp.o: test/CMakeFiles/qubic_core_tests.dir/flags.make +test/CMakeFiles/qubic_core_tests.dir/m256.cpp.o: /Users/graf/Documents/GitHub/qubic-core/core/test/m256.cpp +test/CMakeFiles/qubic_core_tests.dir/m256.cpp.o: test/CMakeFiles/qubic_core_tests.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/graf/Documents/GitHub/qubic-core/core/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object test/CMakeFiles/qubic_core_tests.dir/m256.cpp.o" + cd /Users/graf/Documents/GitHub/qubic-core/core/build/test && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT test/CMakeFiles/qubic_core_tests.dir/m256.cpp.o -MF CMakeFiles/qubic_core_tests.dir/m256.cpp.o.d -o CMakeFiles/qubic_core_tests.dir/m256.cpp.o -c /Users/graf/Documents/GitHub/qubic-core/core/test/m256.cpp + +test/CMakeFiles/qubic_core_tests.dir/m256.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/qubic_core_tests.dir/m256.cpp.i" + cd /Users/graf/Documents/GitHub/qubic-core/core/build/test && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/graf/Documents/GitHub/qubic-core/core/test/m256.cpp > CMakeFiles/qubic_core_tests.dir/m256.cpp.i + +test/CMakeFiles/qubic_core_tests.dir/m256.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/qubic_core_tests.dir/m256.cpp.s" + cd /Users/graf/Documents/GitHub/qubic-core/core/build/test && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/graf/Documents/GitHub/qubic-core/core/test/m256.cpp -o CMakeFiles/qubic_core_tests.dir/m256.cpp.s + +test/CMakeFiles/qubic_core_tests.dir/math_lib.cpp.o: test/CMakeFiles/qubic_core_tests.dir/flags.make +test/CMakeFiles/qubic_core_tests.dir/math_lib.cpp.o: /Users/graf/Documents/GitHub/qubic-core/core/test/math_lib.cpp +test/CMakeFiles/qubic_core_tests.dir/math_lib.cpp.o: test/CMakeFiles/qubic_core_tests.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/graf/Documents/GitHub/qubic-core/core/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building CXX object test/CMakeFiles/qubic_core_tests.dir/math_lib.cpp.o" + cd /Users/graf/Documents/GitHub/qubic-core/core/build/test && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT test/CMakeFiles/qubic_core_tests.dir/math_lib.cpp.o -MF CMakeFiles/qubic_core_tests.dir/math_lib.cpp.o.d -o CMakeFiles/qubic_core_tests.dir/math_lib.cpp.o -c /Users/graf/Documents/GitHub/qubic-core/core/test/math_lib.cpp + +test/CMakeFiles/qubic_core_tests.dir/math_lib.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/qubic_core_tests.dir/math_lib.cpp.i" + cd /Users/graf/Documents/GitHub/qubic-core/core/build/test && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/graf/Documents/GitHub/qubic-core/core/test/math_lib.cpp > CMakeFiles/qubic_core_tests.dir/math_lib.cpp.i + +test/CMakeFiles/qubic_core_tests.dir/math_lib.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/qubic_core_tests.dir/math_lib.cpp.s" + cd /Users/graf/Documents/GitHub/qubic-core/core/build/test && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/graf/Documents/GitHub/qubic-core/core/test/math_lib.cpp -o CMakeFiles/qubic_core_tests.dir/math_lib.cpp.s + +test/CMakeFiles/qubic_core_tests.dir/network_messages.cpp.o: test/CMakeFiles/qubic_core_tests.dir/flags.make +test/CMakeFiles/qubic_core_tests.dir/network_messages.cpp.o: /Users/graf/Documents/GitHub/qubic-core/core/test/network_messages.cpp +test/CMakeFiles/qubic_core_tests.dir/network_messages.cpp.o: test/CMakeFiles/qubic_core_tests.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/graf/Documents/GitHub/qubic-core/core/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Building CXX object test/CMakeFiles/qubic_core_tests.dir/network_messages.cpp.o" + cd /Users/graf/Documents/GitHub/qubic-core/core/build/test && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT test/CMakeFiles/qubic_core_tests.dir/network_messages.cpp.o -MF CMakeFiles/qubic_core_tests.dir/network_messages.cpp.o.d -o CMakeFiles/qubic_core_tests.dir/network_messages.cpp.o -c /Users/graf/Documents/GitHub/qubic-core/core/test/network_messages.cpp + +test/CMakeFiles/qubic_core_tests.dir/network_messages.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/qubic_core_tests.dir/network_messages.cpp.i" + cd /Users/graf/Documents/GitHub/qubic-core/core/build/test && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/graf/Documents/GitHub/qubic-core/core/test/network_messages.cpp > CMakeFiles/qubic_core_tests.dir/network_messages.cpp.i + +test/CMakeFiles/qubic_core_tests.dir/network_messages.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/qubic_core_tests.dir/network_messages.cpp.s" + cd /Users/graf/Documents/GitHub/qubic-core/core/build/test && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/graf/Documents/GitHub/qubic-core/core/test/network_messages.cpp -o CMakeFiles/qubic_core_tests.dir/network_messages.cpp.s + +# Object files for target qubic_core_tests +qubic_core_tests_OBJECTS = \ +"CMakeFiles/qubic_core_tests.dir/m256.cpp.o" \ +"CMakeFiles/qubic_core_tests.dir/math_lib.cpp.o" \ +"CMakeFiles/qubic_core_tests.dir/network_messages.cpp.o" + +# External object files for target qubic_core_tests +qubic_core_tests_EXTERNAL_OBJECTS = + +test/qubic_core_tests: test/CMakeFiles/qubic_core_tests.dir/m256.cpp.o +test/qubic_core_tests: test/CMakeFiles/qubic_core_tests.dir/math_lib.cpp.o +test/qubic_core_tests: test/CMakeFiles/qubic_core_tests.dir/network_messages.cpp.o +test/qubic_core_tests: test/CMakeFiles/qubic_core_tests.dir/build.make +test/qubic_core_tests: lib/libgtest_main.a +test/qubic_core_tests: lib/platform_common/libplatform_common.a +test/qubic_core_tests: lib/platform_os/libplatform_os.a +test/qubic_core_tests: lib/libgtest.a +test/qubic_core_tests: test/CMakeFiles/qubic_core_tests.dir/link.txt + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --bold --progress-dir=/Users/graf/Documents/GitHub/qubic-core/core/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_4) "Linking CXX executable qubic_core_tests" + cd /Users/graf/Documents/GitHub/qubic-core/core/build/test && $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/qubic_core_tests.dir/link.txt --verbose=$(VERBOSE) + cd /Users/graf/Documents/GitHub/qubic-core/core/build/test && /opt/homebrew/bin/cmake -D TEST_TARGET=qubic_core_tests -D TEST_EXECUTABLE=/Users/graf/Documents/GitHub/qubic-core/core/build/test/qubic_core_tests -D TEST_EXECUTOR= -D TEST_WORKING_DIR=/Users/graf/Documents/GitHub/qubic-core/core/build/test -D TEST_EXTRA_ARGS= -D TEST_PROPERTIES= -D TEST_PREFIX= -D TEST_SUFFIX= -D TEST_FILTER= -D NO_PRETTY_TYPES=FALSE -D NO_PRETTY_VALUES=FALSE -D TEST_LIST=qubic_core_tests_TESTS -D CTEST_FILE=/Users/graf/Documents/GitHub/qubic-core/core/build/test/qubic_core_tests[1]_tests.cmake -D TEST_DISCOVERY_TIMEOUT=5 -D TEST_DISCOVERY_EXTRA_ARGS= -D TEST_XML_OUTPUT_DIR= -P /opt/homebrew/share/cmake/Modules/GoogleTestAddTests.cmake + +# Rule to build all files generated by this target. +test/CMakeFiles/qubic_core_tests.dir/build: test/qubic_core_tests +.PHONY : test/CMakeFiles/qubic_core_tests.dir/build + +test/CMakeFiles/qubic_core_tests.dir/clean: + cd /Users/graf/Documents/GitHub/qubic-core/core/build/test && $(CMAKE_COMMAND) -P CMakeFiles/qubic_core_tests.dir/cmake_clean.cmake +.PHONY : test/CMakeFiles/qubic_core_tests.dir/clean + +test/CMakeFiles/qubic_core_tests.dir/depend: + cd /Users/graf/Documents/GitHub/qubic-core/core/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/graf/Documents/GitHub/qubic-core/core /Users/graf/Documents/GitHub/qubic-core/core/test /Users/graf/Documents/GitHub/qubic-core/core/build /Users/graf/Documents/GitHub/qubic-core/core/build/test /Users/graf/Documents/GitHub/qubic-core/core/build/test/CMakeFiles/qubic_core_tests.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : test/CMakeFiles/qubic_core_tests.dir/depend + diff --git a/build/test/CMakeFiles/qubic_core_tests.dir/cmake_clean.cmake b/build/test/CMakeFiles/qubic_core_tests.dir/cmake_clean.cmake new file mode 100644 index 000000000..82fcc368b --- /dev/null +++ b/build/test/CMakeFiles/qubic_core_tests.dir/cmake_clean.cmake @@ -0,0 +1,16 @@ +file(REMOVE_RECURSE + "CMakeFiles/qubic_core_tests.dir/m256.cpp.o" + "CMakeFiles/qubic_core_tests.dir/m256.cpp.o.d" + "CMakeFiles/qubic_core_tests.dir/math_lib.cpp.o" + "CMakeFiles/qubic_core_tests.dir/math_lib.cpp.o.d" + "CMakeFiles/qubic_core_tests.dir/network_messages.cpp.o" + "CMakeFiles/qubic_core_tests.dir/network_messages.cpp.o.d" + "qubic_core_tests" + "qubic_core_tests.pdb" + "qubic_core_tests[1]_tests.cmake" +) + +# Per-language clean rules from dependency scanning. +foreach(lang CXX) + include(CMakeFiles/qubic_core_tests.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/test/CMakeFiles/qubic_core_tests.dir/compiler_depend.make b/build/test/CMakeFiles/qubic_core_tests.dir/compiler_depend.make new file mode 100644 index 000000000..fadee7e18 --- /dev/null +++ b/build/test/CMakeFiles/qubic_core_tests.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty compiler generated dependencies file for qubic_core_tests. +# This may be replaced when dependencies are built. diff --git a/build/test/CMakeFiles/qubic_core_tests.dir/compiler_depend.ts b/build/test/CMakeFiles/qubic_core_tests.dir/compiler_depend.ts new file mode 100644 index 000000000..caec3f86d --- /dev/null +++ b/build/test/CMakeFiles/qubic_core_tests.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for compiler generated dependencies management for qubic_core_tests. diff --git a/build/test/CMakeFiles/qubic_core_tests.dir/depend.make b/build/test/CMakeFiles/qubic_core_tests.dir/depend.make new file mode 100644 index 000000000..21408c20c --- /dev/null +++ b/build/test/CMakeFiles/qubic_core_tests.dir/depend.make @@ -0,0 +1,2 @@ +# Empty dependencies file for qubic_core_tests. +# This may be replaced when dependencies are built. diff --git a/build/test/CMakeFiles/qubic_core_tests.dir/flags.make b/build/test/CMakeFiles/qubic_core_tests.dir/flags.make new file mode 100644 index 000000000..d10c34cdf --- /dev/null +++ b/build/test/CMakeFiles/qubic_core_tests.dir/flags.make @@ -0,0 +1,12 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 4.1 + +# compile CXX with /usr/bin/c++ +CXX_DEFINES = -DNDEBUG -D_LIB + +CXX_INCLUDES = -I/Users/graf/Documents/GitHub/qubic-core/core/test/../lib/platform_common -I/Users/graf/Documents/GitHub/qubic-core/core/test/../lib/platform_os -I/Users/graf/Documents/GitHub/qubic-core/core/test/../lib/platform_efi -I/Users/graf/Documents/GitHub/qubic-core/core/test/../src -I/Users/graf/Documents/GitHub/qubic-core/core -I/Users/graf/Documents/GitHub/qubic-core/core/lib/platform_common/edk2_mdepkg/Include -I/Users/graf/Documents/GitHub/qubic-core/core/lib/platform_common -isystem /Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-src/googletest/include -isystem /Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-src/googletest + +CXX_FLAGSarm64 = -std=gnu++20 -arch arm64 -Wall -Wextra -fshort-wchar -O2 -fomit-frame-pointer -fno-lto -mavx -mavx2 -mavx512f -mavx512cd -mavx512vl -mavx512bw -mavx512dq -fno-stack-protector -Wpedantic -Werror -mrdrnd -Wcast-align + +CXX_FLAGS = -std=gnu++20 -arch arm64 -Wall -Wextra -fshort-wchar -O2 -fomit-frame-pointer -fno-lto -mavx -mavx2 -mavx512f -mavx512cd -mavx512vl -mavx512bw -mavx512dq -fno-stack-protector -Wpedantic -Werror -mrdrnd -Wcast-align + diff --git a/build/test/CMakeFiles/qubic_core_tests.dir/link.txt b/build/test/CMakeFiles/qubic_core_tests.dir/link.txt new file mode 100644 index 000000000..8a6f4dc97 --- /dev/null +++ b/build/test/CMakeFiles/qubic_core_tests.dir/link.txt @@ -0,0 +1 @@ +/usr/bin/c++ -arch arm64 -Wl,-search_paths_first -Wl,-headerpad_max_install_names CMakeFiles/qubic_core_tests.dir/m256.cpp.o CMakeFiles/qubic_core_tests.dir/math_lib.cpp.o CMakeFiles/qubic_core_tests.dir/network_messages.cpp.o -o qubic_core_tests ../lib/libgtest_main.a ../lib/platform_common/libplatform_common.a ../lib/platform_os/libplatform_os.a ../lib/libgtest.a diff --git a/build/test/CMakeFiles/qubic_core_tests.dir/progress.make b/build/test/CMakeFiles/qubic_core_tests.dir/progress.make new file mode 100644 index 000000000..945ce6238 --- /dev/null +++ b/build/test/CMakeFiles/qubic_core_tests.dir/progress.make @@ -0,0 +1,5 @@ +CMAKE_PROGRESS_1 = 23 +CMAKE_PROGRESS_2 = 24 +CMAKE_PROGRESS_3 = 25 +CMAKE_PROGRESS_4 = 26 + diff --git a/build/test/CTestTestfile.cmake b/build/test/CTestTestfile.cmake new file mode 100644 index 000000000..63fe72a1e --- /dev/null +++ b/build/test/CTestTestfile.cmake @@ -0,0 +1,8 @@ +# CMake generated Testfile for +# Source directory: /Users/graf/Documents/GitHub/qubic-core/core/test +# Build directory: /Users/graf/Documents/GitHub/qubic-core/core/build/test +# +# This file includes the relevant testing commands required for +# testing this directory and lists subdirectories to be tested as well. +include("/Users/graf/Documents/GitHub/qubic-core/core/build/test/qubic_core_tests[1]_include.cmake") +subdirs("../_deps/googletest-build") diff --git a/build/test/Makefile b/build/test/Makefile new file mode 100644 index 000000000..36d8c5748 --- /dev/null +++ b/build/test/Makefile @@ -0,0 +1,296 @@ +# 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 = /opt/homebrew/bin/cmake + +# The command to remove a file. +RM = /opt/homebrew/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/graf/Documents/GitHub/qubic-core/core + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/graf/Documents/GitHub/qubic-core/core/build + +#============================================================================= +# Targets provided globally by CMake. + +# Special rule for the target test +test: + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running tests..." + /opt/homebrew/bin/ctest $(ARGS) +.PHONY : test + +# Special rule for the target test +test/fast: test +.PHONY : test/fast + +# Special rule for the target edit_cache +edit_cache: + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running CMake cache editor..." + /opt/homebrew/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..." + /opt/homebrew/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 + +# Special rule for the target list_install_components +list_install_components: + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Available install components are: \"Unspecified\" \"gmock\" \"gtest\"" +.PHONY : list_install_components + +# Special rule for the target list_install_components +list_install_components/fast: list_install_components +.PHONY : list_install_components/fast + +# Special rule for the target install +install: preinstall + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Install the project..." + /opt/homebrew/bin/cmake -P cmake_install.cmake +.PHONY : install + +# Special rule for the target install +install/fast: preinstall/fast + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Install the project..." + /opt/homebrew/bin/cmake -P cmake_install.cmake +.PHONY : install/fast + +# Special rule for the target install/local +install/local: preinstall + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing only the local directory..." + /opt/homebrew/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake +.PHONY : install/local + +# Special rule for the target install/local +install/local/fast: preinstall/fast + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing only the local directory..." + /opt/homebrew/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake +.PHONY : install/local/fast + +# Special rule for the target install/strip +install/strip: preinstall + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing the project stripped..." + /opt/homebrew/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake +.PHONY : install/strip + +# Special rule for the target install/strip +install/strip/fast: preinstall/fast + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing the project stripped..." + /opt/homebrew/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake +.PHONY : install/strip/fast + +# The main all target +all: cmake_check_build_system + cd /Users/graf/Documents/GitHub/qubic-core/core/build && $(CMAKE_COMMAND) -E cmake_progress_start /Users/graf/Documents/GitHub/qubic-core/core/build/CMakeFiles /Users/graf/Documents/GitHub/qubic-core/core/build/test//CMakeFiles/progress.marks + cd /Users/graf/Documents/GitHub/qubic-core/core/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 test/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/graf/Documents/GitHub/qubic-core/core/build/CMakeFiles 0 +.PHONY : all + +# The main clean target +clean: + cd /Users/graf/Documents/GitHub/qubic-core/core/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 test/clean +.PHONY : clean + +# The main clean target +clean/fast: clean +.PHONY : clean/fast + +# Prepare targets for installation. +preinstall: all + cd /Users/graf/Documents/GitHub/qubic-core/core/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 test/preinstall +.PHONY : preinstall + +# Prepare targets for installation. +preinstall/fast: + cd /Users/graf/Documents/GitHub/qubic-core/core/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 test/preinstall +.PHONY : preinstall/fast + +# clear depends +depend: + cd /Users/graf/Documents/GitHub/qubic-core/core/build && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1 +.PHONY : depend + +# Convenience name for target. +test/CMakeFiles/qubic_core_tests.dir/rule: + cd /Users/graf/Documents/GitHub/qubic-core/core/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 test/CMakeFiles/qubic_core_tests.dir/rule +.PHONY : test/CMakeFiles/qubic_core_tests.dir/rule + +# Convenience name for target. +qubic_core_tests: test/CMakeFiles/qubic_core_tests.dir/rule +.PHONY : qubic_core_tests + +# fast build rule for target. +qubic_core_tests/fast: + cd /Users/graf/Documents/GitHub/qubic-core/core/build && $(MAKE) $(MAKESILENT) -f test/CMakeFiles/qubic_core_tests.dir/build.make test/CMakeFiles/qubic_core_tests.dir/build +.PHONY : qubic_core_tests/fast + +m256.o: m256.cpp.o +.PHONY : m256.o + +# target to build an object file +m256.cpp.o: + cd /Users/graf/Documents/GitHub/qubic-core/core/build && $(MAKE) $(MAKESILENT) -f test/CMakeFiles/qubic_core_tests.dir/build.make test/CMakeFiles/qubic_core_tests.dir/m256.cpp.o +.PHONY : m256.cpp.o + +m256.i: m256.cpp.i +.PHONY : m256.i + +# target to preprocess a source file +m256.cpp.i: + cd /Users/graf/Documents/GitHub/qubic-core/core/build && $(MAKE) $(MAKESILENT) -f test/CMakeFiles/qubic_core_tests.dir/build.make test/CMakeFiles/qubic_core_tests.dir/m256.cpp.i +.PHONY : m256.cpp.i + +m256.s: m256.cpp.s +.PHONY : m256.s + +# target to generate assembly for a file +m256.cpp.s: + cd /Users/graf/Documents/GitHub/qubic-core/core/build && $(MAKE) $(MAKESILENT) -f test/CMakeFiles/qubic_core_tests.dir/build.make test/CMakeFiles/qubic_core_tests.dir/m256.cpp.s +.PHONY : m256.cpp.s + +math_lib.o: math_lib.cpp.o +.PHONY : math_lib.o + +# target to build an object file +math_lib.cpp.o: + cd /Users/graf/Documents/GitHub/qubic-core/core/build && $(MAKE) $(MAKESILENT) -f test/CMakeFiles/qubic_core_tests.dir/build.make test/CMakeFiles/qubic_core_tests.dir/math_lib.cpp.o +.PHONY : math_lib.cpp.o + +math_lib.i: math_lib.cpp.i +.PHONY : math_lib.i + +# target to preprocess a source file +math_lib.cpp.i: + cd /Users/graf/Documents/GitHub/qubic-core/core/build && $(MAKE) $(MAKESILENT) -f test/CMakeFiles/qubic_core_tests.dir/build.make test/CMakeFiles/qubic_core_tests.dir/math_lib.cpp.i +.PHONY : math_lib.cpp.i + +math_lib.s: math_lib.cpp.s +.PHONY : math_lib.s + +# target to generate assembly for a file +math_lib.cpp.s: + cd /Users/graf/Documents/GitHub/qubic-core/core/build && $(MAKE) $(MAKESILENT) -f test/CMakeFiles/qubic_core_tests.dir/build.make test/CMakeFiles/qubic_core_tests.dir/math_lib.cpp.s +.PHONY : math_lib.cpp.s + +network_messages.o: network_messages.cpp.o +.PHONY : network_messages.o + +# target to build an object file +network_messages.cpp.o: + cd /Users/graf/Documents/GitHub/qubic-core/core/build && $(MAKE) $(MAKESILENT) -f test/CMakeFiles/qubic_core_tests.dir/build.make test/CMakeFiles/qubic_core_tests.dir/network_messages.cpp.o +.PHONY : network_messages.cpp.o + +network_messages.i: network_messages.cpp.i +.PHONY : network_messages.i + +# target to preprocess a source file +network_messages.cpp.i: + cd /Users/graf/Documents/GitHub/qubic-core/core/build && $(MAKE) $(MAKESILENT) -f test/CMakeFiles/qubic_core_tests.dir/build.make test/CMakeFiles/qubic_core_tests.dir/network_messages.cpp.i +.PHONY : network_messages.cpp.i + +network_messages.s: network_messages.cpp.s +.PHONY : network_messages.s + +# target to generate assembly for a file +network_messages.cpp.s: + cd /Users/graf/Documents/GitHub/qubic-core/core/build && $(MAKE) $(MAKESILENT) -f test/CMakeFiles/qubic_core_tests.dir/build.make test/CMakeFiles/qubic_core_tests.dir/network_messages.cpp.s +.PHONY : network_messages.cpp.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 "... install" + @echo "... install/local" + @echo "... install/strip" + @echo "... list_install_components" + @echo "... rebuild_cache" + @echo "... test" + @echo "... qubic_core_tests" + @echo "... m256.o" + @echo "... m256.i" + @echo "... m256.s" + @echo "... math_lib.o" + @echo "... math_lib.i" + @echo "... math_lib.s" + @echo "... network_messages.o" + @echo "... network_messages.i" + @echo "... network_messages.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: + cd /Users/graf/Documents/GitHub/qubic-core/core/build && $(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/test/cmake_install.cmake b/build/test/cmake_install.cmake new file mode 100644 index 000000000..00a5b5a9d --- /dev/null +++ b/build/test/cmake_install.cmake @@ -0,0 +1,50 @@ +# Install script for directory: /Users/graf/Documents/GitHub/qubic-core/core/test + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "Release") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "FALSE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/usr/bin/objdump") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/Users/graf/Documents/GitHub/qubic-core/core/build/_deps/googletest-build/cmake_install.cmake") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "/Users/graf/Documents/GitHub/qubic-core/core/build/test/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/test/qubic_core_tests[1]_include.cmake b/build/test/qubic_core_tests[1]_include.cmake new file mode 100644 index 000000000..2b74781a6 --- /dev/null +++ b/build/test/qubic_core_tests[1]_include.cmake @@ -0,0 +1,5 @@ +if(EXISTS "/Users/graf/Documents/GitHub/qubic-core/core/build/test/qubic_core_tests[1]_tests.cmake") + include("/Users/graf/Documents/GitHub/qubic-core/core/build/test/qubic_core_tests[1]_tests.cmake") +else() + add_test(qubic_core_tests_NOT_BUILT qubic_core_tests_NOT_BUILT) +endif() diff --git a/core b/core new file mode 160000 index 000000000..3d4536542 --- /dev/null +++ b/core @@ -0,0 +1 @@ +Subproject commit 3d4536542a2d2c0676bc3911dd903bbc56d42207 diff --git a/qubic-cli b/qubic-cli new file mode 160000 index 000000000..df76d0d84 --- /dev/null +++ b/qubic-cli @@ -0,0 +1 @@ +Subproject commit df76d0d847ac4151357e2f0fbd3d92ec8056449f diff --git a/src/Qubic.vcxproj b/src/Qubic.vcxproj index c7a4f2f45..e26d57a7c 100644 --- a/src/Qubic.vcxproj +++ b/src/Qubic.vcxproj @@ -48,7 +48,6 @@ - diff --git a/src/Qubic.vcxproj.filters b/src/Qubic.vcxproj.filters index 24b11e9e1..083c2276e 100644 --- a/src/Qubic.vcxproj.filters +++ b/src/Qubic.vcxproj.filters @@ -305,9 +305,6 @@ contracts - - contracts - contract_core diff --git a/src/contracts/README_QRWA_TEST.md b/src/contracts/README_QRWA_TEST.md new file mode 100644 index 000000000..d3a2bcb4d --- /dev/null +++ b/src/contracts/README_QRWA_TEST.md @@ -0,0 +1,545 @@ +# Qubic Smart Contract – Development Checklist & Test Reference + +## Quick Reference: What Can Crash the Node + +| Problem | Symptom | Solution | +|---------|---------|----------| +| `struct XXXX2 {}` missing | Node won't start / crash | Define empty struct before main struct | +| State > 1 GB | Node won't start | Reduce HashMap capacities | +| Forbidden C++ features | May compile, crashes at runtime | See forbidden list below | +| Wrong address length in `ID()` | Won't compile (parameter count) | Exactly 56 characters (without 4-char checksum) | + +--- + +## 1. File Structure + +``` +src/contracts/YourContract.h ← The contract (a single .h file) +src/contract_core/contract_def.h ← Registration (3 locations) +test/contract_yourcontract.cpp ← GoogleTest tests +``` + +### Contract File Skeleton + +```cpp +using namespace QPI; + +// Global constants – MUST be prefixed with contract name +constexpr uint64 MYCONTRACT_SOME_VALUE = 42; + +// IMPORTANT: Secondary state struct (for future EXPAND events) +struct MYCONTRACT2 +{ +}; + +// Main state struct +struct MYCONTRACT : public ContractBase +{ + // ... State Members, Procedures, Functions ... +}; +``` + +### Registration in `contract_def.h` (3 locations!) + +**Location 1** – Contract Index & Include: +```cpp +#undef CONTRACT_INDEX +#undef CONTRACT_STATE_TYPE +#undef CONTRACT_STATE2_TYPE + +#define MYCONTRACT_CONTRACT_INDEX 20 +#define CONTRACT_INDEX MYCONTRACT_CONTRACT_INDEX +#define CONTRACT_STATE_TYPE MYCONTRACT +#define CONTRACT_STATE2_TYPE MYCONTRACT2 // ← MUST exist! +#include "contracts/MyContract.h" +``` + +**Location 2** – Contract Description: +```cpp +{"MYCON", 197, 10000, sizeof(MYCONTRACT)}, +// Format: {"ASSET_NAME", CONSTRUCTION_EPOCH, DESTRUCTION_EPOCH, sizeof(STATE)} +// Asset name: max 7 chars, first char A-Z, then A-Z or 0-9 +``` + +**Location 3** – Registration: +```cpp +REGISTER_CONTRACT_FUNCTIONS_AND_PROCEDURES(MYCONTRACT); +``` + +--- + +## 2. Forbidden C++ Features (Crash Causes!) + +### Absolutely forbidden – not a single occurrence allowed + +| Forbidden | Reason | Alternative | +|-----------|--------|-------------| +| `*` (Pointer) | Security risk | `*` only allowed for multiplication | +| `[` and `]` | Low-level arrays without bounds check | Use `Array` from QPI | +| `#` (Preprocessor) | `#include`, `#define`, `#ifdef` etc. | None – use `constexpr` for constants | +| `"string"` | Jump to random memory | Use `STATIC_ASSERT` macro instead of `static_assert("msg")` | +| `'c'` (Char literal) | Same as strings | Do not use | +| `float` / `double` | Non-deterministic arithmetic | `uint64`, `sint64`, `uint128` | +| `/` (Division) | Inconsistent behavior on /0 | `div(a, b)` – returns 0 on /0 | +| `%` (Modulo) | Inconsistent behavior on %0 | `mod(a, b)` – returns 0 on %0 | +| `...` (Variadic) | Forbidden | None | +| `__` (Double underscore) | Compiler internals | Use single underscore | +| `union` | Deceptive for code audit | Use `struct` | +| `typedef` (global) | Only allowed locally | `using` only inside structs/functions | +| `const_cast` | Security risk | Do not use | +| `QpiContext` | Internal class | Do not reference | +| `::` (Scope resolution) | Only for structs/enums from contract & qpi.h | No access to foreign namespaces | + +### Only allowed exception for `using`: +```cpp +using namespace QPI; // ← OK at top of file +``` + +--- + +## 3. Variable Rules + +### ❌ FORBIDDEN: Local variables on the stack +```cpp +PUBLIC_PROCEDURE(Bad) +{ + uint64 counter = 0; // ❌ FORBIDDEN - stack variable + for (uint64 i = 0; ...) // ❌ FORBIDDEN - loop variable on stack +} +``` + +### ✅ CORRECT: Everything in `_locals` struct +```cpp +struct MyProc_locals +{ + uint64 counter; + uint64 i; +}; +PUBLIC_PROCEDURE_WITH_LOCALS(MyProc) +{ + locals.counter = 0; // ✅ OK + for (locals.i = 0; locals.i < 10; locals.i++) // ✅ OK + { + // ... + } +} +``` + +### Available Variables in Procedures/Functions + +| Variable | Available in | Description | +|----------|-------------|-------------| +| `state` | Procedures: read/write, Functions: read-only | Contract state | +| `input` | Both | Input data | +| `output` | Both | Output data (zero-initialized) | +| `locals` | `_WITH_LOCALS` variants | Local variables (zero-initialized) | +| `qpi` | Both | QPI functions (`qpi.transfer()`, `qpi.tick()`, etc.) | + +--- + +## 4. ID() Macro – Address Format + +### ❌ WRONG: 60 characters (with checksum) +``` +JHUIZPGZNMTHPCZBAMSZQGBJCAAOGDAQVFHWYKLEGGRM JEJSXTREUVCPYHS +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ ^^^^ +56 characters base address 4 checksum +``` + +### ✅ CORRECT: Exactly 56 characters (without checksum) +```cpp +state.mAdminAddress = ID( + _J, _H, _U, _I, _Z, _P, _G, _Z, _N, _M, _T, _H, _P, _C, _Z, _I, + _B, _A, _M, _S, _Z, _Q, _G, _B, _J, _C, _O, _A, _O, _G, _D, _A, + _Q, _V, _F, _H, _W, _Y, _K, _L, _E, _G, _G, _R, _M, _J, _E, _J, + _S, _X, _T, _R, _E, _U, _V, _C // ← 56 parameters, NO checksum +); +``` + +**Tip:** Qubic addresses are always 60 characters long (56 base + 4 checksum). In code, **strip the last 4 characters**. + +--- + +## 5. State Size Limit + +**Maximum: 1 GB (1,073,741,824 bytes)** + +### Calculating HashMap Memory Usage + +``` +HashMap ≈ L × (sizeof(KeyT) + sizeof(ValueT)) + L/32 × 8 + 16 +``` + +| Example | Size | +|---------|------| +| `HashMap` | ~80.5 MB | +| `HashMap` | ~40.3 MB | +| `HashMap` | ~2.5 MB | + +### qRWA State Calculation (current) + +| Component | Count | Size | +|-----------|-------|------| +| HashMap | 5× | ~403 MB | +| HashMap | 2× | ~161 MB | +| Other (Arrays, scalars) | - | ~0.1 MB | +| **Total** | | **~564 MB (55% of limit)** | + +--- + +## 6. Procedure & Function Types + +### System Procedures (called automatically by the core) + +| Macro | When | Purpose | +|-------|------|--------| +| `INITIALIZE()` | Once after IPO | Initialize state | +| `BEGIN_EPOCH()` | Every epoch | Snapshots, resets | +| `END_EPOCH()` | Every epoch | Evaluate voting, copy data | +| `BEGIN_TICK()` | Every tick | Before transactions | +| `END_TICK()` | Every tick | **Caution: runs EVERY tick!** | +| `POST_INCOMING_TRANSFER()` | On QU receipt | Revenue tracking | +| `PRE_ACQUIRE_SHARES()` | Asset transfer | Permission check | +| `POST_ACQUIRE_SHARES()` | After asset transfer | Bookkeeping | + +### User Procedures (invoked by transactions) + +```cpp +struct MyProc_input { uint64 value; }; +struct MyProc_output { uint64 status; }; +PUBLIC_PROCEDURE(MyProc) { /* can modify state */ } +PRIVATE_PROCEDURE(MyProc) { /* not callable by other contracts */ } +``` + +### User Functions (read-only queries) + +```cpp +struct MyFunc_input {}; +struct MyFunc_output { uint64 result; }; +PUBLIC_FUNCTION(MyFunc) { /* state is const, read-only */ } +``` + +### Input/Output Struct Rules + +Allowed types in `_input` and `_output`: +- `uint8`, `uint16`, `uint32`, `uint64`, `sint8`, `sint16`, `sint32`, `sint64` +- `bit`, `id` +- `Array`, `BitArray` +- Custom structs containing only allowed types + +**Forbidden** in Input/Output: `Collection`, `HashMap`, `HashSet` (inconsistent internal state) + +--- + +## 7. Available Container Types + +| Type | Description | Note | +|------|------------|------| +| `Array` | Fixed size, L must be 2^N | Bounds-checked | +| `BitArray` | Bit array, L must be 2^N | Min. 8 bytes | +| `HashMap` | Key-value store | `cleanup()` at epoch end! | +| `HashSet` | Keys only | `cleanup()` at epoch end! | +| `Collection` | Priority queues per ID | `cleanup()` at epoch end! | + +**Important:** After removing elements from HashMap/HashSet/Collection → call `cleanupIfNeeded()` or `cleanup()` at `END_EPOCH`! + +--- + +## 8. QPI Important Functions + +```cpp +// Information +qpi.tick() // Current tick +qpi.epoch() // Current epoch +qpi.now() // Current time (DateAndTime) +qpi.invocator() // Who called (user ID or contract ID) +qpi.invocationReward() // How much QU was sent +qpi.originator() // Original transaction creator + +// Transfers +qpi.transfer(dest, amount) // Send QU +qpi.burn(amount) // Burn QU (fills fee reserve) + +// Assets +qpi.issueAsset(name, issuer, numberOfShares, unitOfMeasurement, ...) +qpi.numberOfShares(asset, ownershipSelect, possessionSelect) +qpi.transferShareOwnershipAndPossession(name, issuer, owner, possessor, amount, newOwnerAndPossessor) +qpi.releaseShares(asset, owner, possessor, amount, destOwnership, destPossession, fee) +qpi.distributeDividends(amountPerShare) // Dividend to contract shareholders + +// Math (instead of / and %) +div(a, b) // Division (returns 0 on b==0) +mod(a, b) // Modulo (returns 0 on b==0) +sadd(a, b) // Saturating add (no overflow) +smul(a, b) // Saturating multiply +``` + +--- + +## 9. Verification Tool + +### Automatic in GitHub Actions (for PRs to develop/main): +The [Qubic Contract Verification Tool](https://github.com/Franziska-Mueller/qubic-contract-verify) automatically checks all rules. + +### Run manually: +```bash +# As a GitHub Action in your own repo: +- uses: Franziska-Mueller/qubic-contract-verify@v1.0.4 + with: + filepaths: 'src/contracts/qRWA.h' + +# Or build locally: +git clone https://github.com/Franziska-Mueller/qubic-contract-verify +cd qubic-contract-verify +cd deps/CppParser && mkdir builds && cd builds && cmake .. && make && cd ../../.. +mkdir build && cd build && cmake .. && make +./src/Release/contractverify /path/to/qRWA.h +``` + +--- + +## 10. Pre-Deployment Checklist + +- [ ] `struct XXXX2 {}` present (for `CONTRACT_STATE2_TYPE`) +- [ ] No forbidden C++ features (see section 2) +- [ ] All variables in `_locals` structs (no stack variables) +- [ ] `ID()` macro: exactly 56 characters per address +- [ ] State size < 1 GB +- [ ] `REGISTER_USER_FUNCTIONS_AND_PROCEDURES()` implemented +- [ ] Registration in `contract_def.h` at all 3 locations +- [ ] `div<>()` and `mod()` instead of `/` and `%` +- [ ] No `#include` in final code +- [ ] Input/Output structs use only allowed types +- [ ] HashMap/HashSet `cleanup()` at epoch end +- [ ] Global constants prefixed with contract name (`QRWA_...`) +- [ ] Tests written in GoogleTest framework +- [ ] Compiles without warnings +- [ ] Contract verification tool passed +- [ ] Testnet stable with multiple nodes + +--- + +## 11. qRWA-Specific Notes + +### Current Test Configuration +- Branch: `qrwa-dedicated-pool` +- Contract Index: 20 +- Construction Epoch: 197 +- Payout trigger: `qpi.tick() >= 44602200` (test mode) +- 6 governance addresses in `INITIALIZE()` (all 56 chars) + +### Known Fixes (already applied) +1. **`struct QRWA2 {}`** added – was completely missing, crashed the node +2. **Addresses trimmed to 56 characters** – `ID()` macro expects exactly 56 parameters + +### Reset for Production +```cpp +// In END_TICK: replace test conditions with: +if (qpi.dayOfWeek(...) == QRWA_PAYOUT_DAY && locals.now.getHour() == QRWA_PAYOUT_HOUR) +// and: +if (locals.msSinceLastPayout >= QRWA_MIN_PAYOUT_INTERVAL_MS) +``` + +--- + +## 12. Pool System & Revenue Distribution + +### Overview: 3 Revenue Inputs → 6 Internal Pools → 3 Recipient Groups + +``` + ┌─────────────────────────┐ + QUTIL Transfer ──►│ Revenue Pool A │──► Gov Fees (50%) ──► Electricity (35%) + (SC source) │ mRevenuePoolA │ Maintenance (5%) + └────────────┬────────────┘ Reinvestment (10%) + │ Remainder (50%) + ▼ + ┌─────────────────────────┐ + User Transfer ───►│ Revenue Pool B │ + (wallet source) │ mRevenuePoolB │ + └────────────┬────────────┘ + │ + Pool A (after fees) + Pool B = totalDistribution + │ + ┌────────────┴────────────┐ + │ │ + ▼ 90% ▼ 10% + ┌───────────────┐ ┌───────────────┐ + │ QMINE Div Pool│ │ qRWA Div Pool │ + │ mQmineDividend│ │ mQRWADividend │ + │ Pool │ │ Pool │ + └───────┬───────┘ └───────┬───────┘ + │ │ + ▼ ▼ + QMINE Holders qRWA Holders + (Epoch Snapshot) (Live, ≥100K QMINE/Share) + + ┌─────────────────────────┐ + Dedicated Addr ──►│ Dedicated Revenue Pool │ + (configured) │ mDedicatedRevenuePool │ + └────────────┬────────────┘ + │ + ┌────────────┴────────────┐ + │ │ + ▼ 90% ▼ 10% + ┌───────────────┐ ┌───────────────┐ + │ → QMINE Div │ │ Dedicated │ + │ Pool (above)│ │ qRWA Div Pool │ + └───────────────┘ │ mDedicatedQRWA│ + │ DividendPool │ + └───────┬───────┘ + │ + ▼ + qRWA Holders + (Live, ≥100K QMINE/Share) +``` + +### Revenue Inputs (POST_INCOMING_TRANSFER) + +Every incoming QU transfer is routed to one of three revenue pools based on `sourceId`: + +| Source | Condition | Target Pool | Gov Fees? | +|--------|-----------|-------------|-----------| +| QUTIL Contract | `sourceId == id(QUTIL_CONTRACT_INDEX)` | **Pool A** (`mRevenuePoolA`) | ✅ Yes (50%) | +| Dedicated Address | `sourceId == mDedicatedRevenueAddress` | **Dedicated** (`mDedicatedRevenuePool`) | ❌ No | +| Everything else (User/SC) | `sourceId != NULL_ID` | **Pool B** (`mRevenuePoolB`) | ❌ No | + +**Important:** Direct `sendtoaddress` transfers from a wallet **always go to Pool B** — for Pool A the transfer must go through QUTIL (e.g., `SendToManyV1`). **Exception:** Transfers from the Dedicated Revenue Address (`PDQTKKIRSIGAGAOLJWZWTCBSFCYAIZIRYCHEBKHBJHHBJNJHWLYGXSVEQEFC`) go to the **Dedicated Pool** (no Gov Fees). + +### Governance Fees (Pool A only) + +Before the 90/10 split, governance fees are deducted from Pool A: + +``` +Gov Fee Total = electricityPercent + maintenancePercent + reinvestmentPercent +``` + +| Parameter | Default | Purpose | +|-----------|---------|---------| +| `electricityPercent` | 350‰ (35%) | Mining farm electricity costs | +| `maintenancePercent` | 50‰ (5%) | Maintenance & operations | +| `reinvestmentPercent` | 100‰ (10%) | Hardware reinvestment | +| **Total** | **500‰ (50%)** | **Maximum 1000‰ (100%)** | + +These percentages are changeable via governance voting by QMINE holders. Each percentage is applied individually to `mRevenuePoolA`: + +```cpp +electricityPayout = (mRevenuePoolA × electricityPercent) / 1000 +maintenancePayout = (mRevenuePoolA × maintenancePercent) / 1000 +reinvestmentPayout = (mRevenuePoolA × reinvestmentPercent) / 1000 +mRevenuePoolA -= (electricityPayout + maintenancePayout + reinvestmentPayout) +``` + +### 90/10 Split (QMINE vs. qRWA) + +After deducting gov fees, Pool A (remainder) + Pool B are combined: + +``` +totalDistribution = remainingPoolA + poolB + +QMINE share = totalDistribution × 900 / 1000 (90%) +qRWA share = totalDistribution - QMINE share (10%, rounding remainder goes here) +``` + +| Constant | Value | Meaning | +|----------|-------|---------| +| `QRWA_QMINE_HOLDER_PERCENT` | 900 | 90% for QMINE holders | +| `QRWA_QRWA_HOLDER_PERCENT` | 100 | 10% for qRWA holders | +| `QRWA_PERCENT_DENOMINATOR` | 1000 | Base (= 100%) | + +The Dedicated Pool is split identically: 90% → QMINE Div Pool, 10% → **separate** Dedicated qRWA Div Pool. + +### QMINE Holder Distribution + +**Data source:** Epoch snapshots (NOT live) + +``` +BEGIN_EPOCH: Snapshot of all QMINE holders → mBeginEpochBalances +END_EPOCH: Snapshot of all QMINE holders → mEndEpochBalances + Copy to mPayoutBeginBalances / mPayoutEndBalances +END_TICK: Distribution from mPayoutBeginBalances +``` + +**Eligibility:** +- `eligibleBalance = min(beginBalance, endBalance)` — holders who sold QMINE during the epoch only receive based on the lower balance +- Prevents "epoch hopping" (buy → snapshot → sell) + +**Per-holder calculation:** +``` +payout = (eligibleBalance × qmineDividendPool) / payoutTotalQmineBegin +``` + +**Important — First Epoch:** `mPayoutTotalQmineBegin` is 0 until the first `END_EPOCH` has run. QMINE holders **only receive payouts starting from the 2nd epoch**. The QMINE share accumulates in `mQmineDividendPool` and is distributed in one lump sum after the epoch transition. + +**QMINE Dev (Remainder):** After distributing to all eligible holders, the `qmineDevAddress` receives the entire remaining balance of the pool. This captures rounding differences and the shares of holders who lost QMINE between begin/end epoch. + +### qRWA Holder Distribution + +**Data source:** Live `AssetPossessionIterator` (works immediately from epoch 1) + +**Eligibility:** Each qRWA holder must hold ≥100,000 QMINE per qRWA share: +``` +requiredQmine = qrwaShares × 100,000 +eligible = (actualQmine ≥ requiredQmine) +``` + +| qRWA Shares | Required QMINE | +|-------------|----------------| +| 1 | 100,000 | +| 3 | 300,000 | +| 10 | 1,000,000 | +| 50 | 5,000,000 | + +**Calculation (2-pass method):** + +1. **Pass 1:** Count all eligible shares → `eligibleShares` +2. **Pass 2:** Distribute proportionally: +``` +amountPerShare = qRWADividendPool / eligibleShares +payout = amountPerShare × holderShares +``` + +**Ineligible holders** are completely skipped — their share is automatically distributed proportionally to the qualified holders. + +**Rounding remainder:** At most `eligibleShares - 1` QU remain in the pool and are distributed with the next payout. + +**Dedicated qRWA Pool:** Identical logic, but from the separate `mDedicatedQRWADividendPool` — distributed independently from the regular qRWA pool. + +### Payout Timing + +| Mode | Trigger | Configuration | +|------|---------|---------------| +| **Testing** | Every 20 ticks | `QRWA_PAYOUT_TICK_INTERVAL = 20` | +| **Production** | Friday 12:00 UTC, min. 6 days apart | `QRWA_PAYOUT_DAY`, `QRWA_PAYOUT_HOUR`, `QRWA_MIN_PAYOUT_INTERVAL_MS` | + +### Query Functions + +| Function | Index | Output | Description | +|----------|-------|--------|-------------| +| `GetDividendBalances` | 5 | `{ revenuePoolA, revenuePoolB, qmineDividendPool, qrwaDividendPool, dedicatedRevenuePool, dedicatedQRWADividendPool }` | Current pool balances (incl. dedicated) | +| `GetTotalDistributed` | 6 | `{ totalQmineDistributed, totalQRWADistributed }` | Cumulative distributions | +| `GetGovParams` | 1 | `{ admin, electricity, maintenance, reinvestment, qmineDev, elecPct, maintPct, reinvPct }` | Gov addresses & percentages | + +### Worked Example + +Incoming: 10,000,000 QU via QUTIL → Pool A + +``` +1) Gov Fees (from Pool A): + Electricity: 10M × 350/1000 = 3,500,000 QU + Maintenance: 10M × 50/1000 = 500,000 QU + Reinvestment: 10M × 100/1000 = 1,000,000 QU + → Gov Total: 5,000,000 QU + +2) Remaining Pool A: 10M - 5M = 5,000,000 QU + Pool B: 0 (no user transfer) + → totalDistribution = 5,000,000 QU + +3) 90/10 Split: + QMINE Div Pool: 5M × 900/1000 = 4,500,000 QU + qRWA Div Pool: 5M - 4.5M = 500,000 QU + +4) qRWA Distribution (example: 50 eligible shares out of 676 total): + amountPerShare = 500,000 / 50 = 10,000 QU/share + Holder with 3 shares: 3 × 10,000 = 30,000 QU + Holder with 1 share: 1 × 10,000 = 10,000 QU +``` diff --git a/src/contracts/qRWA.h b/src/contracts/qRWA.h index 1bf5ef13d..bf323997b 100644 --- a/src/contracts/qRWA.h +++ b/src/contracts/qRWA.h @@ -4,7 +4,7 @@ using namespace QPI; /******************* CONSTANTS *********************/ /***************************************************/ -constexpr uint64 QRWA_MAX_QMINE_HOLDERS = 1048576 * 2 * X_MULTIPLIER; // 2^21 +constexpr uint64 QRWA_MAX_QMINE_HOLDERS = 131072 * X_MULTIPLIER; // 2^17 = 128K unique holders max (563MB → 37MB state) constexpr uint64 QRWA_MAX_GOV_POLLS = 64; // 8 active polls * 8 epochs = 64 slots constexpr uint64 QRWA_MAX_ASSET_POLLS = 64; // 8 active polls * 8 epochs = 64 slots constexpr uint64 QRWA_MAX_ASSETS = 1024; // 2^10 @@ -16,11 +16,14 @@ constexpr uint64 QRWA_MAX_NEW_ASSET_POLLS_PER_EPOCH = 8; constexpr uint64 QRWA_QMINE_HOLDER_PERCENT = 900; // 90.0% constexpr uint64 QRWA_QRWA_HOLDER_PERCENT = 100; // 10.0% constexpr uint64 QRWA_PERCENT_DENOMINATOR = 1000; // 100.0% +constexpr uint64 QRWA_QMINE_PER_QRWA_SHARE_MIN = 100000ULL; +constexpr uint64 QRWA_CONTRACT_ASSET_NAME = 1096241745ULL; // assetNameFromString("QRWA") // Payout Timing Constants -constexpr uint64 QRWA_PAYOUT_DAY = FRIDAY; // Friday -constexpr uint64 QRWA_PAYOUT_HOUR = 12; // 12:00 PM UTC -constexpr uint64 QRWA_MIN_PAYOUT_INTERVAL_MS = 6 * 86400000LL; // 6 days in milliseconds +constexpr uint64 QRWA_PAYOUT_DAY = FRIDAY; // Friday (Production) +constexpr uint64 QRWA_PAYOUT_HOUR = 12; // 12:00 PM UTC (Production) +constexpr uint64 QRWA_MIN_PAYOUT_INTERVAL_MS = 6 * 86400000LL; // 6 days in milliseconds (Production) +constexpr uint64 QRWA_PAYOUT_TICK_INTERVAL = 20; // TESTING: Check every 20 ticks for payout // STATUS CODES for Procedures constexpr uint64 QRWA_STATUS_SUCCESS = 1; @@ -56,17 +59,35 @@ constexpr uint64 QRWA_LOG_TYPE_ADMIN_ACTION = 7; constexpr uint64 QRWA_LOG_TYPE_ERROR = 8; constexpr uint64 QRWA_LOG_TYPE_INCOMING_REVENUE_A = 9; constexpr uint64 QRWA_LOG_TYPE_INCOMING_REVENUE_B = 10; +constexpr uint64 QRWA_LOG_TYPE_INCOMING_REVENUE_DEDICATED = 11; +constexpr uint64 QRWA_LOG_TYPE_PAYOUT_QMINE_HOLDER = 12; // valueA=amount, valueB=eligible QMINE count +constexpr uint64 QRWA_LOG_TYPE_PAYOUT_QRWA_HOLDER = 13; // valueA=amount, valueB=qRWA shares +constexpr uint64 QRWA_LOG_TYPE_PAYOUT_DEDICATED_QRWA = 14; // valueA=amount, valueB=qRWA shares (Pool C leg) + +// Ring buffer for tracking the last N individual payouts (queryable via GetLatestPayouts = fn 11) +constexpr uint64 QRWA_PAYOUT_RING_SIZE = 1024; // Must be a power of 2 +constexpr uint8 QRWA_PAYOUT_TYPE_QMINE_HOLDER = 0; // Regular QMINE holder payout +constexpr uint8 QRWA_PAYOUT_TYPE_QMINE_DEV = 1; // Dev address gets reducer's portion +constexpr uint8 QRWA_PAYOUT_TYPE_QRWA_HOLDER = 2; // qRWA shareholder (Pool B) +constexpr uint8 QRWA_PAYOUT_TYPE_DEDICATED_QRWA = 3; // Pool C (BTC Mining) dedicated qRWA holder leg /***************************************************/ /**************** CONTRACT STATE *******************/ /***************************************************/ +struct QRWA2 +{ +}; + struct QRWA : public ContractBase { friend class ContractTestingQRWA; + /***************************************************/ + /******************** STRUCTS **********************/ + /***************************************************/ - struct RWAAsset + struct QRWAAsset { id issuer; uint64 assetName; @@ -76,12 +97,12 @@ struct QRWA : public ContractBase return { issuer, assetName }; } - bool operator==(const RWAAsset other) const + bool operator==(const QRWAAsset other) const { return issuer == other.issuer && assetName == other.assetName; } - bool operator!=(const RWAAsset other) const + bool operator!=(const QRWAAsset other) const { return issuer != other.issuer || assetName != other.assetName; } @@ -94,7 +115,7 @@ struct QRWA : public ContractBase }; // votable governance parameters for the contract. - struct RWAGovParams + struct QRWAGovParams { // Addresses id mAdminAddress; // Only the admin can create release polls @@ -111,12 +132,12 @@ struct QRWA : public ContractBase }; // Represents a governance poll in a rotating buffer - struct RWAGovProposal + struct QRWAGovProposal { uint64 proposalId; // The unique, increasing ID uint64 status; // 0=Empty, 1=Active, 2=Passed, 3=Failed uint64 score; // Final score, count at END_EPOCH - RWAGovParams params; // The actual proposal data + QRWAGovParams params; // The actual proposal data }; // Represents a poll to release assets from the treasury or dividend pool. @@ -133,7 +154,7 @@ struct QRWA : public ContractBase }; // Logger for general contract events. - struct RWALogger + struct QRWALogger { uint64 contractId; uint64 logType; @@ -143,6 +164,18 @@ struct QRWA : public ContractBase sint8 _terminator; }; + // Single entry in the payout ring buffer (state.get().mLatestPayouts). + struct QRWAPayoutEntry + { + id recipient; // Who received the payment + uint64 amount; // Amount in QU + uint32 tick; // Network tick of the payout + uint8 payoutType; // QRWA_PAYOUT_TYPE_* constant + uint8 _pad0; + uint8 _pad1; + uint8 _pad2; + }; + struct StateData { Asset mQmineAsset; @@ -159,10 +192,10 @@ struct QRWA : public ContractBase uint64 mPayoutTotalQmineBegin; // Total QMINE shares from the last epoch's beginning // Votable Parameters - RWAGovParams mCurrentGovParams; // The live, active parameters + QRWAGovParams mCurrentGovParams; // The live, active parameters // Voting state for governance parameters (voted by QMINE holders) - Array mGovPolls; + Array mGovPolls; HashMap mShareholderVoteMap; // Maps QMINE holder -> Gov Poll slot index uint64 mCurrentGovProposalId; uint64 mNewGovPollsThisEpoch; @@ -176,22 +209,38 @@ struct QRWA : public ContractBase // Treasury & Asset Release uint64 mTreasuryBalance; // QMINE token balance holds by SC - HashMap mGeneralAssetBalances; // Balances for other assets (e.g., SC shares) + HashMap mGeneralAssetBalances; // Balances for other assets (e.g., SC shares) // Payouts and Dividend Accounting - DateAndTime mLastPayoutTime; // Tracks the last payout time + DateAndTime mLastPayoutTime; // Tracks the last payout time (Production) + uint64 mLastPayoutTick; // TESTING: Tick-based payout tracking // Dividend Pools uint64 mRevenuePoolA; // Mined funds from Qubic farm (from SCs) uint64 mRevenuePoolB; // Other dividend funds (from user wallets) + uint64 mDedicatedRevenuePool; // Pool C (BTC Mining) revenue from dedicated address // Processed dividend pools awaiting distribution uint64 mQmineDividendPool; // QUs for QMINE holders uint64 mQRWADividendPool; // QUs for qRWA shareholders + uint64 mDedicatedQRWADividendPool; // QUs for eligible Pool C qRWA shareholders (Pool C also feeds QMINE via mQmineDividendPool) + + // Pool C (BTC Mining) revenue configuration + id mDedicatedRevenueAddress; + + // Pool A revenue address (QMINE issuer or configured mining address) + id mPoolARevenueAddress; + + // Fundraising address — excluded from ALL distributions + id mFundraisingAddress; // Total distributed tracking uint64 mTotalQmineDistributed; uint64 mTotalQRWADistributed; + + // Ring buffer of the last QRWA_PAYOUT_RING_SIZE individual payouts (queryable via GetLatestPayouts) + Array mLatestPayouts; + uint16 mLatestPayoutsNextIdx; }; public: @@ -212,7 +261,7 @@ struct QRWA : public ContractBase { sint64 transferResult; sint64 balance; - RWALogger logger; + QRWALogger logger; }; PUBLIC_PROCEDURE_WITH_LOCALS(DonateToTreasury) { @@ -289,7 +338,7 @@ struct QRWA : public ContractBase // Governance: Param Voting struct VoteGovParams_input { - RWAGovParams proposal; + QRWAGovParams proposal; }; struct VoteGovParams_output { @@ -301,10 +350,10 @@ struct QRWA : public ContractBase uint64 i; uint64 foundProposal; uint64 proposalIndex; - RWALogger logger; - RWAGovProposal poll; + QRWALogger logger; + QRWAGovProposal poll; sint64 rawBalance; - RWAGovParams existing; + QRWAGovParams existing; uint64 status; }; PUBLIC_PROCEDURE_WITH_LOCALS(VoteGovParams) @@ -444,7 +493,7 @@ struct QRWA : public ContractBase { uint64 newPollIndex; AssetReleaseProposal newPoll; - RWALogger logger; + QRWALogger logger; }; PUBLIC_PROCEDURE_WITH_LOCALS(CreateAssetReleasePoll) { @@ -495,6 +544,21 @@ struct QRWA : public ContractBase return; } + // Only QMINE treasury releases are allowed via vote. + // SC shares (general assets) are permanently locked. + if (input.asset.issuer != state.get().mQmineAsset.issuer || input.asset.assetName != state.get().mQmineAsset.assetName) + { + output.status = QRWA_STATUS_FAILURE_INVALID_INPUT; + locals.logger.logType = QRWA_LOG_TYPE_ERROR; + locals.logger.valueB = output.status; + LOG_INFO(locals.logger); + if (qpi.invocationReward() > 0) + { + qpi.transfer(qpi.invocator(), qpi.invocationReward()); + } + return; + } + locals.newPollIndex = mod(state.get().mCurrentAssetProposalId, QRWA_MAX_ASSET_POLLS); // Create and store the new poll, overwriting the oldest one @@ -538,7 +602,7 @@ struct QRWA : public ContractBase uint64 currentBalance; AssetReleaseProposal poll; uint64 pollIndex; - RWALogger logger; + QRWALogger logger; uint64 foundPoll; bit_64 voterBitfield; bit_64 voterOptions; @@ -658,8 +722,8 @@ struct QRWA : public ContractBase sint64 transferResult; sint64 balance; uint64 currentAssetBalance; - RWALogger logger; - RWAAsset wrapper; + QRWALogger logger; + QRWAAsset wrapper; }; PUBLIC_PROCEDURE_WITH_LOCALS(DepositGeneralAsset) { @@ -743,7 +807,7 @@ struct QRWA : public ContractBase }; struct RevokeAssetManagementRights_locals { - RWALogger logger; + QRWALogger logger; sint64 managedBalance; sint64 result; }; @@ -848,6 +912,60 @@ struct QRWA : public ContractBase } } + // ── SetPoolARevenueAddress: Admin-only setter for mPoolARevenueAddress ── + struct SetPoolARevenueAddress_input + { + id newAddress; + }; + struct SetPoolARevenueAddress_output + { + uint64 status; + }; + struct SetPoolARevenueAddress_locals + { + QRWALogger logger; + }; + PUBLIC_PROCEDURE_WITH_LOCALS(SetPoolARevenueAddress) + { + output.status = QRWA_STATUS_FAILURE_GENERAL; + locals.logger.contractId = CONTRACT_INDEX; + locals.logger.logType = QRWA_LOG_TYPE_ADMIN_ACTION; + locals.logger.primaryId = qpi.invocator(); + + // Refund invocation reward + if (qpi.invocationReward() > 0) + { + qpi.transfer(qpi.invocator(), qpi.invocationReward()); + } + + // Admin-only check + if (qpi.invocator() != state.get().mCurrentGovParams.mAdminAddress) + { + output.status = QRWA_STATUS_FAILURE_NOT_AUTHORIZED; + locals.logger.logType = QRWA_LOG_TYPE_ERROR; + locals.logger.valueB = output.status; + LOG_INFO(locals.logger); + return; + } + + // Validate new address is not NULL + if (input.newAddress == NULL_ID) + { + output.status = QRWA_STATUS_FAILURE_INVALID_INPUT; + locals.logger.logType = QRWA_LOG_TYPE_ERROR; + locals.logger.valueB = output.status; + LOG_INFO(locals.logger); + return; + } + + // Set the new Pool A revenue address + state.mut().mPoolARevenueAddress = input.newAddress; + output.status = QRWA_STATUS_SUCCESS; + locals.logger.valueA = 1; // signals address was set + locals.logger.valueB = output.status; + LOG_INFO(locals.logger); + } + /***************************************************/ /***************** PUBLIC FUNCTIONS ****************/ /***************************************************/ @@ -856,7 +974,7 @@ struct QRWA : public ContractBase struct GetGovParams_input {}; struct GetGovParams_output { - RWAGovParams params; + QRWAGovParams params; }; PUBLIC_FUNCTION(GetGovParams) { @@ -869,7 +987,7 @@ struct QRWA : public ContractBase }; struct GetGovPoll_output { - RWAGovProposal proposal; + QRWAGovProposal proposal; uint64 status; // 0=NotFound, 1=Found }; struct GetGovPoll_locals @@ -944,6 +1062,8 @@ struct QRWA : public ContractBase uint64 revenuePoolB; uint64 qmineDividendPool; uint64 qrwaDividendPool; + uint64 dedicatedRevenuePool; + uint64 dedicatedQRWADividendPool; }; PUBLIC_FUNCTION(GetDividendBalances) { @@ -951,6 +1071,8 @@ struct QRWA : public ContractBase output.revenuePoolB = state.get().mRevenuePoolB; output.qmineDividendPool = state.get().mQmineDividendPool; output.qrwaDividendPool = state.get().mQRWADividendPool; + output.dedicatedRevenuePool = state.get().mDedicatedRevenuePool; + output.dedicatedQRWADividendPool = state.get().mDedicatedQRWADividendPool; } struct GetTotalDistributed_input {}; @@ -965,6 +1087,21 @@ struct QRWA : public ContractBase output.totalQRWADistributed = state.get().mTotalQRWADistributed; } + // Diagnostic: Query configured contract addresses + struct GetContractAddresses_input {}; + struct GetContractAddresses_output + { + id dedicatedRevenueAddress; + id poolARevenueAddress; + id fundraisingAddress; + }; + PUBLIC_FUNCTION(GetContractAddresses) + { + output.dedicatedRevenueAddress = state.get().mDedicatedRevenueAddress; + output.poolARevenueAddress = state.get().mPoolARevenueAddress; + output.fundraisingAddress = state.get().mFundraisingAddress; + } + struct GetActiveAssetReleasePollIds_input {}; struct GetActiveAssetReleasePollIds_output @@ -1025,7 +1162,7 @@ struct QRWA : public ContractBase struct GetGeneralAssetBalance_locals { uint64 balance; - RWAAsset wrapper; + QRWAAsset wrapper; }; PUBLIC_FUNCTION_WITH_LOCALS(GetGeneralAssetBalance) { locals.balance = 0; @@ -1050,7 +1187,7 @@ struct QRWA : public ContractBase struct GetGeneralAssets_locals { sint64 iterIndex; - RWAAsset currentAsset; + QRWAAsset currentAsset; uint64 currentBalance; }; PUBLIC_FUNCTION_WITH_LOCALS(GetGeneralAssets) @@ -1085,10 +1222,26 @@ struct QRWA : public ContractBase } } + // GetLatestPayouts (fn 11): Returns the ring buffer of the last QRWA_PAYOUT_RING_SIZE individual payouts. + // nextIdx points to the NEXT write position (= oldest entry if buffer is full). + // Parse order: entries from nextIdx..nextIdx-1 (mod QRWA_PAYOUT_RING_SIZE), oldest first → newest last. + struct GetLatestPayouts_input {}; + struct GetLatestPayouts_output + { + Array payouts; + uint16 nextIdx; // Next write index (oldest entry position when buffer is full) + }; + PUBLIC_FUNCTION(GetLatestPayouts) + { + output.payouts = state.get().mLatestPayouts; + output.nextIdx = state.get().mLatestPayoutsNextIdx; + } + /***************************************************/ /***************** SYSTEM PROCEDURES ***************/ /***************************************************/ + INITIALIZE() { // QMINE Asset Constant @@ -1104,41 +1257,42 @@ struct QRWA : public ContractBase state.mut().mTreasuryBalance = 0; state.mut().mCurrentAssetProposalId = 0; setMemory(state.mut().mLastPayoutTime, 0); + state.mut().mLastPayoutTick = 0; // Initialize default governance parameters state.mut().mCurrentGovParams.mAdminAddress = ID( - _Q, _M, _I, _N, _E, _Q, _Q, _X, _Y, _B, _E, _G, _B, _H, _N, _S, - _U, _P, _O, _U, _Y, _D, _I, _Q, _K, _Z, _P, _C, _B, _P, _Q, _I, - _I, _H, _U, _U, _Z, _M, _C, _P, _L, _B, _P, _C, _C, _A, _I, _A, - _R, _V, _Z, _B, _T, _Y, _K, _G - ); // Admin set to QMINE Issuer by default, subject to change via Gov Voting + _J, _H, _U, _I, _Z, _P, _G, _Z, _N, _M, _T, _H, _P, _C, _Z, _I, + _B, _A, _M, _S, _Z, _Q, _G, _B, _J, _C, _O, _A, _O, _G, _D, _A, + _Q, _V, _F, _H, _W, _Y, _K, _L, _E, _G, _G, _R, _M, _J, _E, _J, + _S, _X, _T, _R, _E, _U, _V, _C + ); state.mut().mCurrentGovParams.electricityAddress = ID( - _Q, _M, _I, _N, _E, _Q, _Q, _X, _Y, _B, _E, _G, _B, _H, _N, _S, - _U, _P, _O, _U, _Y, _D, _I, _Q, _K, _Z, _P, _C, _B, _P, _Q, _I, - _I, _H, _U, _U, _Z, _M, _C, _P, _L, _B, _P, _C, _C, _A, _I, _A, - _R, _V, _Z, _B, _T, _Y, _K, _G - ); // Electricity address set to QMINE Issuer by default, subject to change via Gov Voting + _J, _T, _I, _D, _B, _A, _Q, _S, _M, _H, _F, _S, _F, _D, _P, _C, + _M, _Q, _G, _B, _Z, _V, _R, _N, _N, _T, _K, _A, _J, _N, _Z, _G, + _E, _O, _L, _Y, _O, _U, _F, _N, _U, _E, _S, _M, _Q, _L, _N, _G, + _W, _J, _B, _A, _R, _G, _Q, _B + ); state.mut().mCurrentGovParams.maintenanceAddress = ID( - _Q, _M, _I, _N, _E, _Q, _Q, _X, _Y, _B, _E, _G, _B, _H, _N, _S, - _U, _P, _O, _U, _Y, _D, _I, _Q, _K, _Z, _P, _C, _B, _P, _Q, _I, - _I, _H, _U, _U, _Z, _M, _C, _P, _L, _B, _P, _C, _C, _A, _I, _A, - _R, _V, _Z, _B, _T, _Y, _K, _G - ); // Maintenance address set to QMINE Issuer by default, subject to change via Gov Voting + _J, _N, _R, _Z, _M, _D, _C, _B, _Q, _Y, _F, _C, _F, _A, _T, _G, + _L, _O, _Z, _V, _E, _W, _K, _F, _W, _E, _P, _D, _H, _S, _I, _G, + _R, _F, _O, _F, _C, _G, _P, _J, _F, _E, _Z, _Q, _Y, _Q, _Z, _P, + _B, _K, _M, _S, _S, _V, _J, _B + ); state.mut().mCurrentGovParams.reinvestmentAddress = ID( - _Q, _M, _I, _N, _E, _Q, _Q, _X, _Y, _B, _E, _G, _B, _H, _N, _S, - _U, _P, _O, _U, _Y, _D, _I, _Q, _K, _Z, _P, _C, _B, _P, _Q, _I, - _I, _H, _U, _U, _Z, _M, _C, _P, _L, _B, _P, _C, _C, _A, _I, _A, - _R, _V, _Z, _B, _T, _Y, _K, _G - ); // Reinvestment address set to QMINE Issuer by default, subject to change via Gov Voting + _C, _Q, _V, _D, _N, _N, _G, _N, _I, _R, _L, _T, _B, _G, _D, _J, + _F, _P, _W, _U, _J, _A, _Y, _O, _D, _J, _E, _C, _L, _N, _W, _W, + _U, _T, _V, _U, _N, _W, _T, _A, _M, _D, _S, _Y, _F, _B, _N, _K, + _S, _N, _D, _C, _A, _Y, _U, _D + ); // QMINE DEV's Address for receiving rewards from moved QMINE tokens // ZOXXIDCZIMGCECCFAXDDCMBBXCDAQJIHGOOATAFPSBFIOFOYECFKUFPBEMWC state.mut().mCurrentGovParams.qmineDevAddress = ID( - _Z, _O, _X, _X, _I, _D, _C, _Z, _I, _M, _G, _C, _E, _C, _C, _F, - _A, _X, _D, _D, _C, _M, _B, _B, _X, _C, _D, _A, _Q, _J, _I, _H, - _G, _O, _O, _A, _T, _A, _F, _P, _S, _B, _F, _I, _O, _F, _O, _Y, - _E, _C, _F, _K, _U, _F, _P, _B - ); // Default QMINE_DEV address + _R, _U, _J, _G, _S, _W, _E, _E, _E, _U, _C, _O, _O, _C, _D, _P, + _A, _M, _U, _U, _Z, _S, _H, _I, _R, _Y, _N, _D, _A, _F, _D, _O, + _W, _X, _F, _W, _A, _Q, _L, _Z, _R, _B, _N, _X, _G, _E, _X, _Q, + _W, _B, _D, _C, _V, _U, _Z, _G + ); state.mut().mCurrentGovParams.electricityPercent = 350; state.mut().mCurrentGovParams.maintenancePercent = 50; state.mut().mCurrentGovParams.reinvestmentPercent = 100; @@ -1151,8 +1305,39 @@ struct QRWA : public ContractBase // Initialize revenue pools state.mut().mRevenuePoolA = 0; state.mut().mRevenuePoolB = 0; + state.mut().mDedicatedRevenuePool = 0; state.mut().mQmineDividendPool = 0; state.mut().mQRWADividendPool = 0; + state.mut().mDedicatedQRWADividendPool = 0; + + // Dedicated BTC revenue address (Pool C) + // Production: USALFUZBICLZIEMYPSKLYDZJZRFBKYEONUGSWFXOIGRMWSJHLIPMEGZCVCMG + // Testnet: WFCELJRTMTYEGHNTYONQOWVQIUYBVBPTSIRCOTJUXFIQAQPEYJQGQQSAVDDM + state.mut().mDedicatedRevenueAddress = ID( + _W, _F, _C, _E, _L, _J, _R, _T, _M, _T, _Y, _E, _G, _H, _N, _T, + _Y, _O, _N, _Q, _O, _W, _V, _Q, _I, _U, _Y, _B, _V, _B, _P, _T, + _S, _I, _R, _C, _O, _T, _J, _U, _X, _F, _I, _Q, _A, _Q, _P, _E, + _Y, _J, _Q, _G, _Q, _Q, _S, _A + ); + + // Fundraising address — excluded from ALL distributions + // QTDSQGIEAPPMMDDSEHBHHETEUZHBUZXRYFKKTICWAAUXVEWNPCTGCAFBYWWB + state.mut().mFundraisingAddress = ID( + _Q, _T, _D, _S, _Q, _G, _I, _E, _A, _P, _P, _M, _M, _D, _D, _S, + _E, _H, _B, _H, _H, _E, _T, _E, _U, _Z, _H, _B, _U, _Z, _X, _R, + _Y, _F, _K, _K, _T, _I, _C, _W, _A, _A, _U, _X, _V, _E, _W, _N, + _P, _C, _T, _G, _C, _A, _F, _B + ); + + // Pool A revenue address (Mining / QMINE issuer) + // Production: QMINEQQXYBEGBHNSUPOUYDIQKZPCBPQIIHUUZMCPLBPCCAIARVZBTYKGFCWM + // Testnet: IZNUAVRCTNYBQBSFYWBBPQUXASPCYDZYKFFULCEGLCFCEQPTLDTKZQMENKRN + state.mut().mPoolARevenueAddress = ID( + _I, _Z, _N, _U, _A, _V, _R, _C, _T, _N, _Y, _B, _Q, _B, _S, _F, + _Y, _W, _B, _B, _P, _Q, _U, _X, _A, _S, _P, _C, _Y, _D, _Z, _Y, + _K, _F, _F, _U, _L, _C, _E, _G, _L, _C, _F, _C, _E, _Q, _P, _T, + _L, _D, _T, _K, _Z, _Q, _M, _E + ); // Initialize total distributed state.mut().mTotalQmineDistributed = 0; @@ -1176,12 +1361,52 @@ struct QRWA : public ContractBase { AssetPossessionIterator iter; uint64 balance; - RWALogger logger; + QRWALogger logger; id holder; uint64 existingBalance; + id newDedicatedAddr; }; BEGIN_EPOCH_WITH_LOCALS() { + // ── Migration: auto-initialize mPoolARevenueAddress if not set ── + // INITIALIZE only runs once at contract creation, so state variables added + // after deployment need to be initialized here on first epoch. + if (state.get().mPoolARevenueAddress == NULL_ID) + { + // Testnet: IZNUAVRCTNYBQBSFYWBBPQUXASPCYDZYKFFULCEGLCFCEQPTLDTKZQMENKRN + // Production: change to QMINEQQXYBEGBHNSUPOUYDIQKZPCBPQIIHUUZMCPLBPCCAIARVZBTYKGFCWM + state.mut().mPoolARevenueAddress = ID( + _I, _Z, _N, _U, _A, _V, _R, _C, _T, _N, _Y, _B, _Q, _B, _S, _F, + _Y, _W, _B, _B, _P, _Q, _U, _X, _A, _S, _P, _C, _Y, _D, _Z, _Y, + _K, _F, _F, _U, _L, _C, _E, _G, _L, _C, _F, _C, _E, _Q, _P, _T, + _L, _D, _T, _K, _Z, _Q, _M, _E + ); + } + + // Migration: auto-initialize mFundraisingAddress if not set + if (state.get().mFundraisingAddress == NULL_ID) + { + state.mut().mFundraisingAddress = ID( + _Q, _T, _D, _S, _Q, _G, _I, _E, _A, _P, _P, _M, _M, _D, _D, _S, + _E, _H, _B, _H, _H, _E, _T, _E, _U, _Z, _H, _B, _U, _Z, _X, _R, + _Y, _F, _K, _K, _T, _I, _C, _W, _A, _A, _U, _X, _V, _E, _W, _N, + _P, _C, _T, _G, _C, _A, _F, _B + ); + } + + // Migration: update mDedicatedRevenueAddress to new Pool C address + // Testnet: WFCELJRTMTYEGHNTYONQOWVQIUYBVBPTSIRCOTJUXFIQAQPEYJQGQQSAVDDM + locals.newDedicatedAddr = ID( + _W, _F, _C, _E, _L, _J, _R, _T, _M, _T, _Y, _E, _G, _H, _N, _T, + _Y, _O, _N, _Q, _O, _W, _V, _Q, _I, _U, _Y, _B, _V, _B, _P, _T, + _S, _I, _R, _C, _O, _T, _J, _U, _X, _F, _I, _Q, _A, _Q, _P, _E, + _Y, _J, _Q, _G, _Q, _Q, _S, _A + ); + if (state.get().mDedicatedRevenueAddress != locals.newDedicatedAddr) + { + state.mut().mDedicatedRevenueAddress = locals.newDedicatedAddr; + } + // Reset new poll counters state.mut().mNewGovPollsThisEpoch = 0; state.mut().mNewAssetPollsThisEpoch = 0; @@ -1201,6 +1426,11 @@ struct QRWA : public ContractBase { continue; } + // Exclude fundraising address from all distributions + if (state.get().mFundraisingAddress != NULL_ID && locals.iter.possessor() == state.get().mFundraisingAddress) + { + continue; + } locals.balance = locals.iter.numberOfPossessedShares(); locals.holder = locals.iter.possessor(); @@ -1277,16 +1507,16 @@ struct QRWA : public ContractBase uint64 feePaid; uint64 sufficientFunds; - RWALogger logger; + QRWALogger logger; uint64 epoch; sint64 copyIndex; id copyHolder; uint64 copyBalance; - RWAAsset wrapper; + QRWAAsset wrapper; - RWAGovProposal govPoll; + QRWAGovProposal govPoll; id holder; uint64 existingBalance; @@ -1305,6 +1535,11 @@ struct QRWA : public ContractBase { continue; } + // Exclude fundraising address from all distributions + if (state.get().mFundraisingAddress != NULL_ID && locals.iter.possessor() == state.get().mFundraisingAddress) + { + continue; + } locals.balance = locals.iter.numberOfPossessedShares(); locals.holder = locals.iter.possessor(); @@ -1386,14 +1621,14 @@ struct QRWA : public ContractBase } } - // Calculate 2/3 quorum threshold + // Calculate simple majority threshold (>50% of total voting power) locals.quorumThreshold = 0; if (locals.totalQminePower > 0) { - locals.quorumThreshold = div(sadd(smul(locals.totalQminePower, 2ULL), 2ULL), 3ULL); + locals.quorumThreshold = sadd(div(locals.totalQminePower, 2ULL), 1ULL); } - // Finalize Gov Vote (check against 2/3 quorum) + // Finalize Gov Vote (check against simple majority threshold) locals.govPassed = 0; if (locals.topScore >= locals.quorumThreshold && locals.topProposalIndex != NULL_INDEX) { @@ -1498,7 +1733,7 @@ struct QRWA : public ContractBase locals.sufficientFunds = 0; - if (locals.yesVotes >= locals.quorumThreshold) // YES wins + if (locals.yesVotes > locals.noVotes) // Simple majority: YES > NO { // Check if asset is QMINE treasury if (locals.poll.asset.issuer == state.get().mQmineAsset.issuer && locals.poll.asset.assetName == state.get().mQmineAsset.assetName) @@ -1618,7 +1853,7 @@ struct QRWA : public ContractBase locals.logger.valueA = locals.poll.proposalId; LOG_INFO(locals.logger); } - else // Vote failed (NO wins or < quorum) + else // Vote failed (simple majority not reached) { locals.poll.status = QRWA_POLL_STATUS_FAILED_VOTE; } @@ -1679,8 +1914,17 @@ struct QRWA : public ContractBase uint64 totalDistribution; uint64 qminePayout; uint64 qrwaPayout; + uint64 dedicatedQminePayout; + uint64 dedicatedQrwaPayout; uint64 amountPerQRWAShare; uint64 distributedAmount; + uint64 eligibleShares; + uint64 dedicatedEligibleShares; + uint64 dedicatedAmountPerShare; + uint64 dedicatedDistributed; + uint64 qrwaShares; + uint64 requiredQmine; + sint64 qmineBalance; sint64 qminePayoutIndex; id holder; @@ -1695,39 +1939,19 @@ struct QRWA : public ContractBase uint128 qmineDividendPool_128; uint64 payout_u64; uint64 foundEnd; - RWALogger logger; + QRWALogger logger; + QRWAPayoutEntry payoutEntry; // Reused for ring buffer writes + AssetPossessionIterator qrwaIter; + Asset qrwaAsset; }; END_TICK_WITH_LOCALS() { locals.now = qpi.now(); - // Check payout conditions: Correct day, correct hour, and enough time passed - if (qpi.dayOfWeek((uint8)mod(locals.now.getYear(), (uint16)100), locals.now.getMonth(), locals.now.getDay()) == QRWA_PAYOUT_DAY && - locals.now.getHour() == QRWA_PAYOUT_HOUR) + // TESTING: Check every 100 ticks for payout distribution + // Production: Use day/hour check instead (QRWA_PAYOUT_DAY + QRWA_PAYOUT_HOUR) + if (state.get().mLastPayoutTick == 0 || (qpi.tick() - state.get().mLastPayoutTick) >= QRWA_PAYOUT_TICK_INTERVAL) { - // check if mLastPayoutTime is 0 (never initialized) - if (state.get().mLastPayoutTime.getYear() == 0) - { - // If never paid, treat as if enough time has passed - locals.msSinceLastPayout = QRWA_MIN_PAYOUT_INTERVAL_MS; - } - else - { - locals.durationMicros = state.get().mLastPayoutTime.durationMicrosec(locals.now); - - if (locals.durationMicros != UINT64_MAX) - { - locals.msSinceLastPayout = div(locals.durationMicros, 1000); - } - else - { - // If it's invalid but NOT zero, something is wrong, so we prevent payout - locals.msSinceLastPayout = 0; - } - } - - if (locals.msSinceLastPayout >= QRWA_MIN_PAYOUT_INTERVAL_MS) - { locals.logger.contractId = CONTRACT_INDEX; locals.logger.logType = QRWA_LOG_TYPE_DISTRIBUTION; @@ -1809,6 +2033,17 @@ struct QRWA : public ContractBase state.mut().mRevenuePoolB = 0; } + // Allocate Pool C (BTC Mining) revenue pool: split into QMINE leg + dedicated qRWA leg + if (state.get().mDedicatedRevenuePool > 0) + { + locals.dedicatedQminePayout = div(smul(state.get().mDedicatedRevenuePool, QRWA_QMINE_HOLDER_PERCENT), QRWA_PERCENT_DENOMINATOR); + locals.dedicatedQrwaPayout = state.get().mDedicatedRevenuePool - locals.dedicatedQminePayout; + + state.mut().mQmineDividendPool = sadd(state.get().mQmineDividendPool, locals.dedicatedQminePayout); + state.mut().mDedicatedQRWADividendPool = sadd(state.get().mDedicatedQRWADividendPool, locals.dedicatedQrwaPayout); + state.mut().mDedicatedRevenuePool = 0; + } + // Distribute QMINE rewards if (state.get().mQmineDividendPool > 0 && state.get().mPayoutTotalQmineBegin > 0) { @@ -1828,13 +2063,20 @@ struct QRWA : public ContractBase locals.holder = state.get().mPayoutBeginBalances.key(locals.qminePayoutIndex); locals.beginBalance = state.get().mPayoutBeginBalances.value(locals.qminePayoutIndex); + // Exclude fundraising address + if (state.get().mFundraisingAddress != NULL_ID && locals.holder == state.get().mFundraisingAddress) + { + continue; + } + locals.foundEnd = state.get().mPayoutEndBalances.get(locals.holder, locals.endBalance) ? 1 : 0; if (locals.foundEnd == 0) { locals.endBalance = 0; } - locals.eligibleBalance = (locals.beginBalance < locals.endBalance) ? locals.beginBalance : locals.endBalance; + // If holder reduced shares during the epoch → zero payout, full portion to dev + locals.eligibleBalance = (locals.endBalance >= locals.beginBalance) ? locals.beginBalance : 0; if (locals.eligibleBalance > 0) { @@ -1855,6 +2097,18 @@ struct QRWA : public ContractBase locals.qmineDividendPool_128 -= locals.eligiblePayout_128; state.mut().mTotalQmineDistributed = sadd(state.get().mTotalQmineDistributed, locals.payout_u64); locals.totalEligiblePaid_128 += locals.eligiblePayout_128; + locals.payoutEntry.recipient = locals.holder; + locals.payoutEntry.amount = locals.payout_u64; + locals.payoutEntry.tick = qpi.tick(); + locals.payoutEntry.payoutType = QRWA_PAYOUT_TYPE_QMINE_HOLDER; + state.mut().mLatestPayouts.set(state.get().mLatestPayoutsNextIdx, locals.payoutEntry); + state.mut().mLatestPayoutsNextIdx = (state.get().mLatestPayoutsNextIdx + 1) & (QRWA_PAYOUT_RING_SIZE - 1); + locals.logger.contractId = CONTRACT_INDEX; + locals.logger.logType = QRWA_LOG_TYPE_PAYOUT_QMINE_HOLDER; + locals.logger.primaryId = locals.holder; + locals.logger.valueA = locals.payout_u64; + locals.logger.valueB = locals.eligibleBalance; + LOG_INFO(locals.logger); } else { @@ -1878,6 +2132,18 @@ struct QRWA : public ContractBase state.mut().mTotalQmineDistributed = sadd(state.get().mTotalQmineDistributed, locals.payout_u64); locals.totalEligiblePaid_128 += locals.qmineDividendPool_128; locals.qmineDividendPool_128 = 0; // Pool exhausted + locals.payoutEntry.recipient = locals.holder; + locals.payoutEntry.amount = locals.payout_u64; + locals.payoutEntry.tick = qpi.tick(); + locals.payoutEntry.payoutType = QRWA_PAYOUT_TYPE_QMINE_HOLDER; + state.mut().mLatestPayouts.set(state.get().mLatestPayoutsNextIdx, locals.payoutEntry); + state.mut().mLatestPayoutsNextIdx = (state.get().mLatestPayoutsNextIdx + 1) & (QRWA_PAYOUT_RING_SIZE - 1); + locals.logger.contractId = CONTRACT_INDEX; + locals.logger.logType = QRWA_LOG_TYPE_PAYOUT_QMINE_HOLDER; + locals.logger.primaryId = locals.holder; + locals.logger.valueA = locals.payout_u64; + locals.logger.valueB = locals.eligibleBalance; + LOG_INFO(locals.logger); } else { @@ -1904,6 +2170,12 @@ struct QRWA : public ContractBase { state.mut().mTotalQmineDistributed = sadd(state.get().mTotalQmineDistributed, locals.payout_u64); locals.qmineDividendPool_128 = 0; + locals.payoutEntry.recipient = state.get().mCurrentGovParams.qmineDevAddress; + locals.payoutEntry.amount = locals.payout_u64; + locals.payoutEntry.tick = qpi.tick(); + locals.payoutEntry.payoutType = QRWA_PAYOUT_TYPE_QMINE_DEV; + state.mut().mLatestPayouts.set(state.get().mLatestPayoutsNextIdx, locals.payoutEntry); + state.mut().mLatestPayoutsNextIdx = (state.get().mLatestPayoutsNextIdx + 1) & (QRWA_PAYOUT_RING_SIZE - 1); } else { @@ -1921,44 +2193,271 @@ struct QRWA : public ContractBase state.mut().mQmineDividendPool = locals.qmineDividendPool_128.low; } // End QMINE distribution - // Distribute qRWA shareholder rewards + // Distribute qRWA shareholder rewards (Pool B — all qRWA holders, no QMINE requirement) if (state.get().mQRWADividendPool > 0) { - locals.amountPerQRWAShare = div(state.get().mQRWADividendPool, NUMBER_OF_COMPUTORS); - if (locals.amountPerQRWAShare > 0) + locals.qrwaAsset.issuer = id::zero(); + locals.qrwaAsset.assetName = QRWA_CONTRACT_ASSET_NAME; + locals.eligibleShares = 0; + + // First pass: count eligible shares + for (locals.qrwaIter.begin(locals.qrwaAsset); !locals.qrwaIter.reachedEnd(); locals.qrwaIter.next()) + { + locals.qrwaShares = static_cast(locals.qrwaIter.numberOfPossessedShares()); + if (locals.qrwaShares == 0) + { + continue; + } + + locals.holder = locals.qrwaIter.possessor(); + if (locals.holder == SELF) + { + continue; + } + // Exclude fundraising address + if (state.get().mFundraisingAddress != NULL_ID && locals.holder == state.get().mFundraisingAddress) + { + continue; + } + + locals.eligibleShares = sadd(locals.eligibleShares, locals.qrwaShares); + } + + if (locals.eligibleShares > 0) { - if (qpi.distributeDividends(static_cast(locals.amountPerQRWAShare))) + locals.amountPerQRWAShare = div(state.get().mQRWADividendPool, locals.eligibleShares); + if (locals.amountPerQRWAShare > 0) { - locals.distributedAmount = smul(locals.amountPerQRWAShare, static_cast(NUMBER_OF_COMPUTORS)); - state.mut().mQRWADividendPool -= locals.distributedAmount; + locals.distributedAmount = 0; + + // Second pass: distribute to eligible holders + for (locals.qrwaIter.begin(locals.qrwaAsset); !locals.qrwaIter.reachedEnd(); locals.qrwaIter.next()) + { + locals.qrwaShares = static_cast(locals.qrwaIter.numberOfPossessedShares()); + if (locals.qrwaShares == 0) + { + continue; + } + + locals.holder = locals.qrwaIter.possessor(); + if (locals.holder == SELF) + { + continue; + } + // Exclude fundraising address + if (state.get().mFundraisingAddress != NULL_ID && locals.holder == state.get().mFundraisingAddress) + { + continue; + } + + locals.payout_u64 = smul(locals.amountPerQRWAShare, locals.qrwaShares); + if (locals.payout_u64 > 0) + { + if (qpi.transfer(locals.holder, static_cast(locals.payout_u64)) >= 0) + { + locals.distributedAmount = sadd(locals.distributedAmount, locals.payout_u64); + locals.payoutEntry.recipient = locals.holder; + locals.payoutEntry.amount = locals.payout_u64; + locals.payoutEntry.tick = qpi.tick(); + locals.payoutEntry.payoutType = QRWA_PAYOUT_TYPE_QRWA_HOLDER; + state.mut().mLatestPayouts.set(state.get().mLatestPayoutsNextIdx, locals.payoutEntry); + state.mut().mLatestPayoutsNextIdx = (state.get().mLatestPayoutsNextIdx + 1) & (QRWA_PAYOUT_RING_SIZE - 1); + locals.logger.contractId = CONTRACT_INDEX; + locals.logger.logType = QRWA_LOG_TYPE_PAYOUT_QRWA_HOLDER; + locals.logger.primaryId = locals.holder; + locals.logger.valueA = locals.payout_u64; + locals.logger.valueB = locals.qrwaShares; + LOG_INFO(locals.logger); + } + else + { + locals.logger.logType = QRWA_LOG_TYPE_ERROR; + locals.logger.primaryId = locals.holder; + locals.logger.valueA = locals.payout_u64; + locals.logger.valueB = QRWA_STATUS_FAILURE_TRANSFER_FAILED; + LOG_INFO(locals.logger); + } + } + } + + if (state.get().mQRWADividendPool > locals.distributedAmount) + { + state.mut().mQRWADividendPool -= locals.distributedAmount; + } + else + { + state.mut().mQRWADividendPool = 0; + } state.mut().mTotalQRWADistributed = sadd(state.get().mTotalQRWADistributed, locals.distributedAmount); } } } - // Update last payout time + // Distribute dedicated qRWA leg of Pool C to eligible shareholders (requires >= 100K QMINE per qRWA share) + if (state.get().mDedicatedQRWADividendPool > 0) + { + locals.qrwaAsset.issuer = id::zero(); + locals.qrwaAsset.assetName = QRWA_CONTRACT_ASSET_NAME; + locals.dedicatedEligibleShares = 0; + + for (locals.qrwaIter.begin(locals.qrwaAsset); !locals.qrwaIter.reachedEnd(); locals.qrwaIter.next()) + { + locals.qrwaShares = static_cast(locals.qrwaIter.numberOfPossessedShares()); + if (locals.qrwaShares == 0) + { + continue; + } + + locals.holder = locals.qrwaIter.possessor(); + if (locals.holder == SELF) + { + continue; + } + // Exclude fundraising address + if (state.get().mFundraisingAddress != NULL_ID && locals.holder == state.get().mFundraisingAddress) + { + continue; + } + + locals.qmineBalance = qpi.numberOfShares( + state.get().mQmineAsset, + AssetOwnershipSelect::byOwner(locals.holder), + AssetPossessionSelect::byPossessor(locals.holder) + ); + + if (locals.qmineBalance <= 0) + { + continue; + } + + locals.requiredQmine = smul(locals.qrwaShares, QRWA_QMINE_PER_QRWA_SHARE_MIN); + if (static_cast(locals.qmineBalance) >= locals.requiredQmine) + { + locals.dedicatedEligibleShares = sadd(locals.dedicatedEligibleShares, locals.qrwaShares); + } + } + + if (locals.dedicatedEligibleShares > 0) + { + locals.dedicatedAmountPerShare = div(state.get().mDedicatedQRWADividendPool, locals.dedicatedEligibleShares); + if (locals.dedicatedAmountPerShare > 0) + { + locals.dedicatedDistributed = 0; + for (locals.qrwaIter.begin(locals.qrwaAsset); !locals.qrwaIter.reachedEnd(); locals.qrwaIter.next()) + { + locals.qrwaShares = static_cast(locals.qrwaIter.numberOfPossessedShares()); + if (locals.qrwaShares == 0) + { + continue; + } + + locals.holder = locals.qrwaIter.possessor(); + if (locals.holder == SELF) + { + continue; + } + // Exclude fundraising address + if (state.get().mFundraisingAddress != NULL_ID && locals.holder == state.get().mFundraisingAddress) + { + continue; + } + + locals.qmineBalance = qpi.numberOfShares( + state.get().mQmineAsset, + AssetOwnershipSelect::byOwner(locals.holder), + AssetPossessionSelect::byPossessor(locals.holder) + ); + + if (locals.qmineBalance <= 0) + { + continue; + } + + locals.requiredQmine = smul(locals.qrwaShares, QRWA_QMINE_PER_QRWA_SHARE_MIN); + if (static_cast(locals.qmineBalance) < locals.requiredQmine) + { + continue; + } + + locals.payout_u64 = smul(locals.dedicatedAmountPerShare, locals.qrwaShares); + if (locals.payout_u64 > 0) + { + if (qpi.transfer(locals.holder, static_cast(locals.payout_u64)) >= 0) + { + locals.dedicatedDistributed = sadd(locals.dedicatedDistributed, locals.payout_u64); + locals.payoutEntry.recipient = locals.holder; + locals.payoutEntry.amount = locals.payout_u64; + locals.payoutEntry.tick = qpi.tick(); + locals.payoutEntry.payoutType = QRWA_PAYOUT_TYPE_DEDICATED_QRWA; + state.mut().mLatestPayouts.set(state.get().mLatestPayoutsNextIdx, locals.payoutEntry); + state.mut().mLatestPayoutsNextIdx = (state.get().mLatestPayoutsNextIdx + 1) & (QRWA_PAYOUT_RING_SIZE - 1); + locals.logger.contractId = CONTRACT_INDEX; + locals.logger.logType = QRWA_LOG_TYPE_PAYOUT_DEDICATED_QRWA; + locals.logger.primaryId = locals.holder; + locals.logger.valueA = locals.payout_u64; + locals.logger.valueB = locals.qrwaShares; + LOG_INFO(locals.logger); + } + else + { + locals.logger.logType = QRWA_LOG_TYPE_ERROR; + locals.logger.primaryId = locals.holder; + locals.logger.valueA = locals.payout_u64; + locals.logger.valueB = QRWA_STATUS_FAILURE_TRANSFER_FAILED; + LOG_INFO(locals.logger); + } + } + } + + if (state.get().mDedicatedQRWADividendPool > locals.dedicatedDistributed) + { + state.mut().mDedicatedQRWADividendPool -= locals.dedicatedDistributed; + } + else + { + state.mut().mDedicatedQRWADividendPool = 0; + } + state.mut().mTotalQRWADistributed = sadd(state.get().mTotalQRWADistributed, locals.dedicatedDistributed); + } + } + } + + // Update last payout time/tick state.mut().mLastPayoutTime = qpi.now(); + state.mut().mLastPayoutTick = qpi.tick(); locals.logger.logType = QRWA_LOG_TYPE_DISTRIBUTION; locals.logger.primaryId = NULL_ID; locals.logger.valueA = 1; // Indicate success locals.logger.valueB = 0; LOG_INFO(locals.logger); - } } } struct POST_INCOMING_TRANSFER_locals { - RWALogger logger; + QRWALogger logger; }; POST_INCOMING_TRANSFER_WITH_LOCALS() { - // Differentiate revenue streams based on source type - // Only deposit to Pool A if source is QUTIL - // All other transfers (users or other contracts) go to Pool B - if (input.sourceId == id(QUTIL_CONTRACT_INDEX, 0, 0, 0)) + // Revenue routing: + // Pool A: QUTIL contract OR mPoolARevenueAddress (QMINE issuer / mining revenue) + // Pool C: Dedicated BTC revenue address (mDedicatedRevenueAddress) + // Pool B: Everything else (users, other contracts) + if (state.get().mDedicatedRevenueAddress != NULL_ID && input.sourceId == state.get().mDedicatedRevenueAddress) + { + // Pool C: Dedicated BTC revenue address + state.mut().mDedicatedRevenuePool = sadd(state.get().mDedicatedRevenuePool, static_cast(input.amount)); + locals.logger.contractId = CONTRACT_INDEX; + locals.logger.logType = QRWA_LOG_TYPE_INCOMING_REVENUE_DEDICATED; + locals.logger.primaryId = input.sourceId; + locals.logger.valueA = input.amount; + locals.logger.valueB = input.type; + LOG_INFO(locals.logger); + } + else if (input.sourceId == id(QUTIL_CONTRACT_INDEX, 0, 0, 0) || + (state.get().mPoolARevenueAddress != NULL_ID && input.sourceId == state.get().mPoolARevenueAddress)) { - // Source is explicitly QUTIL -> Pool A + // Pool A: QUTIL (SendToMany) or direct transfer from Pool A revenue address state.mut().mRevenuePoolA = sadd(state.get().mRevenuePoolA, static_cast(input.amount)); locals.logger.contractId = CONTRACT_INDEX; locals.logger.logType = QRWA_LOG_TYPE_INCOMING_REVENUE_A; @@ -1969,7 +2468,7 @@ struct QRWA : public ContractBase } else if (input.sourceId != NULL_ID) { - // Source is NOT QUTIL (User or other Contract) -> Pool B + // Pool B: All other sources (users, other contracts) state.mut().mRevenuePoolB = sadd(state.get().mRevenuePoolB, static_cast(input.amount)); locals.logger.contractId = CONTRACT_INDEX; locals.logger.logType = QRWA_LOG_TYPE_INCOMING_REVENUE_B; @@ -1987,8 +2486,48 @@ struct QRWA : public ContractBase output.allowTransfer = true; } - POST_ACQUIRE_SHARES() + struct POST_ACQUIRE_SHARES_locals { + sint64 transferResult; + uint64 currentAssetBalance; + QRWAAsset wrapper; + QRWALogger logger; + }; + POST_ACQUIRE_SHARES_WITH_LOCALS() + { + // Automatically lock shares permanently: transfer ownership+possession from + // the previous owner/possessor to SELF and record in mGeneralAssetBalances. + // This allows any user to deposit SC shares in 2 steps: + // 1. Buy shares on QX + // 2. Transfer management rights to qRWA (this callback fires automatically) + locals.transferResult = qpi.transferShareOwnershipAndPossession( + input.asset.assetName, + input.asset.issuer, + input.owner, // current owner + input.possessor, // current possessor + input.numberOfShares, + SELF // new owner and possessor (permanent lock) + ); + + locals.logger.contractId = CONTRACT_INDEX; + locals.logger.logType = QRWA_LOG_TYPE_ADMIN_ACTION; + locals.logger.primaryId = input.owner; + locals.logger.valueA = input.asset.assetName; + + if (locals.transferResult >= 0) + { + locals.wrapper.setFrom(input.asset); + state.get().mGeneralAssetBalances.get(locals.wrapper, locals.currentAssetBalance); // 0 if not present + locals.currentAssetBalance = sadd(locals.currentAssetBalance, (uint64)input.numberOfShares); + state.mut().mGeneralAssetBalances.set(locals.wrapper, locals.currentAssetBalance); + locals.logger.valueB = QRWA_STATUS_SUCCESS; + } + else + { + locals.logger.valueB = QRWA_STATUS_FAILURE_TRANSFER_FAILED; + } + + LOG_INFO(locals.logger); } REGISTER_USER_FUNCTIONS_AND_PROCEDURES() @@ -2000,6 +2539,7 @@ struct QRWA : public ContractBase REGISTER_USER_PROCEDURE(VoteAssetRelease, 6); REGISTER_USER_PROCEDURE(DepositGeneralAsset, 7); REGISTER_USER_PROCEDURE(RevokeAssetManagementRights, 8); + REGISTER_USER_PROCEDURE(SetPoolARevenueAddress, 9); // FUNCTIONS REGISTER_USER_FUNCTION(GetGovParams, 1); @@ -2012,5 +2552,7 @@ struct QRWA : public ContractBase REGISTER_USER_FUNCTION(GetActiveGovPollIds, 8); REGISTER_USER_FUNCTION(GetGeneralAssetBalance, 9); REGISTER_USER_FUNCTION(GetGeneralAssets, 10); + REGISTER_USER_FUNCTION(GetLatestPayouts, 11); + REGISTER_USER_FUNCTION(GetContractAddresses, 12); } }; diff --git a/src/network_core/peers.h b/src/network_core/peers.h index c10dee23d..52fa95428 100644 --- a/src/network_core/peers.h +++ b/src/network_core/peers.h @@ -572,6 +572,7 @@ static void enqueueResponse(Peer* peer, unsigned int dataSize, unsigned char typ */ static bool isBogonAddress(const IPv4Address& address) { + return false; return (!address.u8[0]) || (address.u8[0] == 127) || (address.u8[0] == 10) diff --git a/src/private_settings.h b/src/private_settings.h index b8737a8d3..0fe7d040b 100644 --- a/src/private_settings.h +++ b/src/private_settings.h @@ -4,7 +4,7 @@ // Do NOT share the data of "Private Settings" section with anybody!!! -#define OPERATOR "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" +#define OPERATOR "MEFKYFCDXDUILCAJKOIKWQAPENJDUHSSYPBRWFOTLALILAYWQFDSITJELLHG" static unsigned char computorSeeds[][55 + 1] = { "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa", @@ -61,7 +61,7 @@ static const unsigned char oracleMachineIPs[][4] = { #endif static unsigned long long logReaderPasscodes[4] = { - 0, 0, 0, 0 // REMOVE THIS ENTRY AND REPLACE IT WITH YOUR OWN RANDOM NUMBERS IN [0..18446744073709551615] RANGE IF LOGGING IS ENABLED + 1, 2, 3, 4 // REMOVE THIS ENTRY AND REPLACE IT WITH YOUR OWN RANDOM NUMBERS IN [0..18446744073709551615] RANGE IF LOGGING IS ENABLED }; // Mode for auto save ticks: @@ -74,4 +74,4 @@ static unsigned long long logReaderPasscodes[4] = { // Perform state persisting when your node is misaligned will also make your node misaligned after resuming. // Thus, picking various TICK_STORAGE_AUTOSAVE_TICK_PERIOD numbers across AUX nodes is recommended. // some suggested prime numbers you can try: 971 977 983 991 997 -#define TICK_STORAGE_AUTOSAVE_TICK_PERIOD 1000 \ No newline at end of file +#define TICK_STORAGE_AUTOSAVE_TICK_PERIOD 1337 diff --git a/src/qubic.cpp b/src/qubic.cpp index 8e20e3597..14c9333a7 100644 --- a/src/qubic.cpp +++ b/src/qubic.cpp @@ -92,7 +92,7 @@ #define MAX_MESSAGE_PAYLOAD_SIZE MAX_TRANSACTION_SIZE #define MAX_UNIVERSE_SIZE 1073741824 #define MESSAGE_DISSEMINATION_THRESHOLD 1000000000 -#define PORT 21841 +#define PORT 31841 #define SYSTEM_DATA_SAVING_PERIOD 300000ULL #define TICK_TRANSACTIONS_PUBLICATION_OFFSET 2 // Must be only 2 #define MIN_MINING_SOLUTIONS_PUBLICATION_OFFSET 3 // Must be 3+ @@ -5538,8 +5538,9 @@ static void tickProcessor(void*) if (tickDataSuits) { const int dayIndex = ::dayIndex(etalonTick.year, etalonTick.month, etalonTick.day); - if ((dayIndex == 738570 + system.epoch * 7 && etalonTick.hour >= 12) - || dayIndex > 738570 + system.epoch * 7) + // if ((dayIndex == 738570 + system.epoch * 7 && etalonTick.hour >= 12) + // || dayIndex > 738570 + system.epoch * 7) + if (system.tick - system.initialTick >= TESTNET_EPOCH_DURATION) { // start seamless epoch transition epochTransitionState = 1; @@ -6508,20 +6509,23 @@ static void logInfo() } else { - const CHAR16 alphabet[26][2] = { L"A", L"B", L"C", L"D", L"E", L"F", L"G", L"H", L"I", L"J", L"K", L"L", L"M", L"N", L"O", L"P", L"Q", L"R", L"S", L"T", L"U", L"V", L"W", L"X", L"Y", L"Z" }; - for (unsigned int i = 0; i < numberOfOwnComputorIndices; i++) - { - appendText(message, alphabet[ownComputorIndices[i] / 26]); - appendText(message, alphabet[ownComputorIndices[i] % 26]); - if (i < (unsigned int)(numberOfOwnComputorIndices - 1)) - { - appendText(message, L"+"); - } - else - { - appendText(message, L"."); - } - } + appendText(message, L"[Owning "); + appendNumber(message, numberOfOwnComputorIndices, false); + appendText(message, L" indices]"); + // const CHAR16 alphabet[26][2] = { L"A", L"B", L"C", L"D", L"E", L"F", L"G", L"H", L"I", L"J", L"K", L"L", L"M", L"N", L"O", L"P", L"Q", L"R", L"S", L"T", L"U", L"V", L"W", L"X", L"Y", L"Z" }; + // for (unsigned int i = 0; i < numberOfOwnComputorIndices; i++) + // { + // appendText(message, alphabet[ownComputorIndices[i] / 26]); + // appendText(message, alphabet[ownComputorIndices[i] % 26]); + // if (i < (unsigned int)(numberOfOwnComputorIndices - 1)) + // { + // appendText(message, L"+"); + // } + // else + // { + // appendText(message, L"."); + // } + // } } logToConsole(message); diff --git a/test/test.vcxproj b/test/test.vcxproj index b88db9fcf..4b74f2e39 100644 --- a/test/test.vcxproj +++ b/test/test.vcxproj @@ -1,4 +1,4 @@ - + @@ -124,7 +124,6 @@ - diff --git a/test/test.vcxproj.filters b/test/test.vcxproj.filters index 589346059..6e49bac25 100644 --- a/test/test.vcxproj.filters +++ b/test/test.vcxproj.filters @@ -47,7 +47,6 @@ - diff --git a/test_arb.sh b/test_arb.sh new file mode 100755 index 000000000..80716f9cc --- /dev/null +++ b/test_arb.sh @@ -0,0 +1,588 @@ +#!/bin/bash +# +# test_arb.sh — qRWA Dev-Payout Test +# ================================== +# Ziel: +# - Prüfen: Wer QMINE innerhalb einer Epoch reduziert, bekommt NULL Payout. +# - Der Anteil des Reducers geht vollständig an die Dev-Adresse. +# +# Ablauf (vereinfacht): +# 1) Aktuelle Epoch: Dev-Balance Snapshot E0 +# 2) Nächste Epoch E1: Seeds kaufen QMINE + bewegen QMINE zwischen A/B + senden 20B Revenue an qRWA +# 3) Nächste Epoch E2: Dev-Balance erneut lesen und mit E0 vergleichen +# +# Nutzung: +# chmod +x core/test_arb.sh +# cd core && ./test_arb.sh +# + +set -uo pipefail + +SCRIPT_DIR="$(cd -- "$(dirname -- "${BASH_SOURCE[0]}")" >/dev/null 2>&1 && pwd)" + +NODE_IP="135.181.160.185" +NODE_PORT="31841" + +CLI="${SCRIPT_DIR}/../qubic-cli/build/qubic-cli" + +CONTRACT_INDEX=20 +QRWA_IDENTITY="UAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQEE" + +# Test Seeds +SEED_A="gtfgjhtoxcddbxrydatevcmildkmqeiezwgztpwseihqhqxmoamxfak" +SEED_B="ytcltfdvfjvskmarrjxloxkjrwtbjbepzjphowjfszldyjscrmztmor" + +# QMINE +QMINE_ISSUER="QMINEQQXYBEGBHNSUPOUYDIQKZPCBPQIIHUUZMCPLBPCCAIARVZBTYKGFCWM" +QMINE_NAME="QMINE" + +# Volumen +QMINE_BUDGET_A=${QMINE_BUDGET_A:-100000000000} # 100B buy budget +QMINE_BUDGET_B=${QMINE_BUDGET_B:-100000000000} # 100B buy budget +REVENUE_SEND=20000000000 # 20B QU -> qRWA (Pool B input) + +SCHEDULE_TICK=3 +TX_WAIT_SEC=12 + +RED='\033[0;31m' +GREEN='\033[0;32m' +YELLOW='\033[1;33m' +BLUE='\033[0;34m' +CYAN='\033[0;36m' +BOLD='\033[1m' +NC='\033[0m' + +PASS=0 +FAIL=0 +TOTAL=0 + +step() { echo -e " ${CYAN}▶ $1${NC}"; } +info() { echo -e " ${YELLOW}$1${NC}"; } +pass() { PASS=$((PASS+1)); TOTAL=$((TOTAL+1)); echo -e " ${GREEN}✓ PASS${NC} $1"; } +fail() { FAIL=$((FAIL+1)); TOTAL=$((TOTAL+1)); echo -e " ${RED}✗ FAIL${NC} $1 — $2"; } +header() { + echo "" + echo -e "${BLUE}━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━${NC}" + echo -e "${BOLD}${BLUE} $1${NC}" + echo -e "${BLUE}━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━${NC}" +} + +cli_call() { + "$CLI" -nodeip "$NODE_IP" -nodeport "$NODE_PORT" "$@" 2>&1 +} + +cli_call_seed() { + local seed="$1"; shift + seed=$(echo "$seed" | tr 'A-Z' 'a-z') + "$CLI" -nodeip "$NODE_IP" -nodeport "$NODE_PORT" -seed "$seed" -scheduletick "$SCHEDULE_TICK" "$@" 2>&1 +} + +validate_tick() { + local tick="$1" + [[ -n "$tick" && "$tick" =~ ^[0-9]+$ && "$tick" -gt 1000 ]] +} + +get_current_tick_safe() { + local out tick + out=$(cli_call -getcurrenttick) + tick=$(echo "$out" | grep -oE 'Tick:[[:space:]]*[0-9]+' | grep -oE '[0-9]+' | head -1) + if [[ -z "$tick" ]]; then + tick=$(echo "$out" | grep -ioE 'current tick[[:space:]:]*[0-9]+' | grep -oE '[0-9]+' | head -1) + fi + echo "${tick:-0}" +} + +wait_for_node_online() { + local tick=0 + while true; do + tick=$(get_current_tick_safe) + if validate_tick "$tick"; then + echo "$tick" + return 0 + fi + echo -e " ${YELLOW}No connection / ungültiger Tick — warte 5s und retry...${NC}" >&2 + sleep 5 + done +} + +extract_tx() { + local output="$1" + TX_HASH=$(echo "$output" | grep "TxHash:" | awk '{print $2}' | head -1) + TX_TICK=$(echo "$output" | grep -oE 'Tick:[[:space:]]*[0-9]+' | grep -oE '[0-9]+' | head -1) +} + +wait_and_check_tx() { + local tick="$1" tx_hash="$2" + local result attempt=0 + while true; do + attempt=$((attempt + 1)) + sleep "$TX_WAIT_SEC" + result=$(cli_call -checktxontick "$tick" "$tx_hash") + + if echo "$result" | grep -qi "No connection"; then + echo -e " [${attempt}] No connection bei -checktxontick — warte auf Node..." >&2 + wait_for_node_online >/dev/null + continue + fi + + if echo "$result" | grep -q "Please wait"; then + local cur_tick + cur_tick=$(echo "$result" | grep -oE 'current tick [0-9]+' | grep -oE '[0-9]+') + echo -e " [${attempt}] Tick noch nicht erreicht (aktuell: ${cur_tick:-?})" >&2 + continue + fi + + echo "$result" + return 0 + done +} + +send_tx_with_retry() { + local label="$1"; shift + local seed="$1"; shift + local output attempt=0 + + while true; do + attempt=$((attempt + 1)) + local online_tick + online_tick=$(wait_for_node_online) + echo -e " Node erreichbar bei Tick ${online_tick} — sende TX (Versuch ${attempt})..." + + output=$(cli_call_seed "$seed" "$@") + echo "$output" | head -5 | sed 's/^/ /' + extract_tx "$output" + + if [[ -n "${TX_HASH:-}" && -n "${TX_TICK:-}" ]] && validate_tick "$TX_TICK"; then + step "Warte auf Bestätigung (Tick $TX_TICK)..." + local check + check=$(wait_and_check_tx "$TX_TICK" "$TX_HASH") + echo "$check" | head -3 | sed 's/^/ /' + + if echo "$check" | grep -qi "fail\|error\|rejected"; then + fail "$label" "TX fehlgeschlagen" + return 1 + fi + pass "$label" + return 0 + fi + + if echo "$output" | grep -qi "No connection"; then + echo -e " ${YELLOW}No connection beim TX-Senden — retry...${NC}" + sleep 3 + continue + fi + + fail "$label" "TX konnte nicht gesendet werden" + return 1 + done +} + +get_identity_from_seed() { + local seed="$1" + local out id + seed=$(echo "$seed" | tr 'A-Z' 'a-z') + out=$(cli_call -seed "$seed" -showkeys) + id=$(echo "$out" | grep -E "Identity:" | awk '{print $2}' | head -1) + echo "${id:-}" +} + +get_balance_of() { + local id="$1" + local out bal + out=$(cli_call -getbalance "$id") + bal=$(echo "$out" | grep -E "Balance:" | awk '{print $2}' | head -1) + echo "${bal:-0}" +} + +count_asset_shares() { + local id="$1" name="$2" + local result + result=$(cli_call -enabletestcontracts -getasset "$id") + echo "$result" | awk -v asset="$name" ' + /Asset name:/ { found = ($3 == asset) } + found && /Number Of Shares:/ { print $4; found=0 } + ' | head -1 +} + +get_lowest_ask_price() { + local issuer="$1" name="$2" + local orders ask + orders=$(cli_call -enabletestcontracts -qxgetorder asset ask "$issuer" "$name" 0) + ask=$(echo "$orders" | awk 'NR>1 && /^[A-Z]/{print $2; exit}') + echo "${ask:-0}" +} + +get_epoch_tick() { + local sys ep tk + sys=$(cli_call -getsysteminfo) + ep=$(echo "$sys" | grep -i 'Epoch:' | awk '{print $2}' | head -1) + tk=$(echo "$sys" | grep -i 'Tick:' | awk '{print $2}' | head -1) + if [[ -z "$ep" || -z "$tk" ]]; then + local fb + fb=$(cli_call -getcurrenttick) + ep=$(echo "$fb" | grep -i 'Epoch:' | awk '{print $2}' | head -1) + tk=$(echo "$fb" | grep -i 'Tick:' | awk '{print $2}' | head -1) + fi + echo "${ep:-0} ${tk:-0}" +} + +wait_for_next_epoch() { + local cur_ep cur_tk new_ep new_tk wi=0 ticks_left=0 + read -r cur_ep cur_tk <<< "$(get_epoch_tick)" + info "Aktuelle Epoch: ${cur_ep}, Tick: ${cur_tk} — warte auf Epoch $((cur_ep + 1)) (kann mehrere Minuten dauern)" + while true; do + wi=$((wi + 1)) + sleep 15 + read -r new_ep new_tk <<< "$(get_epoch_tick)" + if [[ "$new_ep" =~ ^[0-9]+$ && "$new_ep" -gt "$cur_ep" ]]; then + echo "$cur_ep $new_ep" + return 0 + fi + + if [[ "$new_tk" =~ ^[0-9]+$ ]]; then + ticks_left=$((100 - (new_tk % 100))) + if [[ "$ticks_left" -eq 100 ]]; then + ticks_left=0 + fi + else + ticks_left=0 + fi + + if [[ "$((wi % 2))" -eq 0 || "$wi" -eq 1 ]]; then + echo -e " Epoch=${new_ep:-?}, Tick=${new_tk:-?}, bis Wechsel ~${ticks_left} Ticks" + fi + done +} + +# Wartet, bis N Ticks vergangen sind (relativ zum aktuellen Tick beim Aufruf). +# qpi.transfer()-Payouts vom Contract erscheinen NICHT als User-TX; Balance-Delta +# in engem Fenster (vor/nach Payout-Tick) ist die einzige Möglichkeit Einzelzahlungen +# zu verifizieren. +wait_n_ticks() { + local n="$1" + local start_tick cur_tick target_tick + start_tick=$(get_current_tick_safe) + target_tick=$((start_tick + n)) + info "Warte ${n} Ticks (ab ${start_tick} → bis ${target_tick})..." + while true; do + sleep 5 + cur_tick=$(get_current_tick_safe) + if validate_tick "$cur_tick" && [[ "$cur_tick" -ge "$target_tick" ]]; then + info "Ziel-Tick ${target_tick} erreicht (aktuell: ${cur_tick})" + return 0 + fi + done +} + +get_dev_address_from_govparams() { + local out ids + # GetGovParams = fn 1; output: QRWAGovParams = 5× id + 3× uint64 + # Fields: mAdminAddress, electricityAddress, maintenanceAddress, reinvestmentAddress, qmineDevAddress, ... + out=$(cli_call -enabletestcontracts -callcontractfunction "$CONTRACT_INDEX" 1 "" "{ {id, id, id, id, id, uint64, uint64, uint64} }") + ids=$(echo "$out" | grep -oE '[A-Z]{60}') + echo "$ids" | sed -n '5p' +} + +# GetDividendBalances = fn 5 +# Returns: revenuePoolA revenuePoolB qmineDividendPool qrwaDividendPool dedicatedRevenuePool dedicatedQRWADividendPool +get_dividend_balances() { + local out vals + out=$(cli_call -enabletestcontracts -callcontractfunction "$CONTRACT_INDEX" 5 "" \ + "{ {uint64, uint64, uint64, uint64, uint64, uint64} }") + vals=$(echo "$out" | grep -oE '\b[0-9]+\b') + local rpa rpb qm qrwa + rpa=$(echo "$vals" | sed -n '1p') + rpb=$(echo "$vals" | sed -n '2p') + qm=$(echo "$vals" | sed -n '3p') + qrwa=$(echo "$vals" | sed -n '4p') + echo "${rpa:-0} ${rpb:-0} ${qm:-0} ${qrwa:-0}" +} + +# GetTotalDistributed = fn 6 +# Returns: totalQmineDistributed totalQRWADistributed +get_total_distributed() { + local out vals + out=$(cli_call -enabletestcontracts -callcontractfunction "$CONTRACT_INDEX" 6 "" \ + "{ {uint64, uint64} }") + vals=$(echo "$out" | grep -oE '\b[0-9]+\b') + local qm_dist qrwa_dist + qm_dist=$(echo "$vals" | sed -n '1p') + qrwa_dist=$(echo "$vals" | sed -n '2p') + echo "${qm_dist:-0} ${qrwa_dist:-0}" +} + +# GetLatestPayouts = fn 11 +# Returns ring buffer: Array + uint8 nextIdx +# Each entry: id recipient, uint64 amount, uint32 tick, uint8 payoutType (0=QMINE,1=dev,2=qRWA,3=dedicatedqRWA) +# Format: { [64; {id, uint64, uint32, uint8, uint8, uint8, uint8}], uint8 } +get_latest_payouts_raw() { + cli_call -enabletestcontracts -callcontractfunction "$CONTRACT_INDEX" 11 "" \ + '{ [64; {id, uint64, uint32, uint8, uint8, uint8, uint8}], uint8 }' +} + +# Gibt alle Adressen zurück, die im Ring-Buffer vorkommen (dedupliziert, sortiert) +get_payees_from_ring() { + get_latest_payouts_raw | grep -oE '[A-Z]{60}' | sort -u +} + +# Prüft ob ADDRESS im Ring-Buffer der letzten Payouts vorkommt +address_paid_in_ring() { + local addr="$1" + get_latest_payouts_raw | grep -qF "$addr" + echo $? # 0 = found, 1 = not found +} + +header "test_arb.sh — Dev-Payout Test" + +if [[ ! -x "$CLI" ]]; then + echo -e "${RED}CLI nicht gefunden oder nicht executable:${NC} $CLI" + echo "Bitte zuerst qubic-cli bauen." + exit 1 +fi + +step "Identities laden..." +ID_A=$(get_identity_from_seed "$SEED_A") +ID_B=$(get_identity_from_seed "$SEED_B") +DEV_ID=$(get_dev_address_from_govparams) + +if [[ -z "$ID_A" || -z "$ID_B" || -z "$DEV_ID" ]]; then + echo -e "${RED}Konnte nicht alle IDs laden.${NC}" + echo "A=$ID_A" + echo "B=$ID_B" + echo "DEV=$DEV_ID" + exit 1 +fi + +info "Seed A: ${ID_A}" +info "Seed B: ${ID_B}" +info "Dev ID: ${DEV_ID}" + +header "Phase 1 — E0 Baseline: Dev-Balance + QMINE kaufen" +read -r EP0_START TK0_START <<< "$(get_epoch_tick)" +info "Aktuelle Epoch: ${EP0_START}, Tick: ${TK0_START}" +DEV_BAL_E0=$(get_balance_of "$DEV_ID") +info "Dev Balance @E0: ${DEV_BAL_E0}" + +step "Pool-Balances @E0 (GetDividendBalances + GetTotalDistributed)" +read -r RPA_E0 RPB_E0 QM_POOL_E0 QRWA_POOL_E0 <<< "$(get_dividend_balances)" +read -r QM_DIST_E0 QRWA_DIST_E0 <<< "$(get_total_distributed)" +info "E0 revenuePoolA=${RPA_E0} revenuePoolB=${RPB_E0}" +info "E0 qmineDividendPool=${QM_POOL_E0} qrwaDividendPool=${QRWA_POOL_E0}" +info "E0 totalQmineDistributed=${QM_DIST_E0} totalQRWADistributed=${QRWA_DIST_E0}" + +# QMINE JETZT in E0 kaufen — damit A und B im BEGIN_EPOCH von E1 +# als Holder mit beginBalance > 0 erfasst werden. +step "QMINE Käufe auf QX (in E0, vor dem nächsten Epoch-Wechsel)" +ASK=$(get_lowest_ask_price "$QMINE_ISSUER" "$QMINE_NAME") +if [[ "$ASK" -le 0 ]]; then + ASK=750000000000 + info "Kein Ask gefunden, Fallback Ask=${ASK}" +fi +BID=$((ASK + ASK / 20)) +AMOUNT_A=$((QMINE_BUDGET_A / BID)) +AMOUNT_B=$((QMINE_BUDGET_B / BID)) +if [[ "$AMOUNT_A" -lt 1 ]]; then AMOUNT_A=1; fi +if [[ "$AMOUNT_B" -lt 1 ]]; then AMOUNT_B=1; fi + +info "QMINE Ask=${ASK}, Bid=${BID}" +info "Kaufmengen: A=${AMOUNT_A}, B=${AMOUNT_B}" + +send_tx_with_retry "Seed A kauft QMINE" "$SEED_A" \ + -enabletestcontracts -qxorder add bid "$QMINE_ISSUER" "$QMINE_NAME" "$BID" "$AMOUNT_A" + +send_tx_with_retry "Seed B kauft QMINE" "$SEED_B" \ + -enabletestcontracts -qxorder add bid "$QMINE_ISSUER" "$QMINE_NAME" "$BID" "$AMOUNT_B" + +step "QMINE Bestände nach Kauf lesen (E0)" +A_QMINE_BEFORE=$(count_asset_shares "$ID_A" "$QMINE_NAME") +B_QMINE_BEFORE=$(count_asset_shares "$ID_B" "$QMINE_NAME") +A_QMINE_BEFORE=${A_QMINE_BEFORE:-0} +B_QMINE_BEFORE=${B_QMINE_BEFORE:-0} +info "QMINE in E0: A=${A_QMINE_BEFORE}, B=${B_QMINE_BEFORE}" + +step "QU-Balances lesen (E0, nach QMINE-Kauf)" +A_QU_BEFORE=$(get_balance_of "$ID_A") +B_QU_BEFORE=$(get_balance_of "$ID_B") +info "QU in E0: A=${A_QU_BEFORE}, B=${B_QU_BEFORE}" + +header "Phase 2 — Auf E1 warten: A transferiert ALLE Shares + Revenue senden" +# Jetzt auf E1 warten. BEGIN_EPOCH E1 erfasst A und B mit ihrer E0-QMINE-Balance. +read -r EP_BEFORE EP_E1 <<< "$(wait_for_next_epoch)" +info "Epoch gewechselt: ${EP_BEFORE} -> ${EP_E1}" + +# Nochmals QMINE-Bestand lesen (kann sich nach Epoch-Wechsel leicht ändern) +A_QMINE_BEFORE=$(count_asset_shares "$ID_A" "$QMINE_NAME") +A_QMINE_BEFORE=${A_QMINE_BEFORE:-0} +info "QMINE in E1 (nach BEGIN_EPOCH): A=${A_QMINE_BEFORE}" + +header "Phase 3 — In E1 ALLE Shares von A nach B + 20B Revenue senden" + +if [[ "$A_QMINE_BEFORE" -lt 1 ]]; then + fail "QMINE Bewegung" "Seed A hat keine QMINE Shares" + echo "Abbruch" + exit 1 +fi + +# Alle Shares von A zu B transferieren → A hat EndBalance=0 → Payout=0 → alles an Dev +info "Transferiere ALLE ${A_QMINE_BEFORE} QMINE von A -> B (A EndBalance=0 → Payout=0 → Dev)" +send_tx_with_retry "Seed A transferiert ALLE QMINE -> B" "$SEED_A" \ + -enabletestcontracts -qxtransferasset "$QMINE_NAME" "$QMINE_ISSUER" "$ID_B" "$A_QMINE_BEFORE" + +info "Sende ${REVENUE_SEND} QU an qRWA (Pool B input)" +send_tx_with_retry "Revenue Send 20B -> qRWA" "$SEED_B" \ + -sendtoaddress "$QRWA_IDENTITY" "$REVENUE_SEND" + +# ── E1-End-Snapshot ─────────────────────────────────────────────────────────── +# Payout findet in BEGIN_EPOCH der neuen Epoch statt — NICHT in END_TICK. +# Daher: Baseline am Ende von E1 nehmen, Vergleich nach dem Epoch-Wechsel. +step "E1-End-Snapshot (Baseline vor Epoch-Wechsel)" +DEV_BAL_E1_END=$(get_balance_of "$DEV_ID") +A_QU_E1_END=$(get_balance_of "$ID_A") +B_QU_E1_END=$(get_balance_of "$ID_B") +read -r QM_DIST_E1_END QRWA_DIST_E1_END <<< "$(get_total_distributed)" +info "E1-End — Dev: ${DEV_BAL_E1_END} A: ${A_QU_E1_END} B: ${B_QU_E1_END}" +info "E1-End totalQmineDistributed=${QM_DIST_E1_END} totalQRWADistributed=${QRWA_DIST_E1_END}" + +header "Phase 4 — E2 prüfen (BEGIN_EPOCH-Payout)" +read -r _ EP_E2 <<< "$(wait_for_next_epoch)" +info "Jetzt in E2: ${EP_E2}" + +# BEGIN_EPOCH hat bereits alles ausbezahlt — der erste Snapshot nach dem +# Epoch-Wechsel IST der "nach Payout"-Stand. Keine weiteren Ticks nötig. +step "E2-Start Snapshot (nach BEGIN_EPOCH — Payouts bereits durchgeführt)" +DEV_BAL_E2_START=$(get_balance_of "$DEV_ID") +A_QU_E2_START=$(get_balance_of "$ID_A") +B_QU_E2_START=$(get_balance_of "$ID_B") +info "E2-Start — Dev: ${DEV_BAL_E2_START} A: ${A_QU_E2_START} B: ${B_QU_E2_START}" + +# Delta = E2-Start minus E1-End → erfasst genau den BEGIN_EPOCH-Payout +DELTA_DEV_PAYOUT=$((DEV_BAL_E2_START - DEV_BAL_E1_END)) +DELTA_A_PAYOUT=$((A_QU_E2_START - A_QU_E1_END)) +DELTA_B_PAYOUT=$((B_QU_E2_START - B_QU_E1_END)) + +step "Pool-Balances @E2-Start (nach BEGIN_EPOCH Ausschüttung)" +read -r RPA_E2 RPB_E2 QM_POOL_E2 QRWA_POOL_E2 <<< "$(get_dividend_balances)" +read -r QM_DIST_E2 QRWA_DIST_E2 <<< "$(get_total_distributed)" +info "E2 revenuePoolA=${RPA_E2} revenuePoolB=${RPB_E2}" +info "E2 qmineDividendPool=${QM_POOL_E2} qrwaDividendPool=${QRWA_POOL_E2}" +info "E2 totalQmineDistributed=${QM_DIST_E2} totalQRWADistributed=${QRWA_DIST_E2}" + +# Ring-Buffer abfragen: GetLatestPayouts (fn 11) +# Jeder erfolgreiche qpi.transfer() schreibt einen Eintrag mit recipient, amount, tick, payoutType. +# So können wir exakt sehen wer bezahlt wurde — ohne Balance-Delta-Unsicherheit. +step "Ring-Buffer abfragen (GetLatestPayouts fn 11)" +RING_RAW=$(get_latest_payouts_raw) +RING_PAYEES=$(echo "$RING_RAW" | grep -oE '[A-Z]{60}' | sort -u) +info "Adressen im Ring-Buffer:" +echo "$RING_PAYEES" | sed 's/^/ /' +B_IN_RING=$(echo "$RING_RAW" | grep -cF "$ID_B" || true) +DEV_IN_RING=$(echo "$RING_RAW" | grep -cF "$DEV_ID" || true) +A_IN_RING=$(echo "$RING_RAW" | grep -cF "$ID_A" || true) +info "Ring-Treffer: B=${B_IN_RING} DEV=${DEV_IN_RING} A=${A_IN_RING}" + +# QMINE-Bestände in E2 +A_QMINE_AFTER_E2=$(count_asset_shares "$ID_A" "$QMINE_NAME") +B_QMINE_AFTER_E2=$(count_asset_shares "$ID_B" "$QMINE_NAME") +A_QMINE_AFTER_E2=${A_QMINE_AFTER_E2:-0} +B_QMINE_AFTER_E2=${B_QMINE_AFTER_E2:-0} +info "QMINE in E2: A=${A_QMINE_AFTER_E2}, B=${B_QMINE_AFTER_E2}" + +# Breiter Dev-Delta E0→E2 (als Sanity-Check) +DEV_BAL_E2=${DEV_BAL_E2_START} +DELTA_E0_E2=$((DEV_BAL_E2 - DEV_BAL_E0)) + +header "Ergebnis" +echo "Dev balance E0 (breit): ${DEV_BAL_E0}" +echo "Dev balance E2 (breit): ${DEV_BAL_E2}" +echo "Delta Dev E0->E2 (breit): ${DELTA_E0_E2} (Sanity: diverse Faktoren enthalten)" +echo "" +echo "=== Payout-Deltas (E1-End → E2-Start, BEGIN_EPOCH-Fenster) ===" +echo "Delta Dev (E1-End→E2-Start): ${DELTA_DEV_PAYOUT} (erwartet: > 0 — A's Anteil)" +echo "Delta A QU (E1-End→E2-Start): ${DELTA_A_PAYOUT} (erwartet: ≤ 0 — kein Payout, da EndBalance=0)" +echo "Delta B QU (E1-End→E2-Start): ${DELTA_B_PAYOUT} (erwartet: > 0 — normaler QMINE-Payout)" +echo "" +echo "qmineDividendPool @E2-Start (nach BEGIN_EPOCH): ${QM_POOL_E2} (erwartet: 0 = vollständig ausgeschüttet)" +echo "totalQmineDistributed: E1-End ${QM_DIST_E1_END} → E2-Start ${QM_DIST_E2} (Delta: $((QM_DIST_E2 - QM_DIST_E1_END)))" +echo "" +echo "--- Pool B (qRWA-Holder) ---" +echo "revenuePoolB E0→E2: ${RPB_E0} → ${RPB_E2}" +echo "qrwaDividendPool E0→E2: ${QRWA_POOL_E0} → ${QRWA_POOL_E2}" +echo "totalQRWADistributed E1-End→E2-Start: ${QRWA_DIST_E1_END} → ${QRWA_DIST_E2}" +DELTA_QRWA_DIST=$((QRWA_DIST_E2 - QRWA_DIST_E1_END)) +echo "Delta totalQRWADistributed: ${DELTA_QRWA_DIST} (erwartet: > 0 wenn qRWA-Holder vorhanden)" + +# Dev bekommt A's Anteil (BEGIN_EPOCH-Delta) +if [[ "$DELTA_DEV_PAYOUT" -gt 0 ]]; then + pass "Dev income sichtbar (E1→E2: +${DELTA_DEV_PAYOUT})" +else + fail "Dev income" "Keine Balance-Erhöhung (delta=${DELTA_DEV_PAYOUT}) — kein Revenue oder kein Holder" +fi + +# A hat verkauft → EndBalance=0 → kein Payout +if [[ "$DELTA_A_PAYOUT" -le 0 ]]; then + pass "Seed A kein Payout (EndBalance=0, delta=${DELTA_A_PAYOUT})" +else + fail "Seed A Payout" "A erhielt trotz Null-EndBalance einen Payout: ${DELTA_A_PAYOUT}" +fi + +# B hat gehalten → normaler Payout +if [[ "$DELTA_B_PAYOUT" -gt 0 ]]; then + pass "Seed B QMINE-Payout korrekt (E1→E2: +${DELTA_B_PAYOUT})" +else + fail "Seed B Payout" "B hat keinen Payout erhalten (delta=${DELTA_B_PAYOUT})" +fi + +# qmineDividendPool nach BEGIN_EPOCH sollte 0 sein (vollständig ausgeschüttet) +# UND totalQmineDistributed muss gestiegen sein +QM_DIST_DELTA=$((QM_DIST_E2 - QM_DIST_E1_END)) +if [[ "$QM_DIST_DELTA" -gt 0 ]]; then + pass "totalQmineDistributed gestiegen (+${QM_DIST_DELTA}) — BEGIN_EPOCH hat ausgeschüttet" +else + fail "Pool-Drain" "totalQmineDistributed unverändert (E1-End=${QM_DIST_E1_END}, E2-Start=${QM_DIST_E2})" +fi + +if [[ "$A_QMINE_AFTER_E2" -lt "$A_QMINE_BEFORE" ]]; then + pass "Seed A Shares wurden reduziert" +else + fail "Share Reduktion" "Seed A wurde nicht reduziert" +fi + +# Pool B: Revenue wurde empfangen (revenuePoolB oder qrwaDividendPool > 0 in E2, oder bereits verteilt) +QRWA_POOL_E2_INT=$(( QRWA_POOL_E2 + 0 )) +RPB_E2_INT=$(( RPB_E2 + 0 )) +if [[ "$((RPB_E2_INT + QRWA_POOL_E2_INT))" -lt "$REVENUE_SEND" ]]; then + pass "Pool B Revenue wurde verarbeitet (Pools < REVENUE_SEND)" +else + info "Pool B Pools E2: revenuePoolB=${RPB_E2_INT} + qrwaDividendPool=${QRWA_POOL_E2_INT} (Ausschüttung ggf. noch ausstehend)" +fi + +# Ring-Buffer Assertions (GetLatestPayouts fn 11) +# Exakter Nachweis wer in diesem Payout-Fenster bezahlt wurde +echo "" +echo "=== Ring-Buffer Nachweis (GetLatestPayouts) ===" +echo "B_IN_RING=${B_IN_RING} DEV_IN_RING=${DEV_IN_RING} A_IN_RING=${A_IN_RING}" + +if [[ "${DEV_IN_RING:-0}" -gt 0 ]]; then + pass "DEV-Adresse im Payout-Ring (hat A's Reducer-Anteil erhalten)" +else + fail "DEV Ring" "Dev-Adresse fehlt im Ring-Buffer — Payout nicht verbucht" +fi + +if [[ "${B_IN_RING:-0}" -gt 0 ]]; then + pass "Seed B im Payout-Ring (hat normalen QMINE-Payout erhalten)" +else + fail "B Ring" "Seed B fehlt im Ring-Buffer — kein regulärer Payout verbucht" +fi + +if [[ "${A_IN_RING:-0}" -eq 0 ]]; then + pass "Seed A nicht im Payout-Ring (EndBalance=0, kein Payout)" +else + fail "A Ring" "Seed A erscheint im Ring-Buffer obwohl EndBalance=0 war (${A_IN_RING}× gefunden)" +fi + +echo "" +echo -e "${BOLD}Summary:${NC} PASS=${PASS}, FAIL=${FAIL}, TOTAL=${TOTAL}" +if [[ "$FAIL" -gt 0 ]]; then + exit 1 +fi +exit 0 diff --git a/test_assets.sh b/test_assets.sh new file mode 100755 index 000000000..502bdcb0f --- /dev/null +++ b/test_assets.sh @@ -0,0 +1,858 @@ +#!/bin/bash +# +# test_assets.sh — SC Share Deposit + QMINE Revenue Test (3 Epochen) +# =================================================================== +# Testet den vollen Asset-Revenue-Flow über 3 Epochen: +# +# Epoche 1: QX SC-Shares kaufen, an qRWA depositen +# + je 1 qRWA-Share pro Seed kaufen (= qRWA Holder) +# Epoche 2: Massiv QMINE-Tokens kaufen auf beiden Seeds +# Epoche 3: Revenue prüfen — Pool B Distributions checken +# +# Nutzung: +# chmod +x test_assets.sh +# ./test_assets.sh # Voller Flow (3 Epochen) +# ./test_assets.sh --epoch1 # Nur Epoche 1 (Shares kaufen + Deposit) +# ./test_assets.sh --epoch2 # Nur Epoche 2 (QMINE kaufen) +# ./test_assets.sh --epoch3 # Nur Epoche 3 (Revenue Check) +# + +set -uo pipefail + +############################################### +# KONFIGURATION +############################################### + +NODE_IP="135.181.160.185" +NODE_PORT="31841" + +CLI="../qubic-cli/build/qubic-cli" + +# Test-Seeds (je ~100B QU) +SEED_A="orxlpszaoguhglnkclcqnkvfzhqzzjnuisfvkwwuztkhqpwauexemdy" +SEED_B="iaobrqjfipbwancelebhkjhksghalrbovgfnrrejpvpblmchsliscqw" +ID_A="RDKCNDCZSTZGTBZCQJKLJBQDTTLAEMXFNUDRJDFZRCXRCKDSQJVGSGGDYZJH" +ID_B="MIGFHZMGCTBGRCSXCNWADTVQXHWBKJIQUPQRDAPEFCNOGSVDNVLUFNBBHYUI" + +# Admin (SEED1 aus test_qrwa.sh — muss aktuell Admin in qRWA sein) +ADMIN_SEED="gtfgjhtoxcddbxrydatevcmildkmqeiezwgztpwseihqhqxmoamxfak" +ADMIN_ID="STTIMWJNWXARPBPBHBARPMCWVTECDHLTIDFBXRDWDBUAWZZWEPJEJYZARAYC" + +# qRWA Contract +CONTRACT_INDEX=20 +QRWA_IDENTITY="UAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQEE" + +# SC Share Parameter +NULL_ISSUER="AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFXIB" +ASSET_NAME="QX" +# assetNameFromString("QX") = memcpy("QX", &uint64) → Q=0x51=81, X=0x58=88 → 81 + 88*256 = 22609 +ASSET_NAME_UINT64=22609 + +# qRWA Share Parameter (auf QX kaufbar) +QRWA_ASSET_NAME="QRWA" +# assetNameFromString("QRWA") = Q(81)+R(82)*256+W(87)*65536+A(65)*16777216 = 1096241745 +QRWA_ASSET_NAME_UINT64=1096241745 +QRWA_BID_PRICE=800000000 # 800M QU (~0.8B, über niedrigstem Ask ~750M) +QRWA_SHARES_PER_BUY=1 # je 1 qRWA-Share pro Seed + +# QMINE Token Parameter +QMINE_ISSUER="QMINEQQXYBEGBHNSUPOUYDIQKZPCBPQIIHUUZMCPLBPCCAIARVZBTYKGFCWM" +QMINE_NAME="QMINE" +QMINE_BID_PRICE=0 # 0 = dynamisch aus Ask-Orders +QMINE_BUDGET=80000000000 # 80B QU pro Seed für QMINE +QMINE_BUY_AMOUNT=0 # wird aus Budget/Preis berechnet + +# QX SC Share Kauf-Parameter +BID_PRICE=0 # 0 = dynamisch aus Ask-Orders ermitteln +SHARES_PER_BUY=1 + +# Timing +SCHEDULE_TICK=3 +TX_WAIT_SEC=12 +EPOCH_TICKS=100 + +############################################### +# FARBEN & ZAEHLER +############################################### +RED='\033[0;31m' +GREEN='\033[0;32m' +YELLOW='\033[1;33m' +BLUE='\033[0;34m' +CYAN='\033[0;36m' +BOLD='\033[1m' +NC='\033[0m' + +PASS=0 +FAIL=0 +SKIP=0 +TOTAL=0 +declare -a RESULTS=() + +############################################### +# HILFSFUNKTIONEN +############################################### + +header() { + echo "" + echo -e "${BLUE}━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━${NC}" + echo -e "${BOLD}${BLUE} $1${NC}" + echo -e "${BLUE}━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━${NC}" +} + +step() { + echo -e " ${CYAN}▶ $1${NC}" +} + +info() { + echo -e " ${YELLOW}$1${NC}" +} + +record_pass() { + PASS=$((PASS+1)) + TOTAL=$((TOTAL+1)) + RESULTS+=("${GREEN}PASS${NC} | $1") + echo -e " ${GREEN}✓ PASS${NC} $1" +} + +record_fail() { + FAIL=$((FAIL+1)) + TOTAL=$((TOTAL+1)) + RESULTS+=("${RED}FAIL${NC} | $1 — $2") + echo -e " ${RED}✗ FAIL${NC} $1 — $2" +} + +record_skip() { + SKIP=$((SKIP+1)) + TOTAL=$((TOTAL+1)) + RESULTS+=("${YELLOW}SKIP${NC} | $1 — $2") + echo -e " ${YELLOW}⊘ SKIP${NC} $1 — $2" +} + +# CLI aufrufen (ohne Seed) +cli_call() { + "$CLI" -nodeip "$NODE_IP" -nodeport "$NODE_PORT" "$@" 2>&1 +} + +# CLI mit Seed aufrufen (TX) +cli_call_seed() { + local seed="$1"; shift + "$CLI" -nodeip "$NODE_IP" -nodeport "$NODE_PORT" -seed "$seed" -scheduletick "$SCHEDULE_TICK" "$@" 2>&1 +} + +# Contract Function aufrufen (read-only, mit Retry) +call_fn() { + local fn_id="$1" input="$2" output="$3" + local result + for _retry in 1 2 3; do + result=$(cli_call -enabletestcontracts -callcontractfunction "$CONTRACT_INDEX" "$fn_id" "$input" "$output") + if echo "$result" | grep -q "Contract Function Output"; then + echo "$result" + return 0 + fi + sleep 2 + done + echo "$result" +} + +# TX Hash und Tick aus CLI-Output extrahieren +extract_tx() { + local output="$1" + TX_HASH=$(echo "$output" | grep "TxHash:" | awk '{print $2}' | head -1) + TX_TICK=$(echo "$output" | grep -oE 'Tick:[[:space:]]*[0-9]+' | grep -oE '[0-9]+' | head -1) +} + +# Prüfe ob ein Tick plausibel ist (nicht in der fernen Vergangenheit) +validate_tick() { + local tick="$1" + if [[ -z "$tick" || ! "$tick" =~ ^[0-9]+$ || "$tick" -lt 1000 ]]; then + return 1 # Tick ungültig + fi + return 0 +} + +# Niedrigsten Ask-Preis für ein Asset auslesen → setzt LOWEST_ASK +# get_lowest_ask_price +get_lowest_ask_price() { + local issuer="$1" name="$2" + local orders + orders=$(cli_call -enabletestcontracts -qxgetorder asset ask "$issuer" "$name" 0 2>&1) + # Erste Datenzeile (nach Header): Spalte 2 = Preis + LOWEST_ASK=$(echo "$orders" | awk 'NR>1 && /^[A-Z]/{print $2; exit}') + LOWEST_ASK=${LOWEST_ASK:-0} +} + +# Aktuellen Tick robust vom Node holen (nur numerisch) +get_current_tick_safe() { + local out tick + out=$(cli_call -getcurrenttick 2>&1) + tick=$(echo "$out" | grep -oE 'Tick:[[:space:]]*[0-9]+' | grep -oE '[0-9]+' | head -1) + if [[ -z "$tick" ]]; then + tick=$(echo "$out" | grep -ioE 'current tick[[:space:]:]*[0-9]+' | grep -oE '[0-9]+' | head -1) + fi + echo "${tick:-0}" +} + +# Blockierend warten bis der Node wieder auf -getcurrenttick antwortet +wait_for_node_online() { + local tick=0 + while true; do + tick=$(get_current_tick_safe) + if validate_tick "$tick"; then + echo "$tick" + return 0 + fi + echo -e " ${YELLOW}No connection / ungültiger Tick — warte 5s und prüfe erneut mit -getcurrenttick...${NC}" >&2 + sleep 5 + done +} + +# TX senden mit automatischem Retry bei ungültigem Tick +# send_tx_with_retry