From 531ea42a124e32369c4cf3ea19f341deacf5bfb6 Mon Sep 17 00:00:00 2001 From: simonmar Date: Fri, 13 Oct 2000 09:12:40 +0000 Subject: [PATCH] [project @ 2000-10-13 09:12:40 by simonmar] Disable -split-objs for way 'u'. --- mk/target.mk | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/mk/target.mk b/mk/target.mk index b1d87bb..9e94b82 100644 --- a/mk/target.mk +++ b/mk/target.mk @@ -376,6 +376,9 @@ endef ifneq "$(HS_SRCS)" "" ifeq "$(SplitObjs)" "YES" +# can't split objs in way 'u', so we disable it here +ifneq "$(way)" "u" + SRC_HC_OPTS += -split-objs define BUILD_LIB @@ -404,6 +407,7 @@ extraclean :: $(FIND) $(patsubst %.$(way_)o,%,$(HS_OBJS)) -name '*.$(way_)o' -print | xargs $(RM) __rm_food -rmdir $(patsubst %.$(way_)o,%,$(HS_OBJS)) > /dev/null 2>&1 +endif # $(way) == u endif # $(SplitObjs) endif # $(HS_SRCS) -- 1.7.10.4