-
Notifications
You must be signed in to change notification settings - Fork 68
Building Options
Robert West edited this page Apr 21, 2021
·
2 revisions
The HotSpot Makefile supports several build options that you specify when running make. To use one or more of the build options, instead of simply running make, you run:
make <option1>=<value> <option2>=<value> ... <optionN>=<value>.
Here are the build options currently supported:
-
SUPERLU=0orSUPERLU=1: This controls whether or not HotSpot links to the SuperLU library and takes advantage of it to improve simulation times. The default value is 0. -
DEBUG=0,DEBUG=1, orDEBUG=2: Specifying a higher level ofDEBUGcompiles HotSpot with more flags to support debugging, such as-ggdband-Wall. This does not change HotSpot's runtime behavior. The default value is 0. -
VERBOSE=0,VERBOSE=1,VERBOSE=2: Specifying a higher number forVERBOSEcauses HotSpot to print more information at runtime. The default value is 0, which should be fine for most users.