1

簡単な質問があります。

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

#############################################################################
#
#   Makefile for building the Long Range Navigator program
#
#############################################################################

PC = true
#PC = false

PWD       := $(shell pwd)

#GUMSTIX_BUILDROOT   = /home/irmabot/gumstix-buildroot
#BUILD_ARM      = $(GUMSTIX_BUILDROOT)/build_arm_nofpu
#CROSS_COMPILE      = $(BUILD_ARM)/staging_dir/bin/arm-linux-
#BUILD_ARM           = $(wildcard $(GUMSTIX_BUILDROOT)/build_arm*)
#CROSS_COMPILE       = $(patsubst %g++, %, $(wildcard $(BUILD_ARM)/staging_dir/bin/arm-linux-uclibc*-g++))
#CROSS_COMPILE = /home/irmabot/gumstix/gumstix-oe/tmp/cross/arm-angstrom-linux-gnueabi/bin/
CROSS_COMPILE = /home/babbage/marbotRelease/src/processors/longRangeNavigator/arm/arm-angstrom-linux-gnueabi/bin/
COMMON          = ../../common
SHARED          = Shared
I32 = /usr/include/x86_64-linux-gnu/c++/4.7/bits/


#ifeq ($(strip $(CROSS_COMPILE)),)
#   $(error Unable to detect C++ Cross Compiler)
#endif

vpath %.c  %.cpp $(COMMON) $(SHARED)

CPPFLAGS +=  -I . -I $(COMMON) -I $(SHARED) -I$(I32)
CFLAGS   += -Wall -I$(I32)

ifeq ($(PC), true)
CPPFLAGS += -DPC -m32 
CFLAGS   += -DPC -m32    
CC = g++
CXX = g++

OBJS = longRangeNavigator.o GALRN.o InternalMap.o MandamiFuzzyModel.o     MembershipFunctions_1D.o Utils.o ../../common/configFile/configFile.o 

else                # else
TARGET_ARCH=-Os -march=armv5te -mtune=xscale -Wa,-mcpu=xscale
CC = $(CROSS_COMPILE)g++
CXX = $(CROSS_COMPILE)g++

OBJS = \
   longRangeNavigator.o         \
    GALRN.o                         \
    InternalMap.o                   \
    MandamiFuzzyModel.o         \
    MembershipFunctions_1D.o    \
    Utils.o                         \
    ../../common/configFile/configFile.o


endif               # endif 

all: longRangeNavigator

longRangeNavigator: $(OBJS)

clean:
    rm -rf *.o *~ core .depend .*.cmd *.ko *.mod.c .tmp_versions longRangeNavigator

depend .depend dep:
    @echo "Creating dependencies ..."
    $(CXX) $(CFLAGS) $(CPPFLAGS) -M  *.cpp  > .depend

FORCE:

.PHONY: FORCE

PREPROCESS.c = $(CXX) $(CPPFLAGS) $(TARGET_ARCH) -E -Wp,-C,-dD,-dI

%.pp : %.c  FORCE
    $(PREPROCESS.c) $< > $@

ifeq ($(strip $(filter clean, $(MAKECMDGOALS))),)
-include .depend
endif

私の問題は、amd64 マシンで 32 ビット コードをコンパイルしていることです。これが出力です

Creating dependencies ...
g++ -Wall -I/usr/include/x86_64-linux-gnu/c++/4.7/bits/ -DPC -m32 -I . -I ../../common -I Shared -I/usr/include/x86_64-linux-gnu/c++/4.7/bits/ -DPC -m32  -M  *.cpp  > .depend
g++  -I . -I ../../common -I Shared -I/usr/include/x86_64-linux-gnu/c++/4.7/bits/ -DPC -m32   -c -o longRangeNavigator.o longRangeNavigator.cpp
g++  -I . -I ../../common -I Shared -I/usr/include/x86_64-linux-gnu/c++/4.7/bits/ -DPC -m32   -c -o GALRN.o GALRN.cpp
g++  -I . -I ../../common -I Shared -I/usr/include/x86_64-linux-gnu/c++/4.7/bits/ -DPC -m32   -c -o InternalMap.o InternalMap.cpp
g++  -I . -I ../../common -I Shared -I/usr/include/x86_64-linux-gnu/c++/4.7/bits/ -DPC -m32   -c -o MandamiFuzzyModel.o MandamiFuzzyModel.cpp
g++  -I . -I ../../common -I Shared -I/usr/include/x86_64-linux-gnu/c++/4.7/bits/ -DPC -m32   -c -o MembershipFunctions_1D.o MembershipFunctions_1D.cpp
g++  -I . -I ../../common -I Shared -I/usr/include/x86_64-linux-gnu/c++/4.7/bits/ -DPC -m32   -c -o Utils.o Utils.cpp
g++   longRangeNavigator.o GALRN.o InternalMap.o MandamiFuzzyModel.o MembershipFunctions_1D.o Utils.o ../../common/configFile/configFile.o   -o longRangeNavigator
/usr/bin/ld: Warning: size of symbol `_ZNSt8_Rb_treeISsSt4pairIKSsSsESt10_Select1stIS2_ESt4lessISsESaIS2_EED1Ev' changed from 75 in longRangeNavigator.o to 81 in ../../common/configFile/configFile.o
/usr/bin/ld: Warning: size of symbol `_ZNSt4pairIKSsSsED1Ev' changed from 63 in longRangeNavigator.o to 69 in ../../common/configFile/configFile.o
/usr/bin/ld: i386 architecture of input file `longRangeNavigator.o' is incompatible with i386:x86-64 output
/usr/bin/ld: i386 architecture of input file `GALRN.o' is incompatible with i386:x86-64 output
/usr/bin/ld: i386 architecture of input file `InternalMap.o' is incompatible with i386:x86-64 output
/usr/bin/ld: i386 architecture of input file `MandamiFuzzyModel.o' is incompatible with i386:x86-64 

ですから、明らかに問題はここにあります。ここでは、32 ビット コードを 64 ビット リンカとリンクしています。

g++   longRangeNavigator.o GALRN.o InternalMap.o MandamiFuzzyModel.o MembershipFunctions_1D.o Utils.o ../../common/configFile/configFile.o   -o longRangeNavigator

このアクションが実行される Makefile niether を完全には理解していません。-m32 パラメータを追加したいだけです。

4

2 に答える 2

0

-m32リンカーにも渡す必要があります。これを行う 1 つの方法は、次の行を Makefile に追加することです。

LDFLAGS += -m32

LDFLAGS は組み込み変数であり、リンカーが暗黙のルールによって呼び出されるたびに値がリンカー コマンドに追加されます。

于 2013-10-28T22:20:25.563 に答える
0

yum または apt がある場合は、 gcc 32 をインストールして使用できます。または64または32で両方を使用してください。

于 2013-10-28T22:06:17.690 に答える