Skip to content
Snippets Groups Projects
Commit 1f111029 authored by Douglas Guptill's avatar Douglas Guptill
Browse files

tweaks

parent c0bc5c8a
No related branches found
No related tags found
No related merge requests found
...@@ -45,19 +45,19 @@ FLG64=-b64 ...@@ -45,19 +45,19 @@ FLG64=-b64
# -qflttrap=overflow:underflow:zerodivide:invalid:NANQ:enable # -qflttrap=overflow:underflow:zerodivide:invalid:NANQ:enable
# take -qextchk out for the final compile # take -qextchk out for the final compile
# change -qhalt=e to -qhalt=s, after verifying that the errors # Need -qhalt=s, else the compiler stops on the multiple errors from MPI calls.
# all come from MPI calls. # For no optimzation, use "-O0" and remove "-qstrict"
FFLAGS = -g -O2 -qstrict -Q $(BITS) $(FLG64) -qarch=auto -qtune=auto \ FFLAGS = -g -O2 -qstrict -Q $(BITS) $(FLG64) -qarch=auto -qtune=auto \
-qmaxmem=-1 \ -qmaxmem=-1 \
-qcheck -qwarn64 \ -qcheck -qwarn64 \
-qfloat=nomaf:nofold:norsqrt:strictnmaf \ -qfloat=nomaf:nofold:norsqrt:strictnmaf \
-qflttrap=overflow:underflow:zerodivide:invalid:NANQ:enable \ -qflttrap=overflow:underflow:zerodivide:invalid:NANQ:enable \
-qsigtrap \ -qsigtrap -qnosave -qhalt=s -qextchk
-qhalt=e -qextchk
# Define C compiler flags............................. # Define C compiler flags.............................
# #
# take -qextchk out for the final compile # take -qextchk out for the final compile
# For no optimzation, remove the "-O" option and remove "-qstrict"
CFLAGS = -g -O2 -qstrict -Q $(BITS) $(FLG64) -qarch=auto -qtune=auto \ CFLAGS = -g -O2 -qstrict -Q $(BITS) $(FLG64) -qarch=auto -qtune=auto \
-qcheck -qwarn64 \ -qcheck -qwarn64 \
-qfloat=nomaf:nofold:norsqrt \ -qfloat=nomaf:nofold:norsqrt \
......
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