diff options
author | Ulrich Drepper <drepper@redhat.com> | 2005-08-28 16:18:57 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2005-08-28 16:18:57 +0000 |
commit | 3d413d4b05005bbd4c384b60e3797caf57f120d5 (patch) | |
tree | ae6da630ac134df6f899ad827fb62d1ac46f4c2f /libasm | |
parent | 28f5be122f9fc70056082b63db119b256bc029c4 (diff) | |
download | android_external_elfutils-3d413d4b05005bbd4c384b60e3797caf57f120d5.tar.gz android_external_elfutils-3d413d4b05005bbd4c384b60e3797caf57f120d5.tar.bz2 android_external_elfutils-3d413d4b05005bbd4c384b60e3797caf57f120d5.zip |
Implement --enable-gconv option for configure.
Diffstat (limited to 'libasm')
-rw-r--r-- | libasm/ChangeLog | 4 | ||||
-rw-r--r-- | libasm/Makefile.am | 10 |
2 files changed, 9 insertions, 5 deletions
diff --git a/libasm/ChangeLog b/libasm/ChangeLog index 6adeef1e..c9a26b9a 100644 --- a/libasm/ChangeLog +++ b/libasm/ChangeLog @@ -1,3 +1,7 @@ +2005-08-28 Ulrich Drepper <drepper@redhat.com> + + * Makefile.am: Use $(LINK) not $(CC) when creating DSO. + 2005-08-02 Ulrich Drepper <drepper@redhat.com> * Makefile.am (AM_CFLAGS): Add -std=gnu99. diff --git a/libasm/Makefile.am b/libasm/Makefile.am index 7802a5c0..172143c3 100644 --- a/libasm/Makefile.am +++ b/libasm/Makefile.am @@ -51,10 +51,10 @@ am_libasm_pic_a_OBJECTS = $(libasm_a_SOURCES:.c=.os) libasm_so_SOURCES = libasm.so: libasm_pic.a libasm.map - $(CC) -shared -o $@ -Wl,--whole-archive,$<,--no-whole-archive \ - -Wl,--version-script,$(srcdir)/libasm.map,--no-undefined \ - -Wl,--soname,$@.$(VERSION) \ - ../libebl/libebl.a ../libelf/libelf.so + $(LINK) -shared -o $@ -Wl,--whole-archive,$<,--no-whole-archive \ + -Wl,--version-script,$(srcdir)/libasm.map,--no-undefined \ + -Wl,--soname,$@.$(VERSION) \ + ../libebl/libebl.a ../libelf/libelf.so if readelf -d $@ | fgrep -q TEXTREL; then exit 1; fi ln -fs $@ $@.$(VERSION) @@ -83,4 +83,4 @@ endif noinst_HEADERS = libasmP.h symbolhash.h EXTRA_DIST = libasm.map -CLEANFILES = $(am_libasm_pic_a_OBJECTS) +CLEANFILES = $(am_libasm_pic_a_OBJECTS) *.gcno *.gcda |