Closed
Bug 389401
Opened 18 years ago
Closed 18 years ago
Build horked using VC71+"make -jN" ("cannot open program database *.pdb")
Categories
(Firefox Build System :: General, defect)
Tracking
(Not tracked)
RESOLVED
FIXED
People
(Reporter: glazou, Assigned: benjamin)
References
Details
Attachments
(1 file, 1 obsolete file)
1.00 KB,
patch
|
cls
:
review+
|
Details | Diff | Splinter Review |
Trying to build using VC7.1, the build process chokes and breaks on *.pdb files. For instance:
e:/trees\20070613\mozilla\js\src\jsbool.c(0) : fatal error C1033: cannot open program database 'e:\trees\20070613\mozilla\js\src\js3250.pdb'
Updated•18 years ago
|
Summary: Build horked using VC71 and choking on *.pdb files → Build horked using VC71+"make -jN" ("cannot open program database *.pdb")
Updated•18 years ago
|
Severity: blocker → major
Assignee | ||
Comment 1•18 years ago
|
||
Assignee: nobody → benjamin
Status: NEW → ASSIGNED
Attachment #273630 -
Flags: review?(ted.mielczarek)
Comment 2•18 years ago
|
||
Comment on attachment 273630 [details] [diff] [review]
Issue error when building MSVC7 with -jN, rev. 1
Not pretty, but better than random build failures, and probably the best you can do with make.
Attachment #273630 -
Flags: review?(ted.mielczarek) → review+
Comment on attachment 273630 [details] [diff] [review]
Issue error when building MSVC7 with -jN, rev. 1
A better option would be to use .NOTPARALLEL so that the build just works regardless of which compiler is used.
Attachment #273630 -
Flags: superreview-
Assignee | ||
Comment 4•18 years ago
|
||
Attachment #273630 -
Attachment is obsolete: true
Attachment #273643 -
Flags: review?(cls)
Comment on attachment 273643 [details] [diff] [review]
Use .NOTPARALLEL, rev. 1
You should probably remove that test: target.
Attachment #273643 -
Flags: review?(cls) → review+
Assignee | ||
Comment 6•18 years ago
|
||
fixed on trunk
Status: ASSIGNED → RESOLVED
Closed: 18 years ago
Resolution: --- → FIXED
Comment 7•18 years ago
|
||
This breaks because .NOTPARALLEL has a :: rule:
http://bonsai.mozilla.org/cvsblame.cgi?file=/mozilla/js/src/xpconnect/src/Makefile.in&rev=1.85&mark=163#162
http://bonsai.mozilla.org/cvsblame.cgi?file=/mozilla/config/rules.mk&rev=3.564&mark=2140#2135
This actually horks non-parallel builds too :)
Status: RESOLVED → REOPENED
Resolution: FIXED → ---
Assignee | ||
Comment 8•18 years ago
|
||
Changed that to a single-colon rule.
Status: REOPENED → RESOLVED
Closed: 18 years ago → 18 years ago
Resolution: --- → FIXED
Updated•7 years ago
|
Product: Core → Firefox Build System
You need to log in
before you can comment on or make changes to this bug.
Description
•