Skip to content
Snippets Groups Projects
Commit d2a67880 authored by Brad Barber's avatar Brad Barber
Browse files

Add -fno-strict-aliasing to Makefile

parent 3ae8c444
No related branches found
No related tags found
No related merge requests found
......@@ -42,9 +42,9 @@ PRINTC = enscript -2r
# PRINTC = lpr
#for Gnu's gcc compiler -O2 for optimization, -g for debugging, -Wall for check
#
# -fno-strict-aliasing not needed for gcc 4.4+ (segfault in qset.c)
CC = gcc
CCOPTS1 = -O2 -ansi
CCOPTS1 = -O2 -ansi -fno-strict-aliasing
# for Sun's cc compiler, -fast or O2 for optimization, -g for debugging, -Xc for ANSI
#CC = cc
......
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