原文:http://blog.csdn.net/chinazjn/article/details/7954984 ffmpeg移植到dm365上,遇到undefined reference错误: GA/gabin/lib/libavformat.a(allformats.o): In function `av_register_all': /GA/ffmpeg-0.10/libavformat/allformats.c:53: undefined reference to `avcodec_re…
向内核中加入C文件后.假设想编译进内核须要改动当前文件夹下的Kconfig文件和Makefile文件. 如:加入一个test.c文件到driver文件夹下,则须要改动Kconfig文件: config MY_TEST tristate "MY_TEST file " depends on I2C ---help--- This is test file about kernel 相同改动Makefile加入一行: obj-$(CONFIG_MY_TEST) += test.o 这样运行…