gecko/memory/fallible/moz.build
Mike Hommey 824818ee98 Bug 1126593 - Add a global fallible instance, so that using fallible works directly, everywhere. r=njn
--HG--
rename : memory/mozalloc/fallible.h => memory/fallible/fallible.h
2015-02-02 09:56:13 +09:00

31 lines
1.1 KiB
Python

# -*- Mode: python; c-basic-offset: 4; indent-tabs-mode: nil; tab-width: 40 -*-
# 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/.
EXPORTS.mozilla += [
'fallible.h',
]
Library('fallible')
SOURCES += [
'fallible.cpp',
]
if CONFIG['_MSC_VER']:
# MSVC normally adds linker directives relative to the CRT in a .drectve
# section in .obj files. Then, when linking objects, it adds those
# directives as if they were given as command line arguments. This can
# lead to trying to include link CRTs because different objects are
# compiled with different CRT options (i.e. -MT vs. -MD), and failing.
# The only source in this directory doesn't expose anything that depends
# on a CRT, so it doesn't need to be bound to a specific one.
# Adding the -Zl option makes MSVC not store linker directives in the
# object. This allows to link fallible.obj to binaries independently of
# the CRT they use.
CXXFLAGS += [
'-Zl',
]