Skip to content
Snippets Groups Projects
Commit 9d07fbc5 authored by Christophe Geuzaine's avatar Christophe Geuzaine
Browse files

Don't optimize Gmsh.tab.o: on many architectures, g++ -O2 generates
assembly code too large to be addressed correctly. This will hopefully
fix the build problems reported on ppc.
parent 8377e742
No related branches found
No related tags found
No related merge requests found
# $Id: Makefile,v 1.64 2004-12-06 04:59:09 geuzaine Exp $
# $Id: Makefile,v 1.65 2004-12-30 04:08:46 geuzaine Exp $
#
# Copyright (C) 1997-2004 C. Geuzaine, J.-F. Remacle
#
......@@ -42,6 +42,11 @@ ${LIB}: ${OBJ}
.cpp.o:
${CXX} ${CFLAGS} -c $<
# Don't optimize Gmsh.tab.o: on many architectures, g++ -O2 generates
# assembly code too large to be addressed correctly
Gmsh.tab.o:
${CXX} ${FLAGS} ${INCLUDE} -c $<
parser:
bison --output Gmsh.tab.cpp -d Gmsh.y
flex -oGmsh.yy.cpp Gmsh.l
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment