Closed
Bug 1109895
Opened 10 years ago
Closed 10 years ago
Send the correct -m flags to clang-cl when building libvpx; r=jrmuizel
Categories
(Core :: Audio/Video, defect)
Core
Audio/Video
Tracking
()
RESOLVED
FIXED
mozilla37
People
(Reporter: ehsan.akhgari, Assigned: ehsan.akhgari)
Details
Attachments
(1 file)
952 bytes,
patch
|
jrmuizel
:
review+
|
Details | Diff | Splinter Review |
No description provided.
Assignee | ||
Comment 1•10 years ago
|
||
Assignee | ||
Updated•10 years ago
|
Attachment #8534626 -
Flags: review?(jmuizelaar)
Comment 2•10 years ago
|
||
Comment on attachment 8534626 [details] [diff] [review]
Send the correct -m flags to clang-cl when building libvpx; r=jrmuizel
Review of attachment 8534626 [details] [diff] [review]:
-----------------------------------------------------------------
Why doesn't
::: media/libvpx/moz.build
@@ +91,5 @@
> SOURCES += [
> '%s/sources/android/cpufeatures/cpu-features.c' % CONFIG['ANDROID_NDK'],
> ]
>
> +if not CONFIG['_MSC_VER'] or CONFIG['CLANG_CL']:
I would find this easier to read if you reversed the condition. i.e.
if CONFIG['CLANG_CL'] or not CONFIG['_MSC_VER']
This removes ambiguity of the not.
Attachment #8534626 -
Flags: review?(jmuizelaar) → review+
Assignee | ||
Comment 3•10 years ago
|
||
(In reply to Jeff Muizelaar [:jrmuizel] from comment #2)
> Why doesn't
?
> ::: media/libvpx/moz.build
> @@ +91,5 @@
> > SOURCES += [
> > '%s/sources/android/cpufeatures/cpu-features.c' % CONFIG['ANDROID_NDK'],
> > ]
> >
> > +if not CONFIG['_MSC_VER'] or CONFIG['CLANG_CL']:
>
> I would find this easier to read if you reversed the condition. i.e.
>
> if CONFIG['CLANG_CL'] or not CONFIG['_MSC_VER']
>
> This removes ambiguity of the not.
OK, will do.
Comment 4•10 years ago
|
||
Status: NEW → RESOLVED
Closed: 10 years ago
Resolution: --- → FIXED
Target Milestone: --- → mozilla37
Assignee | ||
Updated•10 years ago
|
Assignee: nobody → ehsan
You need to log in
before you can comment on or make changes to this bug.
Description
•