Closed
Bug 1544732
Opened 6 years ago
Closed 3 months ago
autospider.py fails with `SDK version "10.14" is unsupported`
Categories
(Core :: JavaScript Engine, defect, P3)
Tracking
()
RESOLVED
WORKSFORME
Tracking | Status | |
---|---|---|
firefox68 | --- | affected |
People
(Reporter: arai, Unassigned)
References
(Blocks 1 open bug, Regression)
Details
(Keywords: regression)
Almost same issue as bug 1544418, but specific to autospider.py.
Currently autospider.py doesn't specify --with-macos-sdk configure parameter,
and that results in hitting the following error when building on macOS 10.14.x:
ERROR: SDK version "10.14" is unsupported. Please downgrade to version 10.13.
You may need to point to it using --with-macos-sdk=<path> in your mozconfig.
given the path to SDK can be different for each environment, we cannot put it in variant files (unless we require specific path).
the possible solution could be:
- receive path from command line
- at least I'm using wrapper around autospider.py, this won't be much trouble. not sure for others
- use some dot file in home (
~/.autospider
or something) to specify it - require using specific path (
/Developer/SDKs/
or something)- similar to
conditional-env
in variant files, we can addconditional-configure-args
- similar to
- (edited) require setting
MACOS_SDK_DIR
env
Reporter | ||
Comment 1•6 years ago
|
||
If we require MACOS_SDK_DIR
, it should be mentioned in the error message.
Updated•3 years ago
|
Has Regression Range: --- → yes
Updated•3 years ago
|
Keywords: regression
Updated•2 years ago
|
Severity: normal → S3
Updated•2 years ago
|
Type: task → defect
Comment 2•3 months ago
|
||
Is this still an issue Arai, or at this point are the workarounds baked in sufficiently deeply that we probably should just close this (my guess).
Blocks: sm-build
Flags: needinfo?(arai.unmht)
Reporter | ||
Comment 3•3 months ago
|
||
yeah, this no longer happens.
Status: NEW → RESOLVED
Closed: 3 months ago
Flags: needinfo?(arai.unmht)
Resolution: --- → WORKSFORME
You need to log in
before you can comment on or make changes to this bug.
Description
•