2

我无法将我的 make 文件用于我在 linux 环境中编写的程序。该程序是使用我的教授给我的 bitmapImage.h 和 bitmapImage.so 的蕨类分形。每当我尝试运行 make 文件时,都会收到一长串错误,主要是:

    make
g++    -c -o fern.o fern.cpp
g++    -c -o fernType.o fernType.cpp
g++ -m32 -o fern fern.o fernType.o bitmapImage.so
/usr/bin/ld: cannot find crt1.o: No such file or directory
/usr/bin/ld: cannot find crti.o: No such file or directory
/usr/bin/ld: skipping incompatible /usr/lib/gcc/x86_64-linux-gnu/4.6/libstdc++.so when searching for -lstdc++
/usr/bin/ld: skipping incompatible /usr/lib/gcc/x86_64-linux-gnu/4.6/libstdc++.a when searching for -lstdc++
/usr/bin/ld: cannot find -lstdc++
/usr/bin/ld: cannot find -lm
/usr/bin/ld: skipping incompatible /usr/lib/gcc/x86_64-linux-gnu/4.6/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: cannot find -lgcc_s
/usr/bin/ld: skipping incompatible /usr/lib/gcc/x86_64-linux-gnu/4.6/libgcc.a when searching for -lgcc
/usr/bin/ld: cannot find -lgcc
/usr/bin/ld: cannot find -lc
/usr/bin/ld: skipping incompatible /usr/lib/gcc/x86_64-linux-gnu/4.6/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: cannot find -lgcc_s
/usr/bin/ld: skipping incompatible /usr/lib/gcc/x86_64-linux-gnu/4.6/libgcc.a when searching for -lgcc
/usr/bin/ld: cannot find -lgcc
/usr/bin/ld: cannot find crtn.o: No such file or directory
collect2: ld returned 1 exit status
make: *** [spiro] Error 1

我的猜测是 bitmapImage.so 是为 32 位系统设计的,但我的虚拟机 ubuntu 运行 64 位。我该如何解决这个问题,以便我可以编译我的程序?谢谢!

编辑:更新了我的旧帖子以显示我得到的当前错误

生成文件:

# Make file for spirograph program

## note, uses bitmapImage shared object file (library).

OBJS = fern.o fernType.o
CC  = g++ -m32
DEPS1 = fernType.h
DEPS2 = bitmapImage.h

all: spiro

spiro: $(OBJS)
    $(CC) -m32 -o fern $(OBJS) bitmapImage.so

spiro.o:    fern.cpp $(DEPS1)
    $(CC) -m32 -c fern.cpp

spiroType.o:    fernType.cpp $(DEPS1) $(DEPS2)
    $(CC) -m32 -c fernType.cpp

# -----
# clean by removing object files.

clean:
    rm  $(OBJS)
4

3 回答 3

5

-m32选项添加到您的编译行中,这会强制将所有内容编译为 32 位地址空间。(它仍将在 64 位系统上运行。)

于 2012-10-16T22:38:26.550 回答
0

是的,这正是问题所在——您不能将 32 位目标文件与 64 位目标文件链接起来。您需要:

  • 在 32 位机器(真实或虚拟)上编译,
  • 向您的教授索要 64 位库,或
  • 向库索取源代码,以便您自己编译
于 2012-10-16T22:36:05.583 回答
0
  1. 用于file查看共享库是否确实是 32 位的。
  2. 如果是,您将不得不以某种方式获取它的 64 位副本。
于 2012-10-16T22:36:33.337 回答