From: Brian Demsky <bdemsky@uci.edu>
Date: Wed, 3 Oct 2012 10:03:02 +0000 (-0700)
Subject: missing change
X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=6d8f169552ab07df876bd11725162ac602c5f4fe;p=cdsspec-compiler.git

missing change
---

diff --git a/common.mk b/common.mk
index 009ae63..9fe9f09 100644
--- a/common.mk
+++ b/common.mk
@@ -8,7 +8,7 @@ UNAME = $(shell uname)
 LIB_NAME = model
 LIB_SO = lib$(LIB_NAME).so
 
-CPPFLAGS += -Wall -g -O0
+CPPFLAGS += -Wall -g -O3
 
 # Mac OSX options
 ifeq ($(UNAME), Darwin)
diff --git a/mymemory.cc b/mymemory.cc
index 6caf27a..6fd7c70 100644
--- a/mymemory.cc
+++ b/mymemory.cc
@@ -5,6 +5,7 @@
 #include <dlfcn.h>
 #include <unistd.h>
 #include <cstring>
+#include "common.h"
 #define REQUESTS_BEFORE_ALLOC 1024
 size_t allocatedReqs[ REQUESTS_BEFORE_ALLOC ] = { 0 };
 int nextRequest = 0;