aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makeconf2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makeconf b/Makeconf
index 4e10b79a..fe846032 100644
--- a/Makeconf
+++ b/Makeconf
@@ -45,7 +45,7 @@ ldflags = $(addprefix -Xlinker ,$(LDFLAGS))
# $(link) uses threads to get malloc until the one in the library is fixed.
define link
-$(CC) -v -nostdlib -e __start $(ldflags) -o $@ $(CFLAGS) $(startup) \
+$(CC) -nostdlib -e __start $(ldflags) -o $@ $(CFLAGS) $(startup) \
$(OBJS) $(LIBS) $(libthreads) $(libc) $(libgcc)
endef