Edited Some Content

This commit is contained in:
2025-10-25 12:52:03 -05:00
parent be126ca157
commit e5a93affa2
11 changed files with 130 additions and 150 deletions

View File

@@ -2,7 +2,7 @@
#macos #macos
ccd ~/Downloads/VSCode/Terminal cd ~/Downloads/VSCode/Terminal
rm -rf macbuild rm -rf macbuild
mkdir macbuild mkdir macbuild
cd macbuild cd macbuild

View File

@@ -8,14 +8,14 @@
using namespace ftxui; using namespace ftxui;
// New reusable styles (orange/red theme) // Hacker-style reusable styles
const auto theme_text_style = color(Color::OrangeRed1) | bold | dim; const auto hacker_text_style = color(Color::Green) | bold | dim;
const auto theme_border_style = border | color(Color::Red); const auto hacker_border_style = border | color(Color::Green);
const auto theme_link_style = color(Color::RedLight) | underlined; const auto hacker_link_style = color(Color::LightGreen) | underlined;
const auto theme_button_style = color(Color::Red) | bold; const auto hacker_button_style = color(Color::Green) | bold;
const auto theme_button_active_style = color(Color::Yellow1) | bold; const auto hacker_button_active_style = color(Color::LightGreen) | bold;
// ------------------x // ------------------
// Pages // Pages
// ------------------ // ------------------
@@ -24,40 +24,29 @@ Component MakeAboutPage() {
return vbox({ return vbox({
// Header section // Header section
vbox({ vbox({
text("Keshav Anand") | color(Color::Blue) | bold | center, text("Keshav Anand") | color(Color::LightGreen) | bold | center,
text("Subtitle") | theme_text_style | center, text("ML Researcher, FTC Programmer, & CS/Maths Enthusiast") | hacker_text_style | center,
}) | theme_border_style, }) | hacker_border_style,
separator(), separator(),
// Tags section
vbox({
text("insert_content") | theme_text_style | center,
}) | theme_border_style,
separator(),
// Focus areas
vbox({
text("Summ1") | color(Color::LightSkyBlue1) | bold,
}) | theme_border_style,
separator(),
// Current status // Current status
vbox({ vbox({
text("Summ2") | color(Color::LightSkyBlue1) | bold, text("Current Status:") | color(Color::LightGreen) | bold,
}) | theme_border_style, text("Junior at Plano East (1/1264)") | hacker_text_style,
text("Lead SW for FTC 23344 Technical Turbulence") | hacker_text_style,
text("Vice President, Science Fair") | hacker_text_style,
text("President, Cricket Club") | hacker_text_style,
}) | hacker_border_style,
separator(), separator(),
// Location and contact // Location and contact
vbox({ vbox({
text("Location") | theme_text_style | center, text("DFW Metroplex, Texas") | hacker_text_style | center,
text("Email") | theme_text_style | center, text("keshavanandofficial.gmail.com") | hacker_link_style | center,
text("Phone") | theme_link_style | center, }) | hacker_border_style,
}) | theme_border_style,
}) | flex; }) | flex;
}); });
@@ -65,21 +54,26 @@ Component MakeAboutPage() {
Component MakeProjectsPage() { Component MakeProjectsPage() {
const std::vector<Project> projects = { const std::vector<Project> projects = {
{"Insert Gibbersish"}, {"🗃️ Matrix FS — L2 distributed storage over IPFS", "Rust + Tauri + Svelte, AES-256-CBC/ChaCha20-Poly1305 encryption"},
{"🎓 Bon Voyage — AI MOOC content generator", "Java + Stanford CoreNLP, MLH Hackathon winner"},
{"🏥 EHR System — Secure health records platform", "Java client-server, TCP/IP sockets, Swing GUI, SMB integration"},
{"🧮 Rule-based Tensor Mutations for LLMs", "Novel LLaMA 3B enhancement, published on TechRxiv"},
{"🏠 Home Infrastructure — 50-user self-hosted platform", "40+ Docker containers, WireGuard mesh, 150TB ZFS NAS"},
{"🤖 SLAM Guide for Autonomous Robotics", "Probabilistic mapping algorithms, F1Tenth platform experience"},
{"⚔️ CyberPatriot Automation Suite", "Rust/PowerShell scripts, 30+ points per round, licensed to other teams"}
}; };
Component container = Container::Vertical({}); Component container = Container::Vertical({});
for (const Project& project : projects) { for (const Project& project : projects) {
Component card = Renderer([project]() -> Element { Component card = Renderer([project]() -> Element {
Element title = text(project.title) | theme_text_style | bold; Element title = text(project.title) | hacker_text_style | bold;
Element desc = text(project.link) | color(Color::GreenYellow); Element desc = text(project.link) | color(Color::GreenYellow);
return vbox({ return vbox({
title, title,
desc desc
}) | theme_border_style; }) | hacker_border_style;
}); });
container->Add(card); container->Add(card);
@@ -95,26 +89,33 @@ Component MakeEducationPage() {
return vbox({ return vbox({
// School section // School section
vbox({ vbox({
text("Education") | color(Color::LightGreen) | bold, text("🏫 Plano East Senior High School (20222026)") | color(Color::LightGreen) | bold,
text("STEM & Multi-disciplinary Endorsement") | hacker_text_style,
}) | theme_border_style, text("Computer Science & Mathematics concentrations") | hacker_text_style | dim,
}) | hacker_border_style,
separator(), separator(),
// Coursework section // Coursework section
vbox({ vbox({
text("TODO: ADD AP scores, nonsense, etc.") | color(Color::LightGreen) | bold, text("📚 Relevant Coursework:") | color(Color::LightGreen) | bold,
text("• Data Structures & Algorithms") | hacker_text_style,
}) | theme_border_style, text("• Object-Oriented Programming") | hacker_text_style,
text("• Calculus & Differential Equations") | hacker_text_style,
text("• Probability & Statistics") | hacker_text_style,
text("• Newtonian Physics") | hacker_text_style,
}) | hacker_border_style,
separator(), separator(),
// Research section // Research section
vbox({ vbox({
text("Research:") | color(Color::Blue) | bold, text("🔬 Research Experience:") | color(Color::LightGreen) | bold,
text("GaitGuardian, LASER, TEG, etc.") | theme_text_style, text("Research Assistant to Dr. Madan M. T. Ayyalasomayajula (2022Present)") | hacker_text_style,
text("• Literature review and concept summarization") | hacker_text_style | dim,
}) | theme_border_style, text("• Technical framework evaluation and benchmarking") | hacker_text_style | dim,
text("• Research direction discussions and workflow analysis") | hacker_text_style | dim,
}) | hacker_border_style,
}) | flex; }) | flex;
}); });
@@ -127,9 +128,16 @@ Component MakeWorkPage() {
}; };
const std::vector<WorkEntry> jobs = { const std::vector<WorkEntry> jobs = {
{"exp", {"👑 President, Cybersecurity Club at PESH (20232026)",
"desc"}, "Ethical hacking workshops, CTF prep, digital forensics mentoring"},
{"💻 Officer, Computer Science Club at PESH (20232026)",
"Data structures instruction, Java sessions, Git workflows"},
{"🔍 Trace Labs OSINT Search Party (20232024)",
"Missing person investigations, OSINT pivoting, geolocation analysis"},
{"🇺🇦 IT Army of Ukraine (Dec 2023Feb 2024)",
"Offensive squad leader, DDoS campaigns, persistent takedowns"},
{"🎯 Active Red Team Practitioner",
"Hack The Box (Rank 564), TryHackMe KoTH Top 5, 15+ HTB machines"}
}; };
Component container = Container::Vertical({}); Component container = Container::Vertical({});
@@ -138,8 +146,8 @@ Component MakeWorkPage() {
Component card = Renderer([job]() -> Element { Component card = Renderer([job]() -> Element {
return vbox({ return vbox({
text(job.title) | color(Color::LightGreen) | bold, text(job.title) | color(Color::LightGreen) | bold,
text(job.description) | theme_text_style | dim, text(job.description) | hacker_text_style | dim,
}) | theme_border_style; }) | hacker_border_style;
}); });
container->Add(card); container->Add(card);
} }
@@ -151,7 +159,18 @@ Component MakeWorkPage() {
Component MakeAwardsPage() { Component MakeAwardsPage() {
const std::vector<std::string> awards = { const std::vector<std::string> awards = {
"Award 1", "Description 1", "🥈 Lockheed Martin Cyber Quest — 2nd Place (2025)",
"DFW metroplex, reverse engineering & low-level security",
"🥇 CyberPatriot — State Level Gold Tier (2025)",
"Offensive security analysis in blue-team environment",
"🏆 Battle of the Brains — 5th Place Spring 2024, 10th Place Spring 2025",
"Regional algorithms competitions at UTD",
"🔓 NSA Codebreaker Challenge (Nov 2024)",
"5 advanced tasks: protocol exploitation, reverse engineering",
"👑 TryHackMe King of the Hill — Top 5 (2024)",
"2 consecutive days, live red team capabilities",
"💀 Hack The Box — Peak Rank 564",
"15+ Medium machines, 90% progress toward 'Hacker' rank"
}; };
Component container = Container::Vertical({}); Component container = Container::Vertical({});
@@ -164,8 +183,8 @@ Component MakeAwardsPage() {
Component card = Renderer([title, desc]() -> Element { Component card = Renderer([title, desc]() -> Element {
return vbox({ return vbox({
text(title) | color(Color::LightGreen) | bold, text(title) | color(Color::LightGreen) | bold,
text(desc) | theme_text_style | dim, text(desc) | hacker_text_style | dim,
}) | theme_border_style; }) | hacker_border_style;
}); });
container->Add(card); container->Add(card);
@@ -178,19 +197,39 @@ Component MakeAwardsPage() {
Component MakeSkillsPage() { Component MakeSkillsPage() {
const std::string skills_content = const std::string skills_content =
"Skills:\n"; "🦀 Languages: Rust (5/5), Async Rust, Python, Java, C/C++, TypeScript, Solidity\n\n"
"🌐 Networking: WireGuard, Tailscale, Tor, I2P, DNS, DHCP, TLS, gRPC, QUIC\n\n"
"⚔️ Red Team Arsenal:\n"
" • Recon: amass, subfinder, shodan, nuclei, ffuf\n"
" • Web: sqlmap, Burp Suite Pro, OWASP ZAP, nikto\n"
" • Post-Exploit: Empire, Covenant, Metasploit, Cobalt Strike\n"
" • AD: BloodHound, Rubeus, mimikatz, impacket\n"
" • PrivEsc: linPEAS, winPEAS, JuicyPotato\n\n"
"🔐 Crypto: ChaCha20Poly1305, Ed25519, Kyber1024, Dilithium5, TLS 1.3\n\n"
"🐧 Systems: Arch Linux, kernel patching, BPF/eBPF, QEMU/KVM, systemd\n\n"
"☁️ Cloud: AWS (EC2, S3, Lambda), Terraform, Docker, Kubernetes";
return Renderer([skills_content]() -> Element { return Renderer([skills_content]() -> Element {
return paragraph(skills_content) | theme_text_style | flex; return paragraph(skills_content) | hacker_text_style | flex;
}); });
} }
Component MakeContactPage() { Component MakeContactPage() {
const std::string contact_info = const std::string contact_info =
"Contact Me:\n"; "📫 Email: krishna@ayyalasomayajula.net\n"
"🌐 Website: https://krishna.ayyalasomayajula.net\n"
"📞 Phone: (214) 293-5743\n"
"📍 Based in DFW Metroplex, Texas\n"
"💳 US Green Card Holder\n"
"📄 Resume: https://git.cyber.ayyalasomayajula.net/marsultor/resume-cv/raw/branch/master/resume.pdf\n\n"
"🔗 Connect with me for:\n"
" • Cybersecurity research collaboration\n"
" • Red team consulting\n"
" • Distributed systems projects\n"
" • AI/ML security research";
return Renderer([contact_info]() -> Element { return Renderer([contact_info]() -> Element {
return paragraph(contact_info) | theme_text_style | flex; return paragraph(contact_info) | hacker_text_style | flex;
}); });
} }
@@ -214,13 +253,13 @@ PortfolioApp::PortfolioApp() {
pages_.push_back(skills_page_); pages_.push_back(skills_page_);
pages_.push_back(contact_page_); pages_.push_back(contact_page_);
// Create navigation sidebar with orange/red styling // Create navigation sidebar with green styling
std::vector<std::string> labels = {"About", "Projects", "Education", "Work", "Awards", "Skills", "Contact"}; std::vector<std::string> labels = {"About", "Projects", "Education", "Work", "Awards", "Skills", "Contact"};
std::vector<Component> buttons; std::vector<Component> buttons;
for (int i = 0; i < (int)labels.size(); ++i) { for (int i = 0; i < (int)labels.size(); ++i) {
Component button = Button(labels[i], [&, i] { SwitchPage(i); }) Component button = Button(labels[i], [&, i] { SwitchPage(i); })
| (i == current_page_ ? theme_button_active_style : theme_button_style); | (i == current_page_ ? hacker_button_active_style : hacker_button_style);
buttons.push_back(button); buttons.push_back(button);
} }
@@ -255,9 +294,9 @@ void PortfolioApp::SwitchPage(int index) {
// Render method implementation // Render method implementation
Element PortfolioApp::Render() { Element PortfolioApp::Render() {
return hbox({ return hbox({
navigation_->Render() | theme_border_style, navigation_->Render() | hacker_border_style,
separator(), separator(),
pages_[current_page_]->Render() | theme_border_style | flex pages_[current_page_]->Render() | hacker_border_style | flex
}); });
} }

59
egg.py
View File

@@ -1,59 +0,0 @@
import cv2
import numpy as np
import math
# === Parameters ===
input_path = "input_image.png" # replace with your image filename
output_path = "radial_output.png"
canvas_size = 1000 # output size (square)
num_sections = 8 # 8 radial triangles (45° each)
# === Load and prepare image ===
img = cv2.imread(input_path, cv2.IMREAD_UNCHANGED)
img = cv2.resize(img, (canvas_size, canvas_size))
# Convert to grayscale if needed
if img.ndim == 3:
img_gray = cv2.cvtColor(img, cv2.COLOR_BGR2GRAY)
else:
img_gray = img.copy()
# === Create mask for one triangular wedge ===
center = (canvas_size // 2, canvas_size // 2)
radius = canvas_size // 2
angle_step = 360 / num_sections
angle1 = -angle_step / 2
angle2 = angle_step / 2
# Create polygon points for wedge
pts = np.array([
center,
(int(center[0] + radius * math.cos(math.radians(angle1))),
int(center[1] + radius * math.sin(math.radians(angle1)))),
(int(center[0] + radius * math.cos(math.radians(angle2))),
int(center[1] + radius * math.sin(math.radians(angle2))))
], np.int32)
mask = np.zeros_like(img_gray)
cv2.fillConvexPoly(mask, pts, 255)
# === Extract the wedge from input image ===
wedge = cv2.bitwise_and(img_gray, mask)
# === Prepare output canvas ===
output = np.zeros_like(img_gray)
# === Paste rotated copies of the wedge into all sections ===
for i in range(num_sections):
angle = i * angle_step
rot_mat = cv2.getRotationMatrix2D(center, angle, 1.0)
rotated = cv2.warpAffine(wedge, rot_mat, (canvas_size, canvas_size))
output = cv2.bitwise_or(output, rotated)
# === Optional: enhance lines for visibility ===
output = cv2.threshold(output, 10, 255, cv2.THRESH_BINARY)[1]
# === Save result ===
cv2.imwrite(output_path, output)
print(f"✅ Radial design saved as {output_path}")

View File

@@ -1207,8 +1207,8 @@ events:
checks: checks:
- "Detecting CXX compiler ABI info" - "Detecting CXX compiler ABI info"
directories: directories:
source: "/Users/keshavanand/Downloads/VSCode/Terminal/macbuild/CMakeFiles/CMakeScratch/TryCompile-l9UfX9" source: "/Users/keshavanand/Downloads/VSCode/Terminal/macbuild/CMakeFiles/CMakeScratch/TryCompile-Zhtmim"
binary: "/Users/keshavanand/Downloads/VSCode/Terminal/macbuild/CMakeFiles/CMakeScratch/TryCompile-l9UfX9" binary: "/Users/keshavanand/Downloads/VSCode/Terminal/macbuild/CMakeFiles/CMakeScratch/TryCompile-Zhtmim"
cmakeVariables: cmakeVariables:
CMAKE_CXX_FLAGS: "" CMAKE_CXX_FLAGS: ""
CMAKE_CXX_FLAGS_DEBUG: "-g" CMAKE_CXX_FLAGS_DEBUG: "-g"
@@ -1221,12 +1221,12 @@ events:
variable: "CMAKE_CXX_ABI_COMPILED" variable: "CMAKE_CXX_ABI_COMPILED"
cached: true cached: true
stdout: | stdout: |
Change Dir: '/Users/keshavanand/Downloads/VSCode/Terminal/macbuild/CMakeFiles/CMakeScratch/TryCompile-l9UfX9' Change Dir: '/Users/keshavanand/Downloads/VSCode/Terminal/macbuild/CMakeFiles/CMakeScratch/TryCompile-Zhtmim'
Run Build Command(s): /opt/homebrew/bin/cmake -E env VERBOSE=1 /usr/bin/make -f Makefile cmTC_d26ae/fast Run Build Command(s): /opt/homebrew/bin/cmake -E env VERBOSE=1 /usr/bin/make -f Makefile cmTC_58d65/fast
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_d26ae.dir/build.make CMakeFiles/cmTC_d26ae.dir/build /Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_58d65.dir/build.make CMakeFiles/cmTC_58d65.dir/build
Building CXX object CMakeFiles/cmTC_d26ae.dir/CMakeCXXCompilerABI.cpp.o Building CXX object CMakeFiles/cmTC_58d65.dir/CMakeCXXCompilerABI.cpp.o
/usr/bin/c++ -arch arm64 -arch x86_64 -v -Wl,-v -MD -MT CMakeFiles/cmTC_d26ae.dir/CMakeCXXCompilerABI.cpp.o -MF CMakeFiles/cmTC_d26ae.dir/CMakeCXXCompilerABI.cpp.o.d -o CMakeFiles/cmTC_d26ae.dir/CMakeCXXCompilerABI.cpp.o -c /opt/homebrew/share/cmake/Modules/CMakeCXXCompilerABI.cpp /usr/bin/c++ -arch arm64 -arch x86_64 -v -Wl,-v -MD -MT CMakeFiles/cmTC_58d65.dir/CMakeCXXCompilerABI.cpp.o -MF CMakeFiles/cmTC_58d65.dir/CMakeCXXCompilerABI.cpp.o.d -o CMakeFiles/cmTC_58d65.dir/CMakeCXXCompilerABI.cpp.o -c /opt/homebrew/share/cmake/Modules/CMakeCXXCompilerABI.cpp
Apple clang version 17.0.0 (clang-1700.3.19.1) Apple clang version 17.0.0 (clang-1700.3.19.1)
Target: x86_64-apple-darwin25.0.0 Target: x86_64-apple-darwin25.0.0
Thread model: posix Thread model: posix
@@ -1234,7 +1234,7 @@ events:
clang++: warning: -Wl,-v: 'linker' input unused [-Wunused-command-line-argument] clang++: warning: -Wl,-v: 'linker' input unused [-Wunused-command-line-argument]
ignoring nonexistent directory "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1" ignoring nonexistent directory "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1"
ignoring nonexistent directory "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1" ignoring nonexistent directory "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1"
"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang" -cc1 -triple arm64-apple-macosx26.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=26.0 -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/keshavanand/Downloads/VSCode/Terminal/macbuild/CMakeFiles/CMakeScratch/TryCompile-l9UfX9 -target-linker-version 1221.4 -v -fcoverage-compilation-dir=/Users/keshavanand/Downloads/VSCode/Terminal/macbuild/CMakeFiles/CMakeScratch/TryCompile-l9UfX9 -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/17 -dependency-file CMakeFiles/cmTC_d26ae.dir/CMakeCXXCompilerABI.cpp.o.d -skip-unused-modulemap-deps -MT CMakeFiles/cmTC_d26ae.dir/CMakeCXXCompilerABI.cpp.o -sys-header-deps -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk -I/usr/local/include -internal-isystem /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/c++/v1 -internal-isystem /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/local/include -internal-isystem /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/17/include -internal-externc-isystem /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include -internal-externc-isystem /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include -internal-iframework /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks -internal-iframework /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/SubFrameworks -internal-iframework /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/Library/Frameworks -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 -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 /var/folders/hw/0fj69drs25n5c_x1hnndwwtm0000gn/T/CMakeCXXCompilerABI-23befc/CMakeCXXCompilerABI-arm64.o -x c++ /opt/homebrew/share/cmake/Modules/CMakeCXXCompilerABI.cpp "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang" -cc1 -triple arm64-apple-macosx26.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=26.0 -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/keshavanand/Downloads/VSCode/Terminal/macbuild/CMakeFiles/CMakeScratch/TryCompile-Zhtmim -target-linker-version 1221.4 -v -fcoverage-compilation-dir=/Users/keshavanand/Downloads/VSCode/Terminal/macbuild/CMakeFiles/CMakeScratch/TryCompile-Zhtmim -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/17 -dependency-file CMakeFiles/cmTC_58d65.dir/CMakeCXXCompilerABI.cpp.o.d -skip-unused-modulemap-deps -MT CMakeFiles/cmTC_58d65.dir/CMakeCXXCompilerABI.cpp.o -sys-header-deps -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk -I/usr/local/include -internal-isystem /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/c++/v1 -internal-isystem /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/local/include -internal-isystem /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/17/include -internal-externc-isystem /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include -internal-externc-isystem /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include -internal-iframework /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks -internal-iframework /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/SubFrameworks -internal-iframework /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/Library/Frameworks -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 -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 /var/folders/hw/0fj69drs25n5c_x1hnndwwtm0000gn/T/CMakeCXXCompilerABI-369bc1/CMakeCXXCompilerABI-arm64.o -x c++ /opt/homebrew/share/cmake/Modules/CMakeCXXCompilerABI.cpp
clang -cc1 version 17.0.0 (clang-1700.3.19.1) default target arm64-apple-darwin25.0.0 clang -cc1 version 17.0.0 (clang-1700.3.19.1) default target arm64-apple-darwin25.0.0
ignoring nonexistent directory "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/local/include" ignoring nonexistent directory "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/local/include"
ignoring nonexistent directory "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/Library/Frameworks" ignoring nonexistent directory "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/Library/Frameworks"
@@ -1248,7 +1248,7 @@ events:
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks (framework directory) /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks (framework directory)
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/SubFrameworks (framework directory) /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/SubFrameworks (framework directory)
End of search list. End of search list.
"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang" -cc1 -triple x86_64-apple-macosx26.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=all -fno-strict-return -ffp-contract=on -fno-rounding-math -funwind-tables=2 -target-sdk-version=26.0 -fvisibility-inlines-hidden-static-local-var -fdefine-target-os-macros -fno-assume-unique-vtables -fno-modulemap-allow-subdirectory-search -target-cpu penryn -tune-cpu generic -debugger-tuning=lldb -fdebug-compilation-dir=/Users/keshavanand/Downloads/VSCode/Terminal/macbuild/CMakeFiles/CMakeScratch/TryCompile-l9UfX9 -target-linker-version 1221.4 -v -fcoverage-compilation-dir=/Users/keshavanand/Downloads/VSCode/Terminal/macbuild/CMakeFiles/CMakeScratch/TryCompile-l9UfX9 -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/17 -dependency-file CMakeFiles/cmTC_d26ae.dir/CMakeCXXCompilerABI.cpp.o.d -skip-unused-modulemap-deps -MT CMakeFiles/cmTC_d26ae.dir/CMakeCXXCompilerABI.cpp.o -sys-header-deps -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk -I/usr/local/include -internal-isystem /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/c++/v1 -internal-isystem /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/local/include -internal-isystem /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/17/include -internal-externc-isystem /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include -internal-externc-isystem /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include -internal-iframework /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks -internal-iframework /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/SubFrameworks -internal-iframework /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/Library/Frameworks -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 -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 /var/folders/hw/0fj69drs25n5c_x1hnndwwtm0000gn/T/CMakeCXXCompilerABI-bf35fc/CMakeCXXCompilerABI-x86_64.o -x c++ /opt/homebrew/share/cmake/Modules/CMakeCXXCompilerABI.cpp "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang" -cc1 -triple x86_64-apple-macosx26.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=all -fno-strict-return -ffp-contract=on -fno-rounding-math -funwind-tables=2 -target-sdk-version=26.0 -fvisibility-inlines-hidden-static-local-var -fdefine-target-os-macros -fno-assume-unique-vtables -fno-modulemap-allow-subdirectory-search -target-cpu penryn -tune-cpu generic -debugger-tuning=lldb -fdebug-compilation-dir=/Users/keshavanand/Downloads/VSCode/Terminal/macbuild/CMakeFiles/CMakeScratch/TryCompile-Zhtmim -target-linker-version 1221.4 -v -fcoverage-compilation-dir=/Users/keshavanand/Downloads/VSCode/Terminal/macbuild/CMakeFiles/CMakeScratch/TryCompile-Zhtmim -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/17 -dependency-file CMakeFiles/cmTC_58d65.dir/CMakeCXXCompilerABI.cpp.o.d -skip-unused-modulemap-deps -MT CMakeFiles/cmTC_58d65.dir/CMakeCXXCompilerABI.cpp.o -sys-header-deps -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk -I/usr/local/include -internal-isystem /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/c++/v1 -internal-isystem /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/local/include -internal-isystem /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/17/include -internal-externc-isystem /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include -internal-externc-isystem /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include -internal-iframework /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks -internal-iframework /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/SubFrameworks -internal-iframework /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/Library/Frameworks -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 -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 /var/folders/hw/0fj69drs25n5c_x1hnndwwtm0000gn/T/CMakeCXXCompilerABI-9ae538/CMakeCXXCompilerABI-x86_64.o -x c++ /opt/homebrew/share/cmake/Modules/CMakeCXXCompilerABI.cpp
clang -cc1 version 17.0.0 (clang-1700.3.19.1) default target arm64-apple-darwin25.0.0 clang -cc1 version 17.0.0 (clang-1700.3.19.1) default target arm64-apple-darwin25.0.0
ignoring nonexistent directory "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/local/include" ignoring nonexistent directory "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/local/include"
ignoring nonexistent directory "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/Library/Frameworks" ignoring nonexistent directory "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/Library/Frameworks"
@@ -1262,14 +1262,14 @@ events:
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks (framework directory) /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks (framework directory)
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/SubFrameworks (framework directory) /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/SubFrameworks (framework directory)
End of search list. End of search list.
"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/lipo" -create -output CMakeFiles/cmTC_d26ae.dir/CMakeCXXCompilerABI.cpp.o /var/folders/hw/0fj69drs25n5c_x1hnndwwtm0000gn/T/CMakeCXXCompilerABI-23befc/CMakeCXXCompilerABI-arm64.o /var/folders/hw/0fj69drs25n5c_x1hnndwwtm0000gn/T/CMakeCXXCompilerABI-bf35fc/CMakeCXXCompilerABI-x86_64.o "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/lipo" -create -output CMakeFiles/cmTC_58d65.dir/CMakeCXXCompilerABI.cpp.o /var/folders/hw/0fj69drs25n5c_x1hnndwwtm0000gn/T/CMakeCXXCompilerABI-369bc1/CMakeCXXCompilerABI-arm64.o /var/folders/hw/0fj69drs25n5c_x1hnndwwtm0000gn/T/CMakeCXXCompilerABI-9ae538/CMakeCXXCompilerABI-x86_64.o
Linking CXX executable cmTC_d26ae Linking CXX executable cmTC_58d65
/opt/homebrew/bin/cmake -E cmake_link_script CMakeFiles/cmTC_d26ae.dir/link.txt --verbose=1 /opt/homebrew/bin/cmake -E cmake_link_script CMakeFiles/cmTC_58d65.dir/link.txt --verbose=1
Apple clang version 17.0.0 (clang-1700.3.19.1) Apple clang version 17.0.0 (clang-1700.3.19.1)
Target: x86_64-apple-darwin25.0.0 Target: x86_64-apple-darwin25.0.0
Thread model: posix Thread model: posix
InstalledDir: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin InstalledDir: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin
"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ld" -demangle -lto_library /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/libLTO.dylib -dynamic -arch arm64 -platform_version macos 26.0.0 26.0 -syslibroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk -mllvm -enable-linkonceodr-outlining -o /var/folders/hw/0fj69drs25n5c_x1hnndwwtm0000gn/T/CMakeCXXCompilerABI-db5713/CMakeCXXCompilerABI-arm64.out -L/usr/local/lib -search_paths_first -headerpad_max_install_names -v CMakeFiles/cmTC_d26ae.dir/CMakeCXXCompilerABI.cpp.o -arch_multiple -final_output cmTC_d26ae -lc++ -lSystem /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/17/lib/darwin/libclang_rt.osx.a "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ld" -demangle -lto_library /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/libLTO.dylib -dynamic -arch arm64 -platform_version macos 26.0.0 26.0 -syslibroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk -mllvm -enable-linkonceodr-outlining -o /var/folders/hw/0fj69drs25n5c_x1hnndwwtm0000gn/T/CMakeCXXCompilerABI-d475d5/CMakeCXXCompilerABI-arm64.out -L/usr/local/lib -search_paths_first -headerpad_max_install_names -v CMakeFiles/cmTC_58d65.dir/CMakeCXXCompilerABI.cpp.o -arch_multiple -final_output cmTC_58d65 -lc++ -lSystem /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/17/lib/darwin/libclang_rt.osx.a
@(#)PROGRAM:ld PROJECT:ld-1221.4 @(#)PROGRAM:ld PROJECT:ld-1221.4
BUILD 16:29:08 Aug 11 2025 BUILD 16:29:08 Aug 11 2025
configured to support archs: armv6 armv7 armv7s arm64 arm64e arm64_32 i386 x86_64 x86_64h armv6m armv7k armv7m armv7em armv8m.main armv8.1m.main configured to support archs: armv6 armv7 armv7s arm64 arm64e arm64_32 i386 x86_64 x86_64h armv6m armv7k armv7m armv7em armv8m.main armv8.1m.main
@@ -1282,7 +1282,7 @@ events:
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/lib/swift /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/lib/swift
Framework search paths: Framework search paths:
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks
"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ld" -demangle -lto_library /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/libLTO.dylib -no_deduplicate -dynamic -arch x86_64 -platform_version macos 26.0.0 26.0 -syslibroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk -mllvm -enable-linkonceodr-outlining -o /var/folders/hw/0fj69drs25n5c_x1hnndwwtm0000gn/T/CMakeCXXCompilerABI-3abcca/CMakeCXXCompilerABI-x86_64.out -L/usr/local/lib -search_paths_first -headerpad_max_install_names -v CMakeFiles/cmTC_d26ae.dir/CMakeCXXCompilerABI.cpp.o -arch_multiple -final_output cmTC_d26ae -lc++ -lSystem /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/17/lib/darwin/libclang_rt.osx.a "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ld" -demangle -lto_library /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/libLTO.dylib -no_deduplicate -dynamic -arch x86_64 -platform_version macos 26.0.0 26.0 -syslibroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk -mllvm -enable-linkonceodr-outlining -o /var/folders/hw/0fj69drs25n5c_x1hnndwwtm0000gn/T/CMakeCXXCompilerABI-568998/CMakeCXXCompilerABI-x86_64.out -L/usr/local/lib -search_paths_first -headerpad_max_install_names -v CMakeFiles/cmTC_58d65.dir/CMakeCXXCompilerABI.cpp.o -arch_multiple -final_output cmTC_58d65 -lc++ -lSystem /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/17/lib/darwin/libclang_rt.osx.a
@(#)PROGRAM:ld PROJECT:ld-1221.4 @(#)PROGRAM:ld PROJECT:ld-1221.4
BUILD 16:29:08 Aug 11 2025 BUILD 16:29:08 Aug 11 2025
configured to support archs: armv6 armv7 armv7s arm64 arm64e arm64_32 i386 x86_64 x86_64h armv6m armv7k armv7m armv7em armv8m.main armv8.1m.main configured to support archs: armv6 armv7 armv7s arm64 arm64e arm64_32 i386 x86_64 x86_64h armv6m armv7k armv7m armv7em armv8m.main armv8.1m.main
@@ -1295,8 +1295,8 @@ events:
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/lib/swift /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/lib/swift
Framework search paths: Framework search paths:
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks
"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/lipo" -create -output cmTC_d26ae /var/folders/hw/0fj69drs25n5c_x1hnndwwtm0000gn/T/CMakeCXXCompilerABI-db5713/CMakeCXXCompilerABI-arm64.out /var/folders/hw/0fj69drs25n5c_x1hnndwwtm0000gn/T/CMakeCXXCompilerABI-3abcca/CMakeCXXCompilerABI-x86_64.out "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/lipo" -create -output cmTC_58d65 /var/folders/hw/0fj69drs25n5c_x1hnndwwtm0000gn/T/CMakeCXXCompilerABI-d475d5/CMakeCXXCompilerABI-arm64.out /var/folders/hw/0fj69drs25n5c_x1hnndwwtm0000gn/T/CMakeCXXCompilerABI-568998/CMakeCXXCompilerABI-x86_64.out
/usr/bin/c++ -arch arm64 -arch x86_64 -Wl,-search_paths_first -Wl,-headerpad_max_install_names -v -Wl,-v CMakeFiles/cmTC_d26ae.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_d26ae /usr/bin/c++ -arch arm64 -arch x86_64 -Wl,-search_paths_first -Wl,-headerpad_max_install_names -v -Wl,-v CMakeFiles/cmTC_58d65.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_58d65
exitCode: 0 exitCode: 0
- -
@@ -1342,12 +1342,12 @@ events:
Parsed CXX implicit link information: 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)[^/\\]*( |$)] 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]+)))("|,| |$)] 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/keshavanand/Downloads/VSCode/Terminal/macbuild/CMakeFiles/CMakeScratch/TryCompile-l9UfX9'] ignore line: [Change Dir: '/Users/keshavanand/Downloads/VSCode/Terminal/macbuild/CMakeFiles/CMakeScratch/TryCompile-Zhtmim']
ignore line: [] ignore line: []
ignore line: [Run Build Command(s): /opt/homebrew/bin/cmake -E env VERBOSE=1 /usr/bin/make -f Makefile cmTC_d26ae/fast] ignore line: [Run Build Command(s): /opt/homebrew/bin/cmake -E env VERBOSE=1 /usr/bin/make -f Makefile cmTC_58d65/fast]
ignore line: [/Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_d26ae.dir/build.make CMakeFiles/cmTC_d26ae.dir/build] ignore line: [/Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_58d65.dir/build.make CMakeFiles/cmTC_58d65.dir/build]
ignore line: [Building CXX object CMakeFiles/cmTC_d26ae.dir/CMakeCXXCompilerABI.cpp.o] ignore line: [Building CXX object CMakeFiles/cmTC_58d65.dir/CMakeCXXCompilerABI.cpp.o]
ignore line: [/usr/bin/c++ -arch arm64 -arch x86_64 -v -Wl -v -MD -MT CMakeFiles/cmTC_d26ae.dir/CMakeCXXCompilerABI.cpp.o -MF CMakeFiles/cmTC_d26ae.dir/CMakeCXXCompilerABI.cpp.o.d -o CMakeFiles/cmTC_d26ae.dir/CMakeCXXCompilerABI.cpp.o -c /opt/homebrew/share/cmake/Modules/CMakeCXXCompilerABI.cpp] ignore line: [/usr/bin/c++ -arch arm64 -arch x86_64 -v -Wl -v -MD -MT CMakeFiles/cmTC_58d65.dir/CMakeCXXCompilerABI.cpp.o -MF CMakeFiles/cmTC_58d65.dir/CMakeCXXCompilerABI.cpp.o.d -o CMakeFiles/cmTC_58d65.dir/CMakeCXXCompilerABI.cpp.o -c /opt/homebrew/share/cmake/Modules/CMakeCXXCompilerABI.cpp]
ignore line: [Apple clang version 17.0.0 (clang-1700.3.19.1)] ignore line: [Apple clang version 17.0.0 (clang-1700.3.19.1)]
ignore line: [Target: x86_64-apple-darwin25.0.0] ignore line: [Target: x86_64-apple-darwin25.0.0]
ignore line: [Thread model: posix] ignore line: [Thread model: posix]
@@ -1355,7 +1355,7 @@ events:
ignore line: [clang++: warning: -Wl -v: 'linker' input unused [-Wunused-command-line-argument]] ignore line: [clang++: warning: -Wl -v: 'linker' input unused [-Wunused-command-line-argument]]
ignore line: [ignoring nonexistent directory "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1"] ignore line: [ignoring nonexistent directory "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1"]
ignore line: [ignoring nonexistent directory "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1"] ignore line: [ignoring nonexistent directory "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1"]
ignore line: [ "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang" -cc1 -triple arm64-apple-macosx26.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=26.0 -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/keshavanand/Downloads/VSCode/Terminal/macbuild/CMakeFiles/CMakeScratch/TryCompile-l9UfX9 -target-linker-version 1221.4 -v -fcoverage-compilation-dir=/Users/keshavanand/Downloads/VSCode/Terminal/macbuild/CMakeFiles/CMakeScratch/TryCompile-l9UfX9 -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/17 -dependency-file CMakeFiles/cmTC_d26ae.dir/CMakeCXXCompilerABI.cpp.o.d -skip-unused-modulemap-deps -MT CMakeFiles/cmTC_d26ae.dir/CMakeCXXCompilerABI.cpp.o -sys-header-deps -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk -I/usr/local/include -internal-isystem /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/c++/v1 -internal-isystem /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/local/include -internal-isystem /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/17/include -internal-externc-isystem /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include -internal-externc-isystem /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include -internal-iframework /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks -internal-iframework /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/SubFrameworks -internal-iframework /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/Library/Frameworks -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 -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 /var/folders/hw/0fj69drs25n5c_x1hnndwwtm0000gn/T/CMakeCXXCompilerABI-23befc/CMakeCXXCompilerABI-arm64.o -x c++ /opt/homebrew/share/cmake/Modules/CMakeCXXCompilerABI.cpp] ignore line: [ "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang" -cc1 -triple arm64-apple-macosx26.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=26.0 -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/keshavanand/Downloads/VSCode/Terminal/macbuild/CMakeFiles/CMakeScratch/TryCompile-Zhtmim -target-linker-version 1221.4 -v -fcoverage-compilation-dir=/Users/keshavanand/Downloads/VSCode/Terminal/macbuild/CMakeFiles/CMakeScratch/TryCompile-Zhtmim -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/17 -dependency-file CMakeFiles/cmTC_58d65.dir/CMakeCXXCompilerABI.cpp.o.d -skip-unused-modulemap-deps -MT CMakeFiles/cmTC_58d65.dir/CMakeCXXCompilerABI.cpp.o -sys-header-deps -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk -I/usr/local/include -internal-isystem /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/c++/v1 -internal-isystem /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/local/include -internal-isystem /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/17/include -internal-externc-isystem /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include -internal-externc-isystem /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include -internal-iframework /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks -internal-iframework /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/SubFrameworks -internal-iframework /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/Library/Frameworks -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 -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 /var/folders/hw/0fj69drs25n5c_x1hnndwwtm0000gn/T/CMakeCXXCompilerABI-369bc1/CMakeCXXCompilerABI-arm64.o -x c++ /opt/homebrew/share/cmake/Modules/CMakeCXXCompilerABI.cpp]
ignore line: [clang -cc1 version 17.0.0 (clang-1700.3.19.1) default target arm64-apple-darwin25.0.0] ignore line: [clang -cc1 version 17.0.0 (clang-1700.3.19.1) default target arm64-apple-darwin25.0.0]
ignore line: [ignoring nonexistent directory "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/local/include"] ignore line: [ignoring nonexistent directory "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/local/include"]
ignore line: [ignoring nonexistent directory "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/Library/Frameworks"] ignore line: [ignoring nonexistent directory "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/Library/Frameworks"]
@@ -1369,7 +1369,7 @@ events:
ignore line: [ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks (framework directory)] ignore line: [ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks (framework directory)]
ignore line: [ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/SubFrameworks (framework directory)] ignore line: [ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/SubFrameworks (framework directory)]
ignore line: [End of search list.] ignore line: [End of search list.]
ignore line: [ "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang" -cc1 -triple x86_64-apple-macosx26.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=all -fno-strict-return -ffp-contract=on -fno-rounding-math -funwind-tables=2 -target-sdk-version=26.0 -fvisibility-inlines-hidden-static-local-var -fdefine-target-os-macros -fno-assume-unique-vtables -fno-modulemap-allow-subdirectory-search -target-cpu penryn -tune-cpu generic -debugger-tuning=lldb -fdebug-compilation-dir=/Users/keshavanand/Downloads/VSCode/Terminal/macbuild/CMakeFiles/CMakeScratch/TryCompile-l9UfX9 -target-linker-version 1221.4 -v -fcoverage-compilation-dir=/Users/keshavanand/Downloads/VSCode/Terminal/macbuild/CMakeFiles/CMakeScratch/TryCompile-l9UfX9 -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/17 -dependency-file CMakeFiles/cmTC_d26ae.dir/CMakeCXXCompilerABI.cpp.o.d -skip-unused-modulemap-deps -MT CMakeFiles/cmTC_d26ae.dir/CMakeCXXCompilerABI.cpp.o -sys-header-deps -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk -I/usr/local/include -internal-isystem /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/c++/v1 -internal-isystem /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/local/include -internal-isystem /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/17/include -internal-externc-isystem /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include -internal-externc-isystem /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include -internal-iframework /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks -internal-iframework /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/SubFrameworks -internal-iframework /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/Library/Frameworks -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 -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 /var/folders/hw/0fj69drs25n5c_x1hnndwwtm0000gn/T/CMakeCXXCompilerABI-bf35fc/CMakeCXXCompilerABI-x86_64.o -x c++ /opt/homebrew/share/cmake/Modules/CMakeCXXCompilerABI.cpp] ignore line: [ "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang" -cc1 -triple x86_64-apple-macosx26.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=all -fno-strict-return -ffp-contract=on -fno-rounding-math -funwind-tables=2 -target-sdk-version=26.0 -fvisibility-inlines-hidden-static-local-var -fdefine-target-os-macros -fno-assume-unique-vtables -fno-modulemap-allow-subdirectory-search -target-cpu penryn -tune-cpu generic -debugger-tuning=lldb -fdebug-compilation-dir=/Users/keshavanand/Downloads/VSCode/Terminal/macbuild/CMakeFiles/CMakeScratch/TryCompile-Zhtmim -target-linker-version 1221.4 -v -fcoverage-compilation-dir=/Users/keshavanand/Downloads/VSCode/Terminal/macbuild/CMakeFiles/CMakeScratch/TryCompile-Zhtmim -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/17 -dependency-file CMakeFiles/cmTC_58d65.dir/CMakeCXXCompilerABI.cpp.o.d -skip-unused-modulemap-deps -MT CMakeFiles/cmTC_58d65.dir/CMakeCXXCompilerABI.cpp.o -sys-header-deps -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk -I/usr/local/include -internal-isystem /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/c++/v1 -internal-isystem /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/local/include -internal-isystem /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/17/include -internal-externc-isystem /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include -internal-externc-isystem /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include -internal-iframework /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks -internal-iframework /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/SubFrameworks -internal-iframework /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/Library/Frameworks -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 -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 /var/folders/hw/0fj69drs25n5c_x1hnndwwtm0000gn/T/CMakeCXXCompilerABI-9ae538/CMakeCXXCompilerABI-x86_64.o -x c++ /opt/homebrew/share/cmake/Modules/CMakeCXXCompilerABI.cpp]
ignore line: [clang -cc1 version 17.0.0 (clang-1700.3.19.1) default target arm64-apple-darwin25.0.0] ignore line: [clang -cc1 version 17.0.0 (clang-1700.3.19.1) default target arm64-apple-darwin25.0.0]
ignore line: [ignoring nonexistent directory "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/local/include"] ignore line: [ignoring nonexistent directory "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/local/include"]
ignore line: [ignoring nonexistent directory "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/Library/Frameworks"] ignore line: [ignoring nonexistent directory "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/Library/Frameworks"]
@@ -1383,14 +1383,14 @@ events:
ignore line: [ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks (framework directory)] ignore line: [ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks (framework directory)]
ignore line: [ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/SubFrameworks (framework directory)] ignore line: [ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/SubFrameworks (framework directory)]
ignore line: [End of search list.] ignore line: [End of search list.]
ignore line: [ "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/lipo" -create -output CMakeFiles/cmTC_d26ae.dir/CMakeCXXCompilerABI.cpp.o /var/folders/hw/0fj69drs25n5c_x1hnndwwtm0000gn/T/CMakeCXXCompilerABI-23befc/CMakeCXXCompilerABI-arm64.o /var/folders/hw/0fj69drs25n5c_x1hnndwwtm0000gn/T/CMakeCXXCompilerABI-bf35fc/CMakeCXXCompilerABI-x86_64.o] ignore line: [ "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/lipo" -create -output CMakeFiles/cmTC_58d65.dir/CMakeCXXCompilerABI.cpp.o /var/folders/hw/0fj69drs25n5c_x1hnndwwtm0000gn/T/CMakeCXXCompilerABI-369bc1/CMakeCXXCompilerABI-arm64.o /var/folders/hw/0fj69drs25n5c_x1hnndwwtm0000gn/T/CMakeCXXCompilerABI-9ae538/CMakeCXXCompilerABI-x86_64.o]
ignore line: [Linking CXX executable cmTC_d26ae] ignore line: [Linking CXX executable cmTC_58d65]
ignore line: [/opt/homebrew/bin/cmake -E cmake_link_script CMakeFiles/cmTC_d26ae.dir/link.txt --verbose=1] ignore line: [/opt/homebrew/bin/cmake -E cmake_link_script CMakeFiles/cmTC_58d65.dir/link.txt --verbose=1]
ignore line: [Apple clang version 17.0.0 (clang-1700.3.19.1)] ignore line: [Apple clang version 17.0.0 (clang-1700.3.19.1)]
ignore line: [Target: x86_64-apple-darwin25.0.0] ignore line: [Target: x86_64-apple-darwin25.0.0]
ignore line: [Thread model: posix] ignore line: [Thread model: posix]
ignore line: [InstalledDir: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin] ignore line: [InstalledDir: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin]
link line: [ "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ld" -demangle -lto_library /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/libLTO.dylib -dynamic -arch arm64 -platform_version macos 26.0.0 26.0 -syslibroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk -mllvm -enable-linkonceodr-outlining -o /var/folders/hw/0fj69drs25n5c_x1hnndwwtm0000gn/T/CMakeCXXCompilerABI-db5713/CMakeCXXCompilerABI-arm64.out -L/usr/local/lib -search_paths_first -headerpad_max_install_names -v CMakeFiles/cmTC_d26ae.dir/CMakeCXXCompilerABI.cpp.o -arch_multiple -final_output cmTC_d26ae -lc++ -lSystem /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/17/lib/darwin/libclang_rt.osx.a] link line: [ "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ld" -demangle -lto_library /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/libLTO.dylib -dynamic -arch arm64 -platform_version macos 26.0.0 26.0 -syslibroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk -mllvm -enable-linkonceodr-outlining -o /var/folders/hw/0fj69drs25n5c_x1hnndwwtm0000gn/T/CMakeCXXCompilerABI-d475d5/CMakeCXXCompilerABI-arm64.out -L/usr/local/lib -search_paths_first -headerpad_max_install_names -v CMakeFiles/cmTC_58d65.dir/CMakeCXXCompilerABI.cpp.o -arch_multiple -final_output cmTC_58d65 -lc++ -lSystem /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/17/lib/darwin/libclang_rt.osx.a]
arg [/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ld] ==> ignore arg [/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ld] ==> ignore
arg [-demangle] ==> ignore arg [-demangle] ==> ignore
arg [-lto_library] ==> ignore, skip following value arg [-lto_library] ==> ignore, skip following value
@@ -1407,15 +1407,15 @@ events:
arg [-mllvm] ==> ignore arg [-mllvm] ==> ignore
arg [-enable-linkonceodr-outlining] ==> ignore arg [-enable-linkonceodr-outlining] ==> ignore
arg [-o] ==> ignore arg [-o] ==> ignore
arg [/var/folders/hw/0fj69drs25n5c_x1hnndwwtm0000gn/T/CMakeCXXCompilerABI-db5713/CMakeCXXCompilerABI-arm64.out] ==> ignore arg [/var/folders/hw/0fj69drs25n5c_x1hnndwwtm0000gn/T/CMakeCXXCompilerABI-d475d5/CMakeCXXCompilerABI-arm64.out] ==> ignore
arg [-L/usr/local/lib] ==> dir [/usr/local/lib] arg [-L/usr/local/lib] ==> dir [/usr/local/lib]
arg [-search_paths_first] ==> ignore arg [-search_paths_first] ==> ignore
arg [-headerpad_max_install_names] ==> ignore arg [-headerpad_max_install_names] ==> ignore
arg [-v] ==> ignore arg [-v] ==> ignore
arg [CMakeFiles/cmTC_d26ae.dir/CMakeCXXCompilerABI.cpp.o] ==> ignore arg [CMakeFiles/cmTC_58d65.dir/CMakeCXXCompilerABI.cpp.o] ==> ignore
arg [-arch_multiple] ==> ignore arg [-arch_multiple] ==> ignore
arg [-final_output] ==> ignore arg [-final_output] ==> ignore
arg [cmTC_d26ae] ==> ignore arg [cmTC_58d65] ==> ignore
arg [-lc++] ==> lib [c++] arg [-lc++] ==> lib [c++]
arg [-lSystem] ==> lib [System] arg [-lSystem] ==> lib [System]
arg [/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/17/lib/darwin/libclang_rt.osx.a] ==> lib [/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/17/lib/darwin/libclang_rt.osx.a] arg [/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/17/lib/darwin/libclang_rt.osx.a] ==> lib [/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/17/lib/darwin/libclang_rt.osx.a]

0
macbuild/Makefile Normal file → Executable file
View File

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.