2013-04-01 11:36:59 -07:00
|
|
|
# -*- Mode: python; c-basic-offset: 4; indent-tabs-mode: nil; tab-width: 40 -*-
|
2013-02-25 12:47:17 -08:00
|
|
|
# vim: set filetype=python:
|
|
|
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
|
2013-11-21 06:46:32 -08:00
|
|
|
SOURCES += [
|
2013-10-05 03:18:36 -07:00
|
|
|
'src/src/arena.c',
|
|
|
|
'src/src/atomic.c',
|
|
|
|
'src/src/base.c',
|
|
|
|
'src/src/bitmap.c',
|
|
|
|
'src/src/chunk.c',
|
|
|
|
'src/src/chunk_dss.c',
|
|
|
|
'src/src/chunk_mmap.c',
|
|
|
|
'src/src/ckh.c',
|
2013-11-21 11:28:52 -08:00
|
|
|
'src/src/ctl.c',
|
2013-10-05 03:18:36 -07:00
|
|
|
'src/src/extent.c',
|
|
|
|
'src/src/hash.c',
|
|
|
|
'src/src/huge.c',
|
|
|
|
'src/src/jemalloc.c',
|
|
|
|
'src/src/mb.c',
|
|
|
|
'src/src/mutex.c',
|
|
|
|
'src/src/prof.c',
|
|
|
|
'src/src/quarantine.c',
|
|
|
|
'src/src/rtree.c',
|
|
|
|
'src/src/stats.c',
|
|
|
|
'src/src/tcache.c',
|
|
|
|
'src/src/tsd.c',
|
|
|
|
'src/src/util.c',
|
2013-06-04 08:08:44 -07:00
|
|
|
]
|
|
|
|
|
|
|
|
# Only OSX needs the zone allocation implementation,
|
|
|
|
# but only if replace-malloc is not enabled.
|
|
|
|
if CONFIG['OS_TARGET'] == 'Darwin' and not CONFIG['MOZ_REPLACE_MALLOC']:
|
2013-11-21 11:28:52 -08:00
|
|
|
SOURCES += [
|
2013-10-05 03:18:36 -07:00
|
|
|
'src/src/zone.c',
|
2013-06-04 08:08:44 -07:00
|
|
|
]
|
2013-06-17 12:21:01 -07:00
|
|
|
|
|
|
|
LIBRARY_NAME = 'jemalloc'
|
|
|
|
|
2013-10-24 10:51:00 -07:00
|
|
|
FORCE_STATIC_LIB = True
|
2013-11-27 05:55:07 -08:00
|
|
|
|
|
|
|
if CONFIG['_MSC_VER']:
|
|
|
|
DEFINES['DLLEXPORT'] = True
|
|
|
|
|
|
|
|
if CONFIG['OS_TARGET'] == 'Linux':
|
|
|
|
# For mremap
|
|
|
|
DEFINES['_GNU_SOURCE'] = True
|
|
|
|
|
|
|
|
DEFINES['abort'] = 'moz_abort'
|