Closed
Bug 1320690
Opened 9 years ago
Closed 9 years ago
Hook bundled NSS build on BSDs again
Categories
(Firefox Build System :: General, defect)
Tracking
(firefox53 fixed)
RESOLVED
FIXED
mozilla53
| Tracking | Status | |
|---|---|---|
| firefox53 | --- | fixed |
People
(Reporter: jbeich, Unassigned)
References
Details
Attachments
(1 file)
This is mozilla-central glue for bug 1311619.
| Comment hidden (mozreview-request) |
Comment on attachment 8814916 [details]
Bug 1320690 - Re-enable bundled NSS on BSDs.
https://treeherder.mozilla.org/#/jobs?repo=try&revision=76485f0e92bacc635654510552e1af78b508d104
Comment 3•9 years ago
|
||
| mozreview-review | ||
Comment on attachment 8814916 [details]
Bug 1320690 - Re-enable bundled NSS on BSDs.
https://reviewboard.mozilla.org/r/95996/#review96126
::: security/generate_mapfile.py:22
(Diff revision 1)
>
>
> def main(output, input):
> # There's a check in old-configure.in under the system-nss handling
> # that should match this.
> - if buildconfig.substs['OS_ARCH'] not in ('Linux', 'Darwin'):
> + if buildconfig.substs['OS_ARCH'] in ('Windows'):
This does not do what you're thinking of. Either use `in ('Windows',)`, with the comma, or `== 'Windows'`.
::: security/generate_mapfile.py:27
(Diff revision 1)
> - if buildconfig.substs['OS_ARCH'] not in ('Linux', 'Darwin'):
> + if buildconfig.substs['OS_ARCH'] in ('Windows'):
> print "Error: unhandled OS_ARCH %s" % buildconfig.substs['OS_ARCH']
> return 1
> - is_linux = buildconfig.substs['OS_ARCH'] == 'Linux'
> + is_linux = buildconfig.substs['OS_ARCH'] != 'Darwin'
>
> with open(input, 'rb') as f:
Seems like a bit of a misnomer now.
Attachment #8814916 -
Flags: review-
Comment 4•9 years ago
|
||
| mozreview-review | ||
Comment on attachment 8814916 [details]
Bug 1320690 - Re-enable bundled NSS on BSDs.
https://reviewboard.mozilla.org/r/95996/#review96128
I think this needs some tweaks in generate_mapfile.py, but otherwise should be fine. I'm sorry we didn't get this sorted out before I landed the build changes.
::: security/generate_mapfile.py:22
(Diff revision 1)
>
>
> def main(output, input):
> # There's a check in old-configure.in under the system-nss handling
> # that should match this.
> - if buildconfig.substs['OS_ARCH'] not in ('Linux', 'Darwin'):
> + if buildconfig.substs['OS_ARCH'] in ('Windows'):
I'm not sure this is terribly useful like this. Maybe just remove this entirely? Alternately, you could change this to feature-test the actual thing we care about: GNU LD or Apple LD. We do have both `GNU_LD` and `GCC_USE_GNU_LD` available, so maybe the right check here is:
`if not buildconfig.substs['GNU_LD'] and buildconfig.substs['OS_ARCH'] != 'Darwin':`
because this script is only capable of writing out GNU binutils-compatible linker scripts, and Apple LD `-exported_symbols_list` files.
::: security/generate_mapfile.py:25
(Diff revision 1)
> # There's a check in old-configure.in under the system-nss handling
> # that should match this.
> - if buildconfig.substs['OS_ARCH'] not in ('Linux', 'Darwin'):
> + if buildconfig.substs['OS_ARCH'] in ('Windows'):
> print "Error: unhandled OS_ARCH %s" % buildconfig.substs['OS_ARCH']
> return 1
> - is_linux = buildconfig.substs['OS_ARCH'] == 'Linux'
> + is_linux = buildconfig.substs['OS_ARCH'] != 'Darwin'
That doesn't seem right. Presumably the distinction here is "Apple's linker" vs. "GNU binutils linker". Maybe change this to `is_darwin = buildconfig.substs['OS_ARCH'] == 'Darwin'` and then change the rest of the script to match? For the comments you'd do `s/non-Linux/Darwin/`.
Attachment #8814916 -
Flags: review?(ted) → review-
| Comment hidden (mozreview-request) |
| Comment hidden (mozreview-request) |
https://treeherder.mozilla.org/#/jobs?repo=try&revision=a64a70febadd9fc507f7ab2de18e0be5e66fba3a
(In reply to Ted Mielczarek [:ted.mielczarek] from comment #4)
> Maybe just remove this entirely?
Done. Less code to maintain.
Comment 9•9 years ago
|
||
| mozreview-review | ||
Comment on attachment 8814916 [details]
Bug 1320690 - Re-enable bundled NSS on BSDs.
https://reviewboard.mozilla.org/r/95996/#review97516
::: old-configure.in
(Diff revision 3)
> - # This is to match the conditions in security/generate_mapfile.py,
> - # plus Windows which doesn't run that script.
> - WINNT|Darwin|Linux)
> - ;;
> - *)
> - AC_MSG_ERROR([building in-tree NSS is not supported on this platform. Use --with-system-nss])
Feels like we should still have *something* here, but I don't know precisely what it would be, so I guess we can just let it slide. I'm sure this isn't the only thing that will break when porting to a new platform.
::: security/generate_mapfile.py:45
(Diff revision 3)
> if i != -1:
> - if is_linux:
> + if not is_darwin:
> line = line[:i+1]
> else:
> line = line[:i]
> # On non-Linux, symbols get an underscore in front.
nit: change the comment here to match the conditional.
Attachment #8814916 -
Flags: review?(ted) → review+
| Comment hidden (mozreview-request) |
| Reporter | ||
Comment 11•9 years ago
|
||
| mozreview-review-reply | ||
Comment on attachment 8814916 [details]
Bug 1320690 - Re-enable bundled NSS on BSDs.
https://reviewboard.mozilla.org/r/95996/#review97516
> Feels like we should still have *something* here, but I don't know precisely what it would be, so I guess we can just let it slide. I'm sure this isn't the only thing that will break when porting to a new platform.
OK. Solaris, GNU/kFreeBSD, Darwin/X11, Windows/MINGW are stil broken with bundled NSS. Those are Tier3, the rest is beyond hope for mozilla-central to even care.
| Reporter | ||
Comment 12•9 years ago
|
||
Comment on attachment 8814916 [details]
Bug 1320690 - Re-enable bundled NSS on BSDs.
Not sure how to reset r+ via MozReview
Attachment #8814916 -
Flags: review+ → review?(ted)
| Reporter | ||
Comment 13•9 years ago
|
||
Comment on attachment 8814916 [details]
Bug 1320690 - Re-enable bundled NSS on BSDs.
https://treeherder.mozilla.org/#/jobs?repo=try&revision=5edd040248a316320fce1382ed50285d5042d371
Comment 14•9 years ago
|
||
| mozreview-review | ||
Comment on attachment 8814916 [details]
Bug 1320690 - Re-enable bundled NSS on BSDs.
https://reviewboard.mozilla.org/r/95996/#review99436
This looks good, thanks.
Attachment #8814916 -
Flags: review?(ted) → review+
Keywords: checkin-needed
Comment 15•9 years ago
|
||
Pushed by cbook@mozilla.com:
https://hg.mozilla.org/integration/autoland/rev/f5fee03d16ab
Re-enable bundled NSS on BSDs. r=ted
Keywords: checkin-needed
Comment 16•9 years ago
|
||
| bugherder | ||
Status: NEW → RESOLVED
Closed: 9 years ago
Resolution: --- → FIXED
Target Milestone: --- → mozilla53
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
•