Closed
Bug 1266772
Opened 9 years ago
Closed 9 years ago
dom/media/webaudio/AudioNodeEngine.cpp:83:7: error: 'supports_sse2' is not a member of 'mozilla'
Categories
(Core :: Web Audio, defect)
Tracking
()
RESOLVED
FIXED
mozilla48
| Tracking | Status | |
|---|---|---|
| firefox48 | --- | fixed |
People
(Reporter: jbeich, Unassigned)
References
Details
Attachments
(1 file)
/usr/bin/clang++ -std=gnu++11 -o Unified_cpp_dom_media_webaudio0.o -c -I/obj/dist/stl_wrappers -I/obj/dist/system_wrappers -include /m-c/config/gcc_hidden.h -DNDEBUG=1 -DTRIMMED=1 -DUSE_SSE2 -DOS_POSIX=1 -DOS_FREEBSD=1 -DOS_BSD=1 -DSTATIC_EXPORTABLE_JS_API -DMOZILLA_INTERNAL_API -DIMPL_LIBXUL -I/m-c/dom/media/webaudio -I/obj/dom/media/webaudio -I/obj/ipc/ipdl/_ipdlheaders -I/m-c/ipc/chromium/src -I/m-c/ipc/glue -I/m-c/dom/media -I/obj/dist/include -I/usr/local/include/nspr -I/usr/local/include/nss -I/usr/local/include/nss/nss -I/usr/local/include -I/usr/local/include -I/usr/local/include/pixman-1 -fPIC -DMOZILLA_CLIENT -include /obj/mozilla-config.h -MD -MP -MF .deps/Unified_cpp_dom_media_webaudio0.o.pp -Qunused-arguments -I/usr/local/include -Qunused-arguments -Wall -Wc++11-compat -Wempty-body -Wignored-qualifiers -Woverloaded-virtual -Wpointer-arith -Wsign-compare -Wtype-limits -Wunreachable-code -Wwrite-strings -Wc++11-compat-pedantic -Wc++14-compat -Wc++14-compat-pedantic -Wc++1z-compat -Wclass-varargs -Wimplicit-fallthrough -Wloop-analysis -Wthread-safety -Wno-invalid-offsetof -Wno-inline-new-delete -Wno-error=deprecated-declarations -Wno-error=array-bounds -Wno-unknown-warning-option -Wno-return-type-c-linkage -fno-exceptions -fno-strict-aliasing -fno-rtti -ffunction-sections -fdata-sections -fno-exceptions -fno-math-errno -pipe -O -fomit-frame-pointer /obj/dom/media/webaudio/Unified_cpp_dom_media_webaudio0.cpp
In file included from /obj/dom/media/webaudio/Unified_cpp_dom_media_webaudio0.cpp:74:
/m-c/dom/media/webaudio/AudioNodeEngine.cpp:83:16: error: no member named 'supports_sse2' in
namespace 'mozilla'
if (mozilla::supports_sse2() && IS_ALIGNED16(aInput) && IS_ALIGNED16(aOutput)) {
~~~~~~~~~^
/m-c/dom/media/webaudio/AudioNodeEngine.cpp:127:18: error: no member named 'supports_sse2'
in namespace 'mozilla'
if (mozilla::supports_sse2() && IS_ALIGNED16(aInput) && IS_ALIGNED16(aOutput)) {
~~~~~~~~~^
/m-c/dom/media/webaudio/AudioNodeEngine.cpp:147:16: error: no member named 'supports_sse' in
namespace 'mozilla'
if (mozilla::supports_sse()) {
~~~~~~~~~^
/m-c/dom/media/webaudio/AudioNodeEngine.cpp:191:16: error: no member named 'supports_sse2'
in namespace 'mozilla'
if (mozilla::supports_sse2()) {
~~~~~~~~~^
/m-c/dom/media/webaudio/AudioNodeEngine.cpp:225:16: error: no member named 'supports_sse2'
in namespace 'mozilla'
if (mozilla::supports_sse2()) {
~~~~~~~~~^
/m-c/dom/media/webaudio/AudioNodeEngine.cpp:274:16: error: no member named 'supports_sse2'
in namespace 'mozilla'
if (mozilla::supports_sse2()) {
~~~~~~~~~^
/m-c/dom/media/webaudio/AudioNodeEngine.cpp:333:16: error: no member named 'supports_sse' in
namespace 'mozilla'
if (mozilla::supports_sse()) {
~~~~~~~~~^
7 errors generated.
Review commit: https://reviewboard.mozilla.org/r/48523/diff/#index_header
See other reviews: https://reviewboard.mozilla.org/r/48523/
Attachment #8744404 -
Flags: review?(dminor)
Updated•9 years ago
|
Attachment #8744404 -
Flags: review?(dminor) → review+
Comment 2•9 years ago
|
||
Comment on attachment 8744404 [details]
MozReview Request: Bug 1266772 - Unbreak FreeBSD build after bug 881587. r?dminor
https://reviewboard.mozilla.org/r/48523/#review45233
Thanks for fixing this.
Ignore unrelated NSS bustage on Try build.
/obj/_virtualenv/Scripts/python.exe config/nsinstall.py -t -m 644 /obj/security/nss/cmd/modutil/modutil.pdb /obj/dist/bin
Traceback (most recent call last):
File "config/nsinstall.py", line 181, in <module>
sys.exit(_nsinstall_internal(argv[1:]))
File "config/nsinstall.py", line 146, in _nsinstall_internal
copy_all_entries(args, target)
File "config/nsinstall.py", line 106, in copy_all_entries
handleTarget(e, dest)
File "config/nsinstall.py", line 132, in handleTarget
os.remove(targetpath)
WindowsError: [Error 5] Access is denied: u'\\obj\\dist\\bin\\modutil.pdb'
Keywords: checkin-needed
Keywords: checkin-needed
Comment 5•9 years ago
|
||
| bugherder | ||
Status: NEW → RESOLVED
Closed: 9 years ago
Resolution: --- → FIXED
Target Milestone: --- → mozilla48
You need to log in
before you can comment on or make changes to this bug.
Description
•