0

g++ 4.6.3 を使用しています。g++ -v の出力は次のとおりです。

g++ -v
Using built-in specs.
COLLECT_GCC=g++
COLLECT_LTO_WRAPPER=/usr/lib/gcc/i686-linux-gnu/4.6/lto-wrapper
Target: i686-linux-gnu
Configured with: ../src/configure -v --with-pkgversion='Ubuntu/Linaro 4.6.3-1ubuntu5' --with-bugurl=file:///usr/share/doc/gcc-4.6/README.Bugs --enable-  languages=c,c++,fortran,objc,obj-c++ --prefix=/usr --program-suffix=-4.6 --enable-shared --enable-linker-build-id --with-system-zlib --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --with-gxx-include-dir=/usr/include/c++/4.6 --libdir=/usr/lib --enable-nls --with-sysroot=/ --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --enable-gnu-unique-object --enable-plugin --enable-objc-gc --enable-targets=all --disable-werror --with-arch-32=i686 --with-tune=generic --enable-checking=release --build=i686-linux-gnu --host=i686-linux-gnu --target=i686-linux-gnu
Thread model: posix
gcc version 4.6.3 (Ubuntu/Linaro 4.6.3-1ubuntu5) 

これが私のコードのサンプルです:

#include "Word.h"
#include <string>
using namespace std;

pthread_mutex_t Word::_lock = PTHREAD_MUTEX_INITIALIZER;

Word::Word():
_occurrences(1)
{
    memset(_buf, 0, 25);
}

Word::Word(char *str):
_occurrences(1)
{
    memset(_buf, 0, 25);
    if (str != NULL)
    {
        strncpy(_buf, str, strlen(str));
    }
}

g++ -c -ansi または g++ -c -std=c++98 または g++ -c -std=c++03 の場合、これらのオプションのいずれもコードを正しくビルドできません。次のコンパイル エラーが発生します。

mriganka@ubuntu:~/WordCount$ make
g++ -c -g -ansi Word.cpp -o Word.o
Word.cpp: In constructor ‘Word::Word()’:
Word.cpp:10:21: error: ‘memset’ was not declared in this scope
Word.cpp: In constructor ‘Word::Word(char*)’:
Word.cpp:16:21: error: ‘memset’ was not declared in this scope
Word.cpp:19:34: error: ‘strlen’ was not declared in this scope
Word.cpp:19:35: error: ‘strncpy’ was not declared in this scope
Word.cpp: In member function ‘void Word::operator=(const Word&)’:
Word.cpp:37:42: error: ‘strlen’ was not declared in this scope
Word.cpp:37:43: error: ‘strncpy’ was not declared in this scope
Word.cpp: In copy constructor ‘Word::Word(const Word&)’:
Word.cpp:44:21: error: ‘memset’ was not declared in this scope
Word.cpp:45:52: error: ‘strlen’ was not declared in this scope
Word.cpp:45:53: error: ‘strncpy’ was not declared in this scope

したがって、基本的に Ubuntu 12.04 の g++ 4.6.3 は、標準の c++ ヘッダーを認識できません。そして、私はこの状況から抜け出す方法を見つけていません。

2番目の問題:

先に進むために、< string> の代わりに < string.h> を含めました。しかし今、メッセージ キューと pthread ライブラリ関数のリンク エラーに直面しています。

これが私が得ているエラーです:

mriganka@ubuntu:~/WordCount$ make
g++ -c -g -ansi Word.cpp -o Word.o
g++ -lrt -I/usr/lib/i386-linux-gnu Word.o HashMap.o main.o -o word_count
main.o: In function `main':
/home/mriganka/WordCount/main.cpp:75: undefined reference to `pthread_create'
/home/mriganka/WordCount/main.cpp:90: undefined reference to `mq_open'
/home/mriganka/WordCount/main.cpp:93: undefined reference to `mq_getattr'
/home/mriganka/WordCount/main.cpp:113: undefined reference to `mq_send'
/home/mriganka/WordCount/main.cpp:123: undefined reference to `pthread_join'
/home/mriganka/WordCount/main.cpp:129: undefined reference to `mq_close'
/home/mriganka/WordCount/main.cpp:130: undefined reference to `mq_unlink'
main.o: In function `count_words(void*)':
/home/mriganka/WordCount/main.cpp:151: undefined reference to `mq_open'
/home/mriganka/WordCount/main.cpp:154: undefined reference to `mq_getattr'
/home/mriganka/WordCount/main.cpp:162: undefined reference to `mq_timedreceive'
collect2: ld returned 1 exit status

これが私のメイクファイルです:

CC=g++ 
CFLAGS=-c -g -ansi 
LDFLAGS=-lrt 
INC=-I/usr/lib/i386-linux-gnu 
SOURCES=Word.cpp HashMap.cpp main.cpp 
OBJECTS=$(SOURCES:.cpp=.o) EXECUTABLE=word_count

all: $(SOURCES) $(EXECUTABLE)

$(EXECUTABLE): $(OBJECTS) $(CC) $(LDFLAGS) $(INC) -pthread $(OBJECTS) -o $@

.cpp.o: $(CC) $(CFLAGS) $< -o $@

clean: rm -f *.o word_count

両方の問題を解決するのを手伝ってください。私はこれらの問題の解決策をオンラインで絶え間なく検索しましたが、誰もこれらの問題に遭遇したようには見えません.

4

1 に答える 1

3

それらのアイテムは<string.h>(または<cstring>) にあり、 ではありません<string>

2 番目の問題については、適切なライブラリにリンクする必要があります。pthreadの場合-pthreadは、コンパイラ コマンド ラインに追加します。メッセージ キュー ライブラリの場合-l、ライブラリに名前を付けるオプションと、場合によってはライブラリの-L場所をツールに知らせるオプションが必要です。

于 2012-07-04T04:02:38.367 に答える