2015-10-06 54 views
-1

我有一些代碼,並嘗試編譯它,但我不能。 什麼編譯器或操作系統使用? 這些文件在它sys_config.h和retcode.h和....什麼是編譯器或操作系統使用?

#include <sys_config.h> 
#include <retcode.h> 
#include <types.h> 
#include <osal/osal.h> 
#include <api/libc/alloc.h> 
#include <api/libc/printf.h> 
#include <api/libc/string.h> 
#include <hal/hal_gpio.h> 
#include <hld/hld_dev.h> 
#include <hld/nim/nim_dev.h> 
#include <hld/nim/nim.h> 
#include <hld/nim/nim_tuner.h> 
#include <bus/i2c/i2c.h> 
#include <hld/dmx/dmx_dev.h> 
#include <hld/dmx/dmx.h> 
+1

目前還不清楚你在問什麼。它的代碼可能是你從某處寫入或複製的。所以也許你可以在我們的背景上填一下,你究竟做了什麼,錯誤到底是什麼。 – kaylum

+0

謝謝。我想運行一個設備(調諧器)。我有一些代碼(包括.h .c),但我不知道使用什麼編譯器和操作系統。 – leila

+0

我嘗試在visual studio上編譯,並且發生了一些錯誤。 – leila

回答

0

谷歌搜索一些頭名的使用,它看起來像你正在嘗試編譯Linux內核模塊。這意味着編譯器將在您正在編譯的內核推薦的任何版本上使用gcc。操作系統將是Linux +內核開發工具包。

相關問題