When trying to use the python library it was giving me an error about not being able to resolve tracecmd_stat_cpu. This is because we weren't linking trace-record.o to ctracecmd.so. Fix this in the makefile and now I can import trace-cmd in python properly. Thanks,
Signed-off-by: Josef Bacik <[email protected]> --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index df5ec72..f6c2875 100644 --- a/Makefile +++ b/Makefile @@ -321,7 +321,7 @@ KERNEL_SHARK_OBJS = $(TRACE_VIEW_OBJS) $(TRACE_GRAPH_OBJS) $(TRACE_GUI_OBJS) \ PEVENT_LIB_OBJS = event-parse.o trace-seq.o parse-filter.o parse-utils.o TCMD_LIB_OBJS = $(PEVENT_LIB_OBJS) trace-util.o trace-input.o trace-ftrace.o \ trace-output.o trace-recorder.o trace-restore.o trace-usage.o \ - trace-blk-hack.o kbuffer-parse.o event-plugin.o + trace-blk-hack.o kbuffer-parse.o event-plugin.o trace-record.o PLUGIN_OBJS = PLUGIN_OBJS += plugin_jbd2.o -- 1.8.3.1 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to [email protected] More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/

