fix big/little endian
This commit is contained in:
parent
564aac603d
commit
775684a5ed
@ -9,6 +9,11 @@ LIBGLIB12_CAT:=zcat
|
||||
LIBGLIB12_DIR:=$(BUILD_DIR)/glib-1.2.10
|
||||
LIBGLIB12_BINARY:=libglib.a
|
||||
|
||||
ifeq ($(BR2_ENDIAN),"BIG")
|
||||
LIBGLIB12_BE:=yes
|
||||
else
|
||||
LIBGLIB12_BE:=no
|
||||
endif
|
||||
|
||||
$(DL_DIR)/$(LIBGLIB12_SOURCE):
|
||||
$(WGET) -P $(DL_DIR) $(LIBGLIB12_SITE)/$(LIBGLIB12_SOURCE)
|
||||
@ -24,6 +29,7 @@ $(LIBGLIB12_DIR)/.unpacked: $(DL_DIR)/$(LIBGLIB12_SOURCE)
|
||||
$(LIBGLIB12_DIR)/.configured: $(LIBGLIB12_DIR)/.unpacked
|
||||
(cd $(LIBGLIB12_DIR); rm -rf config.cache; \
|
||||
$(TARGET_CONFIGURE_OPTS) \
|
||||
ac_cv_c_bigendian=$(LIBGLIB12_BE) \
|
||||
./configure \
|
||||
--host=$(REAL_GNU_TARGET_NAME) \
|
||||
--build=$(GNU_HOST_NAME) \
|
||||
|
Loading…
Reference in New Issue
Block a user