Merge -g option which avoids tracing libraries linked at compile time.
diff --git a/handle_event.c b/handle_event.c
index a502793..728ab65 100644
--- a/handle_event.c
+++ b/handle_event.c
@@ -627,7 +627,7 @@
 		return;
 	}
 
-	if (event->proc->state != STATE_IGNORED) {
+	if (event->proc->state != STATE_IGNORED && !options.no_plt) {
 		output_line(event->proc, "unexpected breakpoint at %p",
 				(void *)event->e_un.brk_addr);
 	}