Bug 1584976 Comment 35 Edit History

Note: The actual edited comment in the bug view page will always show the original commenter’s name and original timestamp.

(In reply to Sebastian Hengst [:aryx] (needinfo on intermittent or backout) from comment #34)
> build + mozconfig at https://treeherder.mozilla.org/logviewer.html#/jobs?job_id=270996235&repo=try&lineNumber=628

Working from that gives the mozconfig below.  But then running `mach build` produces
```
ERROR: /home/sewardj/MOZ/BUG-1584976/mozconfig_tmp directly or indirectly includes an in-tree mozconfig.
ERROR: In-tree mozconfigs make strong assumptions about and are only meant to be used by Mozilla automation.
ERROR: Please don't use them.
```
By repeatedly manually inlining all the `. "$topsrcdir/build/blah" statements and then unsetting `MOZ_AUTOMATION_MOZCONFIG`, I can get past that.  But then I'm in a maze of configuration failures.
(In reply to Sebastian Hengst [:aryx] (needinfo on intermittent or backout) from comment #34)
> build + mozconfig at https://treeherder.mozilla.org/logviewer.html#/jobs?job_id=270996235&repo=try&lineNumber=628

Working from that gives the mozconfig below.  But then running `mach build` produces
```
ERROR: /home/sewardj/MOZ/BUG-1584976/mozconfig_tmp directly or indirectly includes an in-tree mozconfig.
ERROR: In-tree mozconfigs make strong assumptions about and are only meant to be used by Mozilla automation.
ERROR: Please don't use them.
```
By repeatedly manually inlining all the `. "$topsrcdir/build/blah" statements and then unsetting `MOZ_AUTOMATION_MOZCONFIG`, I can get past that.  But then I'm in a maze of configuration failures.

The initial mozconfig is:
```
. "$topsrcdir/mobile/android/config/mozconfigs/common"
ac_add_options --with-android-min-sdk=21
ac_add_options --target=x86_64-linux-android
ac_add_options --with-branding=mobile/android/branding/nightly
export FENNEC_NIGHTLY=1
export MOZILLA_OFFICIAL=1

export AR="/home/sewardj/Tools/InstClang900/bin/llvm-ar"
export NM="/home/sewardj/Tools/InstClang900/bin/llvm-nm"
export RANLIB="/home/sewardj/Tools/InstClang900/bin/llvm-ranlib"

export MOZ_LTO=cross
```

Back to Bug 1584976 Comment 35