Skip to content
Snippets Groups Projects
Commit e2c0144a authored by wieners's avatar wieners
Browse files

OPTIM flag

[[Imported from SVN: r6023]]
parent 59133e17
No related branches found
No related tags found
No related merge requests found
# this file is for internal ug configuration. don't change it!
UG_OFLAGS = $(ARCH_NOOPTIM)
# this file is for internal ug configuration. don't change it!
UG_OFLAGS = $(ARCH_OPTIM)
......@@ -37,6 +37,9 @@ include $(UGROOT)/configs/mk.dom.$(DOM_MODULE)
# include macro definitions for debugging
include $(UGROOT)/configs/mk.debug.$(DEBUG_MODE)
# include macro definitions for debugging
include $(UGROOT)/configs/mk.optim.$(OPTIM_MODE)
# include macro definitions for netgen
include $(UGROOT)/configs/mk.netgen.$(NETGEN)
......@@ -58,7 +61,7 @@ include $(UGROOT)/configs/mk.gui.$(GUI)
# construct new macro definitions from given ones
UG_CFLAGS = -c -D_$(DIM) -D$(ARCH_TYPE) $(UGDEBUG_CFLAGS) \
$(ARCH_CFLAGS) $(PPIF_CFLAGS) $(MODEL_CFLAGS) \
$(ARCH_CFLAGS) $(UG_OFLAGS) $(PPIF_CFLAGS) $(MODEL_CFLAGS) \
$(ARCH_XINCLUDES) $(ENV_CFLAGS) \
$(RIF_CFLAGS) $(CHACO_CFLAGS) \
$(NETGEN_CFLAGS) $(COVISE_CFLAGS) $(GRAPE_CFLAGS) \
......
......@@ -26,7 +26,7 @@
# - for changing architecture dependent compile and link
# flags (e.g., -O2 or -g) edit macro definition file
# in $UGROOT/arch/$ARCH/mk.arch.
ARCH = HP
ARCH = SGI
# edit MODEL to set the basic programming model
......@@ -92,7 +92,7 @@ NETGEN = OFF
# edit REMOTE_IF to use the ugd/rif remote ug interface
# - choose one ON or OFF
REMOTE_IF = OFF
IF = S
IF = X
# edit GUI in order to use gui library
......@@ -109,6 +109,12 @@ DOM_MODULE = STD_DOMAIN
# - choose one of ON or OFF
DEBUG_MODE = ON
# edit OPTIM_MODE for compiling
# - choose one of ON or OFF
OPTIM_MODE = ON
# edit CHACO in order to use Chaco partitioning library (ModelP only!)
# - choose one of ON or OFF
CHACO = OFF
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment