Skip to content

Commit

Permalink
* Makeconfig: Undo last change. Add asflags-cpu to ASFLAGS in the
Browse files Browse the repository at this point in the history
	same place we add ASFLAGS-config.
  • Loading branch information
Ulrich Drepper committed May 9, 2009
1 parent deb318c commit eb29449
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 14 deletions.
3 changes: 3 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@
* version.h (VERSION): Bump for 2.10 release.
* include/features.h (__GLIBC_MINOR__): Bump to 10.

* Makeconfig: Undo last change. Add asflags-cpu to ASFLAGS in the
same place we add ASFLAGS-config.

2009-05-05 Aurelien Jarno <aurelien@aurel32.net>

[BZ #10128]
Expand Down
15 changes: 1 addition & 14 deletions Makeconfig
Original file line number Diff line number Diff line change
Expand Up @@ -649,17 +649,6 @@ endif # $(+cflags) == ""
# Don't duplicate options if we inherited variables from the parent.
+cflags := $(sort $(+cflags))

# These are the flags given to the compiler to tell it what sort of
# optimization and/or debugging output to do for .S files.
ifndef +asflags
# If `ASFLAGS' was defined, use that.
ifdef ASFLAGS
+asflags := $(ASFLAGS)
endif #ASFLAGS
endif # +asflags

+asflags += $(asflags-cpu)

# These are flags given to the C compiler to tell it to look for
# include files (including ones given in angle brackets) in the parent
# library source directory, in the include directory, and in the
Expand Down Expand Up @@ -691,8 +680,6 @@ override CXXFLAGS = $(c++-sysincludes) \
$(filter-out %frame-pointer,$(+cflags)) $(sysdep-CFLAGS) \
$(CFLAGS-$(suffix $@)) $(CFLAGS-$(<F)) $(CFLAGS-$(@F))

override ASFLAGS = $(+asflags)

# If everything is compiled with -fPIC (implicitly) we must tell this by
# defining the PIC symbol.
ifeq (yes,$(build-pic-default))
Expand Down Expand Up @@ -782,7 +769,7 @@ else
ASFLAGS :=
endif
endif
ASFLAGS += $(ASFLAGS-config)
ASFLAGS += $(ASFLAGS-config) $(asflags-cpu)

ifndef BUILD_CC
BUILD_CC = $(CC)
Expand Down

0 comments on commit eb29449

Please sign in to comment.