aboutsummaryrefslogtreecommitdiff
path: root/src/main.cpp
diff options
context:
space:
mode:
authorJeroen van Rijn <Kelimion@users.noreply.github.com>2025-10-22 10:27:27 +0200
committerJeroen van Rijn <Kelimion@users.noreply.github.com>2025-10-22 10:27:27 +0200
commit0605c7b0e3882edd940b85a41a0b8f3c859c28cc (patch)
treed0363cf8e25ba29a5eb1546dc580952506ad27a3 /src/main.cpp
parent55ab18f911aec918587e27d2e2b5d907cf6d0743 (diff)
Add target triple and LLVM code mode debug prints (#5839)
Diffstat (limited to 'src/main.cpp')
-rw-r--r--src/main.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/main.cpp b/src/main.cpp
index 5fcdedd99..4cc53f319 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -3840,6 +3840,7 @@ int main(int arg_count, char const **arg_ptr) {
if (build_context.show_debug_messages) {
debugf("Selected microarch: %.*s\n", LIT(march));
debugf("Default microarch features: %.*s\n", LIT(default_features));
+ debugf("Target triplet: %.*s\n", LIT(build_context.metrics.target_triplet));
for_array(i, build_context.build_paths) {
String build_path = path_to_string(heap_allocator(), build_context.build_paths[i]);
debugf("build_paths[%ld]: %.*s\n", i, LIT(build_path));