1997 年に作成されたプログラムをコンパイルしてインストールしようとしています。gcc (GCC) 4.1.2 20080704 (Red Hat 4.1.2-50) と CentOS リリース 5.5 (Final) を使用しています。プログラムの SOURCE ディレクトリで「make」コマンドを実行しようとすると、次のエラーが発生します。
gcc -g -w -I/home/shahw/opinionfinder/software/scol1k/objs -I. -DDEBUG -DUNIX dump.c -L/home/shahw/opinionfinder/software/scol1k/objs -lscol -lm -o dump
gcc -g -w -I/home/shahw/opinionfinder/software/scol1k/objs -I. -DDEBUG -DUNIX ngram.c -L/home/shahw/opinionfinder/software/scol1k/objs -lscol -lm -o ngram
gcc -g -w -I/home/shahw/opinionfinder/software/scol1k/objs -I. -DDEBUG -DUNIX reg.c -L/home/shahw/opinionfinder/software/scol1k/objs -lscol -lm -o reg
gcc -g -w -I/home/shahw/opinionfinder/software/scol1k/objs -I. -DDEBUG -DUNIX select.c -L/home/shahw/opinionfinder/software/scol1k/objs -lscol -lm -o select
select.c: In function ‘select_lines’:
select.c:84: error: invalid lvalue in increment
make[1]: *** [select] Error 1
make[1]: Leaving directory `/home/shahw/opinionfinder/software/scol1k/tools'
make: *** [modules] Error 2
最初にこれを C コード エラーと考えた後、i686-apple-darwin10-gcc-4.2.1 (GCC) 4.2.1 (Apple Inc. ビルド 5664) を使用して Mac OSX 10.6.7 でこれをコンパイルしようとしました。今回は、元のエラーの次のステップでエラーが発生しました。これは、使用中の gcc バージョンとの非互換性が確実にあることを意味します。今回は以下のエラーでした。
gcc -g -w -I/Users/shahjahanwarraich/Desktop/opinionfinderv1.5/software/scol1k/objs -I. -DDEBUG -DUNIX dump.c -L/Users/shahjahanwarraich/Desktop/opinionfinderv1.5/software/scol1k/objs -lscol -lm -o dump
gcc -g -w -I/Users/shahjahanwarraich/Desktop/opinionfinderv1.5/software/scol1k/objs -I. -DDEBUG -DUNIX ngram.c -L/Users/shahjahanwarraich/Desktop/opinionfinderv1.5/software/scol1k/objs -lscol -lm -o ngram
gcc -g -w -I/Users/shahjahanwarraich/Desktop/opinionfinderv1.5/software/scol1k/objs -I. -DDEBUG -DUNIX reg.c -L/Users/shahjahanwarraich/Desktop/opinionfinderv1.5/software/scol1k/objs -lscol -lm -o reg
gcc -g -w -I/Users/shahjahanwarraich/Desktop/opinionfinderv1.5/software/scol1k/objs -I. -DDEBUG -DUNIX select.c -L/Users/shahjahanwarraich/Desktop/opinionfinderv1.5/software/scol1k/objs -lscol -lm -o select
gcc -g -w -I/Users/shahjahanwarraich/Desktop/opinionfinderv1.5/software/scol1k/objs -I. -DDEBUG -DUNIX sents.c -L/Users/shahjahanwarraich/Desktop/opinionfinderv1.5/software/scol1k/objs -lscol -lm -o sents
ld: duplicate symbol _Bos in /Users/shahjahanwarraich/Desktop/opinionfinderv1.5/software/scol1k/objs/libscol.a(cass.o)
and /var/folders/F5/F5WuhlFlHcetJlreJ+GlMk+++TI/-Tmp-//ccjhIM0Y.o
collect2: ld returned 1 exit status
make[1]: *** [sents] Error 1
make: *** [modules] Error 2
C プログラミングと makefile は私にとってまったくなじみのないものなので、どこから始めればよいかまったくわかりません。この問題のデバッグに役立つその他の情報も提供できます。
select.c で定義されている select_lines メソッドは次のとおりです。
select_lines (int type, void *lines, int n, FILE *infile, FILE *outfile)
{
char line[1024];
int i, current = 0, target;
struct entry *e;
LinesA = make_aarray(SelectAlloc, sizeof(struct entry));
/** Scan in the lines **/
switch (type) {
case LINESFILE:
while (scan_int(target, lines) != EOF) {
new_line(target);
}
break;
case LINESLIST:
for (; n > 0; n--) {
target = *((int *)lines)++;
new_line(target);
}
break;
case LINESRANGE:
for (target = ((int *)lines)[0]; target <= ((int *)lines)[1]; target++) {
new_line(target);
}
break;
default: error("select_lines: Bad type");
}
Lines = (struct entry *) LinesA->contents;
/** Sort by txt sequence **/
qsort(Lines, NLines, sizeof(struct entry), txtcmp);
/** Extract lines **/
current = -1;
for (i = 0; i < NLines; i++) {
target = Lines[i].txt;
if (target < current) error("sort failed");
if (current < target) { /* careful: it's possible to select the same line twice */
while (++current < target) {
skip_line(infile);
}
if (scan_line(line, 1024, infile) == EOF) {
fprintf(stderr, "Premature end of text file");
exit(1);
}
}
Lines[i].line = copy_string(line);
}
/** Resort by smp sequence **/
qsort(Lines, NLines, sizeof(struct entry), smpcmp);
/** Output **/
for (i = 0; i < NLines; i++) {
fprintf(outfile, "%s\n", Lines[i].line);
}
}