On Wednesday 03 June 2009 00:55:34 ruifeng yang wrote: > I add: > > export CFLAGS=-g > > to the Makefile,but (no debugging symbols found)... > Will you please send Makefile to me by e-mail?
You don't add it to the makefile, you export it as an environment variable before you run "make". You can pass in arbitrary flags to the c compiler that way in most build systems. export CFLAGS=-g make clean make ls -l busybox_unstripped Rob -- Latency is more important than throughput. It's that simple. - Linus Torvalds _______________________________________________ busybox mailing list [email protected] http://lists.busybox.net/mailman/listinfo/busybox
