diff options
author | Eric Andersen <andersen@codepoet.org> | 2004-12-22 21:34:27 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2004-12-22 21:34:27 +0000 |
commit | f8e6aa06ffb1897b87f4d90545e8ca5b3d0cdb9a (patch) | |
tree | 2611d23c8bdd8c0191e6b32cb0e074826293cc23 /ldso | |
parent | 6ae64d25832babd791a3991c34f23c90fd4966ae (diff) |
Patch from Peter S. Mazinger:
Add UCLIBC_BUILD_NOEXECSTACK support.
Diffstat (limited to 'ldso')
-rw-r--r-- | ldso/ldso/Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/ldso/ldso/Makefile b/ldso/ldso/Makefile index 69990b772..2f90adedb 100644 --- a/ldso/ldso/Makefile +++ b/ldso/ldso/Makefile @@ -23,6 +23,9 @@ LDSO_FULLNAME=ld-uClibc-$(MAJOR_VERSION).$(MINOR_VERSION).$(SUBLEVEL).so # reset to initial (disabling predefined CFLAGS) ASFLAGS= +ifeq ($(UCLIBC_BUILD_NOEXECSTACK),y) +ASFLAGS+=$(check_as_noexecstack) +endif XXFLAGS=$(XWARNINGS) $(SSP_DISABLE_FLAGS) ifeq ($(DODEBUG),y) |