From: Eric Andersen Date: Fri, 29 Aug 2003 22:52:20 +0000 (-0000) Subject: here is (I hope) a better way to handle this one. I regularly build X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=e71b7cc95c5c77db093a1b91f6009f8d10780942;p=uclinux-h8%2Fuclibc-ng.git here is (I hope) a better way to handle this one. I regularly build debug versions of uClibc with -O0, but libpthread/linuxthreads/spinlock.c will not compile without at least -O1 optimization... --- diff --git a/libpthread/linuxthreads/Makefile b/libpthread/linuxthreads/Makefile index 880fda291..1a3293266 100644 --- a/libpthread/linuxthreads/Makefile +++ b/libpthread/linuxthreads/Makefile @@ -28,7 +28,8 @@ else SYSDEPS_DIR:=$(TARGET_ARCH) endif #This stuff will not compile without at least -O1 -#CFLAGS := $(subst -O0,-O1,$(CFLAGS)) +CFLAGS :=$(CFLAGS:-O0=-O1) + # set up system dependencies include dirs (NOTE: order matters!) PTDIR = $(TOPDIR)libpthread/linuxthreads/