diff options
author | Christopher Faylor <me@cgf.cx> | 2005-06-05 04:15:16 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2005-06-05 04:15:16 +0000 |
commit | 6eb501439a303d9604ce02f72bcc71aec98109e1 (patch) | |
tree | 2cedfe026b477cd5507d3aa66957f45a1e406549 | |
parent | 61496ed68038c4baa13937488b8c141501b0c0c4 (diff) | |
download | cygnal-6eb501439a303d9604ce02f72bcc71aec98109e1.tar.gz cygnal-6eb501439a303d9604ce02f72bcc71aec98109e1.tar.bz2 cygnal-6eb501439a303d9604ce02f72bcc71aec98109e1.zip |
* Makefile.in: Build sync.o with -fomit-frame-pointer and -O3.
-rw-r--r-- | winsup/cygwin/ChangeLog | 4 | ||||
-rw-r--r-- | winsup/cygwin/Makefile.in | 1 |
2 files changed, 5 insertions, 0 deletions
diff --git a/winsup/cygwin/ChangeLog b/winsup/cygwin/ChangeLog index 8991b6466..901030a7c 100644 --- a/winsup/cygwin/ChangeLog +++ b/winsup/cygwin/ChangeLog @@ -1,5 +1,9 @@ 2005-06-05 Christopher Faylor <cgf@timesys.com> + * Makefile.in: Build sync.o with -fomit-frame-pointer and -O3. + +2005-06-05 Christopher Faylor <cgf@timesys.com> + * sync.cc (muto::acquire): Remove unneeded brackets and fix whitespace. 2005-06-04 Christopher Faylor <cgf@timesys.com> diff --git a/winsup/cygwin/Makefile.in b/winsup/cygwin/Makefile.in index b58cf8173..27c8775f1 100644 --- a/winsup/cygwin/Makefile.in +++ b/winsup/cygwin/Makefile.in @@ -262,6 +262,7 @@ regerror_CFLAGS=-fomit-frame-pointer regexec_CFLAGS=-fomit-frame-pointer regfree_CFLAGS=-fomit-frame-pointer shared_CFLAGS:=-fomit-frame-pointer +sync_CFLAGS:=-fomit-frame-pointer -O3 smallprint_CFLAGS:=-fomit-frame-pointer syscalls_CFLAGS:=-fomit-frame-pointer sysconf_CFLAGS:=-fomit-frame-pointer |