[ODE] Makefile for Gcc Shared Objects included...
Dominique Louis
Dominique at SavageSoftware.com.au
Sun Apr 25 21:32:34 MST 2004
Hi all,
After by trials and tribulations of creating shared objects under
Linux ( thanks again to all who helped and hinted ). I have created (
hacked is probably a more accurate term ) the attached makefile whose
name is "makefile.unix-so-gcc". So theortically assigning "unix-so-gcc"
to the PLATFORM variable in the user-config file, should then allow one
to create a usable Shared Object.
This seems to work for me, but I have no idea if this works in all
situations. Could someone with some decent unix knowledge give it a
quick looking over and if it is OK, add it to CVS.
Thanks,
Dominique
http://www.DelphiGamer.com := go on, write a game instead;
-------------- next part --------------
THIS_DIR1=./
THIS_DIR2=./
DEL_CMD=rm -f
CC=g++
OBJ=.o
C_FLAGS=-c -Wall -fno-rtti -fno-exceptions -Wall
C_INC=-I
C_OUT=-o
C_EXEOUT=-o
C_DEF=-D
C_OPT=-O
AR=ar rc
RANLIB=
LIB_PREFIX=lib
LIB_SUFFIX=.a
LINK_OPENGL=-L/usr/X11R6/lib -L/usr/X11/lib -L/usr/lib/X11R6 -L/usr/lib/X11 -lX11 -lGL -lGLU
LINK_MATH=-lm
ifeq ($(BUILD),release)
OPT=2
C_FLAGS+=-fomit-frame-pointer -ffast-math
endif
ifeq ($(BUILD),debug)
OPT=0
C_FLAGS+=-g
endif
# some other possible flags:
# -malign-double -mpentiumpro -march=pentiumpro
ODE_LIB_AR_RULE=$(CC) -shared -o libode-$(PRECISION).so
More information about the ODE
mailing list