我寫了一個C程序,我需要在MIPS彙編代碼中看到它。編譯C代碼到MIPS彙編
如何安裝或操作將* .c文件設置爲* .txt或* .something_else以查看其MIPS彙編代碼的軟件?
我的操作系統是Linux。
非常感謝!
BTW我的代碼是:
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#define SIZE 128
int main()
{
char mychar , string [SIZE];
int i;
int count =0 ;
printf ("Please enter your string: \n\n");
fgets (string, SIZE, stdin);
printf ("Please enter char to find: ");
mychar = getchar();
for (i=0 ; string[i] != '\0' ; i++)
if (string[i] == mychar)
count++;
printf ("The char %c appears %d times\n" ,mychar ,count);
return 0;
}
只需在控制檯中編寫gcc -S?它會給我什麼? – 2011-04-14 16:10:13
對不起。我誤解了這個問題:我認爲你可以將你的代碼編譯到目標平臺上。 *評論刪除* – pmg 2011-04-14 17:04:54
http://en.gentoo-wiki.com/wiki/Crossdev – 2011-04-14 18:22:57