Skip to content

Commit b3c5cb8

Browse files
committed
Use a more recent ODE revision, to avoid crosscompile errors (and just to keep things updated).
1 parent 541b98e commit b3c5cb8

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

build_setup.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -302,7 +302,7 @@ function otherpackages {
302302
#fi
303303

304304
#generic crap. much of this is needed to set up and decompress dependancies and stuff.
305-
debianpackages subversion make automake libtool p7zip-full zip ca-certificates || otherpackages z7 make svn || exit
305+
debianpackages git make automake libtool p7zip-full zip ca-certificates || otherpackages z7 make git || exit
306306

307307
if [ "$BUILD_LINUXx86" == "y" ]; then
308308
#for building linux targets

plugins/Makefile

+3-3
Original file line numberDiff line numberDiff line change
@@ -249,16 +249,16 @@ ODE_ARCH=$(FTE_TARGET)
249249
ifeq ($(ODE_ARCH),)
250250
ODE_ARCH=unknown
251251
endif
252-
ODE_VER=0.16.2
252+
ODE_VER=0.16.5
253253
ODE_URL=https://bitbucket.org/odedevs/ode/downloads/ode-$(ODE_VER).tar.gz
254-
ODE_BASE=$(OUT_DIR)/../ode-$(ODE_VER)_$(ODE_ARCH)/
254+
ODE_BASE=$(ARCHLIBS)/ode-$(ODE_VER)_$(ODE_ARCH)/
255255
ODE_LIB=$(ODE_BASE)ode-$(ODE_VER)/ode/src/.libs/libode.a
256256
$(OUT_DIR)/../ode-$(ODE_VER).tar.gz:
257257
mkdir -p $(ODE_BASE)
258258
cd $(OUT_DIR)/.. && wget -N $(ODE_URL)
259259
$(ODE_LIB): $(OUT_DIR)/../ode-$(ODE_VER).tar.gz
260260
mkdir -p $(ODE_BASE) && cd $(ODE_BASE) && tar xvfz $<
261-
cd $(ODE_BASE)ode-$(ODE_VER)/ && ./bootstrap && ./configure --enable-double-precision --disable-demos --without-x --with-pic CC="$(CC) $(PLUG_CXXFLAGS)" CXX="$(CC) $(PLUG_CXXFLAGS)" --host=`$(CC) -dumpmachine` && make
261+
cd $(ODE_BASE)ode-$(ODE_VER)/ && ./bootstrap && ./configure --enable-double-precision --disable-demos --without-x --with-pic CC="$(CC) $(PLUG_CXXFLAGS)" CXX="$(CC) $(PLUG_CXXFLAGS)" --host=`$(CC) -dumpmachine` && $(MAKE)
262262

263263
ODE_FILES=../engine/common/com_phys_ode.c ../engine/common/mathlib.c plugin.c $(ODE_LIB)
264264
$(PLUG_PREFIX)ode$(PLUG_NATIVE_EXT): $(ODE_FILES)

0 commit comments

Comments
 (0)