1. 程式人生 > >nm: test.o: File format not recognized的原因和解決方案

nm: test.o: File format not recognized的原因和解決方案

        最近寫makefile,  碰到了nm: test.o: File format not recognized這個錯誤, 一起看看:

        test.h:

void output();
        test.cpp:
#include <stdio.h>
#include "test.h"

void output()
{
	printf("c is good\n");
}
         編譯:
xxxxxx:~/mkfile> g++ -c test.cpp test.h -o test.o
xxxxxx:~/mkfile> nm test.o
nm: test.o: File format not recognized
xxxxxx:~/mkfile>
         奇怪了吧? 原因是多了test.h檔案, 根本沒必要啊, 編譯器會自動去找的, 只要你指定了目錄即可。  如果把test.h和test.cpp的順序調換, 則提示:
xxxxxx:~/mkfile> g++ -c test.h test.cpp -o test.o
g++: cannot specify -o with -c or -S with multiple files
xxxxxx:~/mkfile> 
          這一點, 我們在前面已經說過了。

          看來, 有-o的時候, 你再去搞-c指定多個檔案, 那就是天大的坑。