~ubuntu-branches/ubuntu/saucy/nspr/saucy-updates

« back to all changes in this revision

Viewing changes to mozilla/nsprpub/config/config.mk

  • Committer: Package Import Robot
  • Author(s): Timo Aaltonen
  • Date: 2012-11-27 17:39:22 UTC
  • mfrom: (1.1.15) (27.1.1 raring-proposed)
  • Revision ID: package-import@ubuntu.com-20121127173922-1zfbtwmy1vczqwxq
Tags: 2:4.9.3-1ubuntu1
* Merge from Debian unstable.  Remaining changes:
  - rules: Enable Thumb2 build on armel, armhf.
  - control: Change Vcs-* to XS-Debian-Vcs-*.
  - control: Add conflicts to evolution-documentation-*,
    language-support-translation-*.
  - control: Add Breaks: evolution-plugins.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#! gmake
2
2
3
 
# ***** BEGIN LICENSE BLOCK *****
4
 
# Version: MPL 1.1/GPL 2.0/LGPL 2.1
5
 
#
6
 
# The contents of this file are subject to the Mozilla Public License Version
7
 
# 1.1 (the "License"); you may not use this file except in compliance with
8
 
# the License. You may obtain a copy of the License at
9
 
# http://www.mozilla.org/MPL/
10
 
#
11
 
# Software distributed under the License is distributed on an "AS IS" basis,
12
 
# WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
13
 
# for the specific language governing rights and limitations under the
14
 
# License.
15
 
#
16
 
# The Original Code is the Netscape Portable Runtime (NSPR).
17
 
#
18
 
# The Initial Developer of the Original Code is
19
 
# Netscape Communications Corporation.
20
 
# Portions created by the Initial Developer are Copyright (C) 1998-2000
21
 
# the Initial Developer. All Rights Reserved.
22
 
#
23
 
# Contributor(s):
24
 
#
25
 
# Alternatively, the contents of this file may be used under the terms of
26
 
# either the GNU General Public License Version 2 or later (the "GPL"), or
27
 
# the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
28
 
# in which case the provisions of the GPL or the LGPL are applicable instead
29
 
# of those above. If you wish to allow use of your version of this file only
30
 
# under the terms of either the GPL or the LGPL, and not to allow others to
31
 
# use your version of this file under the terms of the MPL, indicate your
32
 
# decision by deleting the provisions above and replace them with the notice
33
 
# and other provisions required by the GPL or the LGPL. If you do not delete
34
 
# the provisions above, a recipient may use your version of this file under
35
 
# the terms of any one of the MPL, the GPL or the LGPL.
36
 
#
37
 
# ***** END LICENSE BLOCK *****
 
3
# This Source Code Form is subject to the terms of the Mozilla Public
 
4
# License, v. 2.0. If a copy of the MPL was not distributed with this
 
5
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
38
6
 
39
7
# Configuration information for building in the NSPR source module
40
8
 
75
43
LDFLAGS         = $(OS_LDFLAGS)
76
44
 
77
45
# Enable profile-guided optimization
 
46
ifndef NO_PROFILE_GUIDED_OPTIMIZE
78
47
ifdef MOZ_PROFILE_GENERATE
79
48
CFLAGS += $(PROFILE_GEN_CFLAGS)
80
49
LDFLAGS += $(PROFILE_GEN_LDFLAGS)
81
50
DLLFLAGS += $(PROFILE_GEN_LDFLAGS)
 
51
ifeq (WINNT,$(OS_ARCH))
 
52
AR_FLAGS += -LTCG
 
53
endif
82
54
endif # MOZ_PROFILE_GENERATE
83
55
 
84
56
ifdef MOZ_PROFILE_USE
85
57
CFLAGS += $(PROFILE_USE_CFLAGS)
86
58
LDFLAGS += $(PROFILE_USE_LDFLAGS)
87
59
DLLFLAGS += $(PROFILE_USE_LDFLAGS)
 
60
ifeq (WINNT,$(OS_ARCH))
 
61
AR_FLAGS += -LTCG
 
62
endif
88
63
endif # MOZ_PROFILE_USE
 
64
endif # NO_PROFILE_GUIDED_OPTIMIZE
89
65
 
90
66
define MAKE_OBJDIR
91
67
if test ! -d $(@D); then rm -rf $(@D); $(NSINSTALL) -D $(@D); fi
175
151
RELEASE_INCLUDE_DIR = $(RELEASE_DIR)/$(BUILD_NUMBER)/$(OBJDIR_NAME)/include
176
152
RELEASE_BIN_DIR = $(RELEASE_DIR)/$(BUILD_NUMBER)/$(OBJDIR_NAME)/bin
177
153
RELEASE_LIB_DIR = $(RELEASE_DIR)/$(BUILD_NUMBER)/$(OBJDIR_NAME)/lib
 
154
 
 
155
# autoconf.mk sets OBJ_SUFFIX to an error to avoid use before including
 
156
# this file
 
157
OBJ_SUFFIX := $(_OBJ_SUFFIX)
 
158
 
 
159
# PGO builds with GCC build objects with instrumentation in a first pass,
 
160
# then objects optimized, without instrumentation, in a second pass. If
 
161
# we overwrite the ojects from the first pass with those from the second,
 
162
# we end up not getting instrumentation data for better optimization on
 
163
# incremental builds. As a consequence, we use a different object suffix
 
164
# for the first pass.
 
165
ifdef MOZ_PROFILE_GENERATE
 
166
ifdef NS_USE_GCC
 
167
OBJ_SUFFIX := i_o
 
168
endif
 
169
endif