web-dev-qa-db-ja.com

リンカーエラー:「リンクが完了していないため、リンカー入力ファイルは使用されていません」、そのファイル内の関数への未定義の参照

ファイルのリンクに問題があります。

基本的に、私のプログラムは以下で構成されています:

  • メインプログラム、gen1
  • gen1-入力を受け取り、処理のためにstr2valueに送信し、結果をstr2valueに出力し、「tokenizer」を使用して入力をトークンに分割し、各トークンに対して行う処理の種類を決定し、それらを渡すstr2num、またはstr2cmd。次に、結果の配列を返します。
  • str2num-何らかの処理を行います
  • str2cmd-同上
  • author.py-pythonヘッダーからstr2cmd.cおよびstr2cmd.hを生成するスクリプトcmdTable.h

私は自分のインクルードが正しいと確信しています。何度かチェックしました。また、ヘッダーに#ifndef間違った条件がないことも確認しました。

ここに私のMakefileがあります:

#CPP = g++ -lserial
CPP = g++ -DTESTMODE
C= gcc
DEFINES = LURC
CFLAGS = -Wall -fshort-enums -D$(DEFINES)
PROJECTFILES = gen1.cpp str2value.o

STR2VALUEFILES = str2value.cpp str2cmd.o str2num.o tokenizer.o str2value.h

gen1 : $(PROJECTFILES)
        $(CPP) $(CFLAGS) -o gen1 $(PROJECTFILES)



str2value.o : $(STR2VALUEFILES)
#       echo "str2value"
        $(CPP) $(CFLAGS) -c $(STR2VALUEFILES)

str2num.o: str2num.cpp  str2value.h str2num.hpp
         $(C) $(CFLAGS) -c $^


tokenizer.o: tokenizer.cpp tokenizer.hpp
        $(CPP) $(CFLAGS) -c $^

str2cmd.o : authorCMDs.py cmdTable.h
        python authorCMDs.py cmdTable.h str2cmd #this uses the gcc -E cmdTable.h -DLURC
        $(C) $(CFLAGS) -c str2cmd.c str2cmd.h

#TODO: add a thing that checks str2cmd.h/.c has not been modified by hand



.PHONEY: clean
clean:
        rm *.o

.PHONEY: all
all:
        clear
        make clean
        make

Make allから受け取る出力は次のとおりです。

make clean
make[1]: Entering directory `/home/frames/LURC/gen1/gen1Source'
rm *.o
make[1]: Leaving directory `/home/frames/LURC/gen1/gen1Source'
make
make[1]: Entering directory `/home/frames/LURC/gen1/gen1Source'
python authorCMDs.py cmdTable.h str2cmd #this uses the gcc -E cmdTable.h -DLURC
str2cmd.c and str2cmd.h, generated from cmdTable.h

gcc  -Wall -fshort-enums -DLURC -c str2cmd.c str2cmd.h
gcc  -Wall -fshort-enums -DLURC -c str2num.cpp str2value.h str2num.hpp
g++ -DTESTMODE -Wall -fshort-enums -DLURC -c tokenizer.cpp tokenizer.hpp
g++ -DTESTMODE -Wall -fshort-enums -DLURC -c str2value.cpp str2cmd.o str2num.o tokenizer.o str2value.h
g++: str2cmd.o: linker input file unused because linking not done
g++: str2num.o: linker input file unused because linking not done
g++: tokenizer.o: linker input file unused because linking not done
g++ -DTESTMODE -Wall -fshort-enums -DLURC -o gen1 gen1.cpp str2value.o
str2value.o: In function `getValue(char*)':
str2value.cpp:(.text+0xbd): undefined reference to `str2cmd(char*)'
str2value.cpp:(.text+0x102): undefined reference to `str2num(char*)'
str2value.o: In function `getAllValues(char*)':
str2value.cpp:(.text+0x164): undefined reference to `tokenizer::tokenizer(char*)'
str2value.cpp:(.text+0x177): undefined reference to `tokenizer::getNumTokens(char const*)'
str2value.cpp:(.text+0x1a9): undefined reference to `tokenizer::getNextToken(char const*)'
str2value.cpp:(.text+0x1e9): undefined reference to `tokenizer::getNumTokens(char const*)'
str2value.cpp:(.text+0x201): undefined reference to `tokenizer::~tokenizer()'
str2value.cpp:(.text+0x25b): undefined reference to `tokenizer::~tokenizer()'
collect2: ld returned 1 exit status
make[1]: *** [gen1] Error 1
make[1]: Leaving directory `/home/frames/LURC/gen1/gen1Source'
make: *** [all] Error 2

これが何であるかについての提案はありますか? STR2VALUESFILESには、不足している関数を定義するために必要なすべてのオブジェクトファイルがあります。

38
Lyndon White

コンパイラがどのように物事をまとめるかについて、あなたは混乱していると思います。 -cフラグを使用する場合、つまりリンクが行われない場合、入力はC++コードであり、出力はオブジェクトコードです。したがって、.oファイルは-cと混同されず、コンパイラーはそれについて警告します。オブジェクトファイルのシンボルは、notそのような他のオブジェクトファイルに移動されません。

すべてのオブジェクトファイルは最終的なリンカ呼び出しにある必要がありますが、ここではそうではないので、リンカ(g++フロントエンド経由で呼び出される)は、シンボルの欠落について不平を言います。

これは小さな例です(わかりやすくするためにg++を明示的に呼び出します):

PROG ?= myprog
OBJS = worker.o main.o

all: $(PROG)

.cpp.o:
        g++ -Wall -pedantic -ggdb -O2 -c -o $@ $<

$(PROG): $(OBJS)
        g++ -Wall -pedantic -ggdb -O2 -o $@ $(OBJS)

また、X11に付属している makedepend ユーティリティもあります。これは、ソースコードの依存関係を大幅に支援します。 gccルールを構築するための-Mmakeオプションもご覧ください。

50