From 732b13ed53afdd84051b33eeee60dadf1bb07fba Mon Sep 17 00:00:00 2001 From: Rene Rivera Date: Tue, 4 Nov 2003 06:38:50 +0000 Subject: [PATCH] Remove the -framework option for compiling as it's only needed for linking. [SVN r20629] --- v1/darwin-tools.jam | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/v1/darwin-tools.jam b/v1/darwin-tools.jam index c5d32fe30..0b66eb388 100644 --- a/v1/darwin-tools.jam +++ b/v1/darwin-tools.jam @@ -183,7 +183,7 @@ rule Cc-action actions darwin-Cc-action { - $(.GCC_BIN_DIR)$(.GCC) -c -U$(UNDEFS) -D$(DEFINES) $(CFLAGS) -F$(FRAMEWORKS:D) -framework$(_)$(FRAMEWORKS:D=) -I"$(HDRS)" -I"$(STDHDRS)" -o "$(<)" "$(>)" + $(.GCC_BIN_DIR)$(.GCC) -c -U$(UNDEFS) -D$(DEFINES) $(CFLAGS) -F$(FRAMEWORKS:D) -I"$(HDRS)" -I"$(STDHDRS)" -o "$(<)" "$(>)" } #### C++ #### @@ -195,7 +195,7 @@ rule C++-action actions darwin-C++-action { - $(.GCC_BIN_DIR)$(.GXX) -c -ftemplate-depth-120 -U$(UNDEFS) -D$(DEFINES) $(CFLAGS) $(C++FLAGS) -F$(FRAMEWORKS:D) -framework$(_)$(FRAMEWORKS:D=) -I"$(HDRS)" -I"$(STDHDRS)" -o "$(<)" "$(>)" + $(.GCC_BIN_DIR)$(.GXX) -c -ftemplate-depth-120 -U$(UNDEFS) -D$(DEFINES) $(CFLAGS) $(C++FLAGS) -F$(FRAMEWORKS:D) -I"$(HDRS)" -I"$(STDHDRS)" -o "$(<)" "$(>)" } #### Archive ####