Changeset 5846f92 in git


Ignore:
Timestamp:
Feb 3, 2014, 6:51:26 PM (10 years ago)
Author:
Hans Schoenemann <hannes@…>
Branches:
(u'spielwiese', 'fe61d9c35bf7c61f2b6cbf1b56e25e2f08d536cc')
Children:
5543181bcd19bbb2349f9c166de555c76ae56e7da721885d2183da9eb9fa894d0dd185c290cc0e52e9d3c39857e4b2e323b25714d25cd26672ef4498
Parents:
306ebe0f05924b8150eae3d23b9f04306ef21484
Message:
fix: compile debug version of omalloc with -g, otherwise with -O2
Location:
omalloc
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • omalloc/Makefile.am

    r306ebe r5846f92  
    3232
    3333libomalloc_la_LDFLAGS    = -release ${PACKAGE_VERSION}
     34if WANT_DEBUG
     35libomalloc_la_CFLAGS    = -g
     36else !WANT_DEBUG
    3437libomalloc_la_CFLAGS    = -O2
     38endif
    3539
    3640nodist_libomalloc_la_SOURCES = omTables.inc omTables.h mylimits.h
  • omalloc/configure.ac

    r306ebe r5846f92  
    418418with_track=no
    419419fi
     420AM_CONDITIONAL([WANT_DEBUG],[test x"$with_debug" = xyes])
    420421
    421422AC_MSG_CHECKING(whether to have tracking debug functionality)
Note: See TracChangeset for help on using the changeset viewer.