diff options
author | Patrick McDermott <patrick.mcdermott@libiquity.com> | 2019-07-06 16:24:43 (EDT) |
---|---|---|
committer | Patrick McDermott <patrick.mcdermott@libiquity.com> | 2019-07-06 16:24:43 (EDT) |
commit | edbfaf863ca446ab4fc623bec288e6beee00bbce (patch) | |
tree | b2d523675219629d539a74c087c61dd851414a61 | |
parent | b6608dda9c09050e1bb9f8395f440090bcd07356 (diff) |
build: Add -g to CFLAGS (upstream --with-debug doesn't)
-rwxr-xr-x | build | 5 | ||||
-rw-r--r-- | changelog | 7 |
2 files changed, 10 insertions, 2 deletions
@@ -5,6 +5,7 @@ include ../source.mk builddir = obj_$$(printf '%s' $@ | sed 's/^[^_]*_//') abi_ver = $$(printf '%s\n' '$(OPK_SOURCE_VERSION_UPSTREAM)' | sed 's/[.].*//') legacy_abi_ver = $$(($(abi_ver) - 1)) +CFLAGS = -Os -g common_opts = \ --without-ada \ --without-tests \ @@ -13,7 +14,7 @@ common_opts = \ --with-install-prefix="$${PWD}/dest" \ --with-shared \ --with-cxx-shared \ - --with-debug \ + --without-debug \ --without-profile \ --with-termlib=tinfo \ --with-ticlib=tic \ @@ -38,7 +39,7 @@ nop: @: build_ncurses build_ncursesw build_ncurses_legacy build_ncursesw_legacy: - oh-autoconfigure -B $(builddir) -- $($@_opts) + CFLAGS='$(CFLAGS)' oh-autoconfigure -B $(builddir) -- $($@_opts) oh-autobuild -B $(builddir) touch $@ @@ -1,3 +1,10 @@ +ncurses (6.1+20190630-2) trunk + + * ncurses-dbg: Actually include debugging symbols (normally always excluded + from the shared libraries by upstream). + + -- Patrick McDermott <patrick.mcdermott@libiquity.com> Sat, 06 Jul 2019 16:24:35 -0400 + ncurses (6.1+20190630-1) trunk * New upstream version. |