Browse Source

Doing an search and replace on CFLAGS can prove dangerous. We don't
do -O0 by default anyways, so leave this disabled for now.

Eric Andersen 22 years ago
parent
commit
79b9c943d3
1 changed files with 1 additions and 1 deletions
  1. 1 1
      libpthread/linuxthreads/Makefile

+ 1 - 1
libpthread/linuxthreads/Makefile

@@ -28,7 +28,7 @@ else
 SYSDEPS_DIR:=$(TARGET_ARCH)
 endif
 #This stuff will not compile without at least -O1
-CFLAGS := $(subst -O0,-O1,$(CFLAGS))
+#CFLAGS := $(subst -O0,-O1,$(CFLAGS))
 
 # set up system dependencies include dirs (NOTE: order matters!)
 PTDIR = $(TOPDIR)libpthread/linuxthreads/