Closed
Bug 334940
Opened 20 years ago
Closed 16 years ago
Build failure in mozilla/browser directory
Categories
(Firefox Build System :: General, defect)
Tracking
(Not tracked)
RESOLVED
INCOMPLETE
People
(Reporter: laxmi.harikumar, Unassigned)
Details
Attachments
(1 file)
|
621 bytes,
patch
|
cls
:
review-
|
Details | Diff | Splinter Review |
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.0.2) Gecko/20060308 Firefox/1.5.0.2
Build Identifier:
When I run 'gmake' in mozilla/browser directory, I get a core dump. This is the error message:
gmake[3]: Leaving directory `/usr/users/builds/mozilla/browser/components/build'
/usr/users/builds/mozilla/config/nsinstall -R -m 644 nsIBrowserHandler.idl nsIBr
owserGlue.idl ../../dist/idl
/usr/users/builds/mozilla/config/nsinstall -R -m 644 _xpidlgen/nsIBrowserHandler
.h _xpidlgen/nsIBrowserGlue.h ../../dist/include/browsercomps
gmake[2]: Leaving directory `/usr/users/builds/mozilla/browser/components'
/usr/bin/ksh: 273743 Memory fault(coredump)
gmake[1]: *** [export] Error 139
gmake[1]: Leaving directory `/usr/users/builds/mozilla/browser'
gmake: *** [all] Error 2
I did some analysis and found that if I modify line 162 of mozilla/toolkit/mozapps/installer/packager.mk from:
ifneq (1_,$(if $(CROSS_COMPILE),1,0)_$(UNIVERSAL_BINARY)) to
ifneq (1_,$((if $(CROSS_COMPILE),1,0)_$(UNIVERSAL_BINARY)))
the build is sucessful in mozilla/browser directory.
I do not have any idea why this is happening...
Reproducible: Always
Steps to Reproduce:
1. Go to mozilla/browser
2. Run gmake
3.
Actual Results:
Build fails (core dumps)
Expected Results:
Build should have been successful
| Reporter | ||
Updated•20 years ago
|
OS: Other → OSF/1
Hardware: Other → DEC
Version: unspecified → 1.5.0.x Branch
Comment 1•20 years ago
|
||
Could you attach a patch for your discovery ?
| Reporter | ||
Comment 2•20 years ago
|
||
Updated•20 years ago
|
Product: Firefox → Core
QA Contact: build.config → build-config
Version: 1.5.0.x Branch → Trunk
Comment 3•20 years ago
|
||
Comment on attachment 219849 [details] [diff] [review]
Patch for packager.mk file
I think this should be a easy review.
Attachment #219849 -
Flags: review?(benjamin)
Comment on attachment 219849 [details] [diff] [review]
Patch for packager.mk file
How does a check to avoid signing NSS libraries in OSX builds when creating installer packages/tarballs affect the running of xpidl on OSF/1? Can you explain the connection? Is the problem reproducible?
The ifneq should not need the extra set of ()s. $(if) is a valid makefile construct with gnu make 3.78 or higher.
Attachment #219849 -
Flags: review?(benjamin) → review-
Comment 5•20 years ago
|
||
Reporter: Can you answer those questions in the review comment then? What (g)make version do you have installed?
Comment 6•16 years ago
|
||
reporter (@digital) is of course gone
Updated•16 years ago
|
Status: UNCONFIRMED → RESOLVED
Closed: 16 years ago
Resolution: --- → INCOMPLETE
Updated•8 years ago
|
Product: Core → Firefox Build System
You need to log in
before you can comment on or make changes to this bug.
Description
•