Improve build: add <unistd.h> and use -O2 instead of -O3
authorLinus Torvalds <torvalds@ppc970.osdl.org>
Wed, 20 Apr 2005 20:00:08 +0000 (13:00 -0700)
committerLinus Torvalds <torvalds@ppc970.osdl.org>
Wed, 20 Apr 2005 20:00:08 +0000 (13:00 -0700)
(Nobody should use -O3. It just makes bad inlining decisions).

Makefile
cache.h

index cd299f8..a244b27 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -7,7 +7,7 @@
 # BREAK YOUR LOCAL DIFFS! show-diff and anything using it will likely randomly
 # break unless your underlying filesystem supports those sub-second times
 # (my ext3 doesn't).
-CFLAGS=-g -O3 -Wall
+CFLAGS=-g -O2 -Wall
 
 CC=gcc
 AR=ar
diff --git a/cache.h b/cache.h
index eab355d..a67b79e 100644 (file)
--- a/cache.h
+++ b/cache.h
@@ -1,6 +1,7 @@
 #ifndef CACHE_H
 #define CACHE_H
 
+#include <unistd.h>
 #include <stdio.h>
 #include <sys/stat.h>
 #include <fcntl.h>