From b00f52472bd890342b3939280eeb77d314202f51 Mon Sep 17 00:00:00 2001 From: Li Jie Date: Tue, 18 Feb 2025 09:08:24 +0800 Subject: [PATCH] build: don't output pkg path --- compiler/internal/build/build.go | 4 ---- 1 file changed, 4 deletions(-) diff --git a/compiler/internal/build/build.go b/compiler/internal/build/build.go index 081cde5e..95d4e0ce 100644 --- a/compiler/internal/build/build.go +++ b/compiler/internal/build/build.go @@ -450,10 +450,6 @@ func linkMainPkg(ctx *context, pkg *packages.Package, pkgs []*aPackage, linkArgs os.WriteFile(pkg.ExportFile, []byte(lpkg.String()), 0644) } - if verbose || mode != ModeRun { - fmt.Fprintln(os.Stderr, "#", pkgPath) - } - // add rpath and find libs exargs := make([]string, 0, ctx.nLibdir<<1) libs := make([]string, 0, ctx.nLibdir*3)