Login
[x]
Log in using an account from:
Fedora Account System
Red Hat Associate
Red Hat Customer
Or login using a Red Hat Bugzilla account
Forgot Password
Login:
Hide Forgot
Create an Account
Red Hat Bugzilla – Attachment 1491096 Details for
Bug 1636668
Review Request: wxHexEditor - A graphical Hex Editor
[?]
New
Simple Search
Advanced Search
My Links
Browse
Requests
Reports
Current State
Search
Tabular reports
Graphical reports
Duplicates
Other Reports
User Changes
Plotly Reports
Bug Status
Bug Severity
Non-Defaults
|
Product Dashboard
Help
Page Help!
Bug Writing Guidelines
What's new
Browser Support Policy
5.0.4.rh83 Release notes
FAQ
Guides index
User guide
Web Services
Contact
Legal
This site requires JavaScript to be enabled to function correctly, please enable it.
AArch64 & Armv7hl g++ errors
file_1636668.txt (text/plain), 6.97 KB, created by
John F
on 2018-10-06 13:26:15 UTC
(
hide
)
Description:
AArch64 & Armv7hl g++ errors
Filename:
MIME Type:
Creator:
John F
Created:
2018-10-06 13:26:15 UTC
Size:
6.97 KB
patch
obsolete
>g++ -c -I/usr/lib64/wx/include/gtk3-unicode-3.0 -I/usr/include/wx-3.0 -D_FILE_OFFSET_BITS=64 -DWXUSINGDLL -D__WXGTK__ -pthread -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -fexceptions -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -fasynchronous-unwind-tables -fstack-clash-protection src/HexEditorCtrl/wxHexCtrl/wxHexCtrl.cpp -o src/HexEditorCtrl/wxHexCtrl/wxHexCtrl.o >src/HexEditorCtrl/wxHexCtrl/wxHexCtrl.cpp: In member function 'wxString wxHexTextCtrl::PrepareCodepageTable(wxString)': >src/HexEditorCtrl/wxHexCtrl/wxHexCtrl.cpp:2368:11: error: ambiguous overload for 'operator+=' (operand types are 'wxString' and 'unsigned int') > newCP += ((i<0x20 || i==0x7F) ? '.' : wxChar(i)); > ~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ >In file included from /usr/include/wx-3.0/wx/memory.h:15, > from /usr/include/wx-3.0/wx/object.h:19, > from /usr/include/wx-3.0/wx/utils.h:18, > from /usr/include/wx-3.0/wx/geometry.h:18, > from /usr/include/wx-3.0/wx/graphics.h:18, > from src/HexEditorCtrl/wxHexCtrl/wxHexCtrl.h:29, > from src/HexEditorCtrl/wxHexCtrl/wxHexCtrl.cpp:25: >/usr/include/wx-3.0/wx/string.h:3382:13: note: candidate: 'wxString& wxString::operator+=(const wxString&)' > wxString& operator+=(const wxString& s) > ^~~~~~~~ >/usr/include/wx-3.0/wx/string.h:3416:13: note: candidate: 'wxString& wxString::operator+=(wxUniChar)' > wxString& operator+=(wxUniChar ch) > ^~~~~~~~ >/usr/include/wx-3.0/wx/string.h:3429:13: note: candidate: 'wxString& wxString::operator+=(int)' > wxString& operator+=(int ch) { return *this += wxUniChar(ch); } > ^~~~~~~~ >/usr/include/wx-3.0/wx/string.h:3430:13: note: candidate: 'wxString& wxString::operator+=(char)' > wxString& operator+=(char ch) { return *this += wxUniChar(ch); } > ^~~~~~~~ >/usr/include/wx-3.0/wx/string.h:3431:13: note: candidate: 'wxString& wxString::operator+=(unsigned char)' > wxString& operator+=(unsigned char ch) { return *this += wxUniChar(ch); } > ^~~~~~~~ >/usr/include/wx-3.0/wx/string.h:3432:13: note: candidate: 'wxString& wxString::operator+=(wchar_t)' > wxString& operator+=(wchar_t ch) { return *this += wxUniChar(ch); } > ^~~~~~~~ >make: *** [Makefile:58: src/HexEditorCtrl/wxHexCtrl/wxHexCtrl.o] Error 1 > > > > > >armv7hl-redhat-linux-gnueabi-g++ -c -I/usr/lib/wx/include/gtk3-unicode-3.0 -I/usr/include/wx-3.0 -D_FILE_OFFSET_BITS=64 -DWXUSINGDLL -D__WXGTK__ -pthread -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -fexceptions -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -march=armv7-a -mfpu=vfpv3-d16 -mtune=generic-armv7-a -mabi=aapcs-linux -mfloat-abi=hard src/HexEditorCtrl/wxHexCtrl/wxHexCtrl.cpp -o src/HexEditorCtrl/wxHexCtrl/wxHexCtrl.o >src/HexEditorCtrl/wxHexCtrl/wxHexCtrl.cpp: In member function 'wxDC* wxHexCtrl::UpdateDC(wxDC*)': >src/HexEditorCtrl/wxHexCtrl/wxHexCtrl.cpp:560:39: warning: ISO C++ says that these are ambiguous, even though the worst conversion for the first is better than the worst conversion for the second: > chr = RenderedHexByte.ToAscii()[0]; > ^ >In file included from src/HexEditorCtrl/wxHexCtrl/wxHexCtrl.h:28, > from src/HexEditorCtrl/wxHexCtrl/wxHexCtrl.cpp:25: >/usr/include/wx-3.0/wx/buffer.h:158:14: note: candidate 1: 'wxScopedCharTypeBuffer<T>::CharType wxScopedCharTypeBuffer<T>::operator[](size_t) const [with T = char; wxScopedCharTypeBuffer<T>::CharType = char; size_t = unsigned int]' > CharType operator[](size_t n) const { return data()[n]; } > ^~~~~~~~ >src/HexEditorCtrl/wxHexCtrl/wxHexCtrl.cpp:560:39: note: candidate 2: 'operator[](const CharType* {aka const char*}, int)' <built-in> > chr = RenderedHexByte.ToAscii()[0]; > ^ >src/HexEditorCtrl/wxHexCtrl/wxHexCtrl.cpp:572:39: warning: ISO C++ says that these are ambiguous, even though the worst conversion for the first is better than the worst conversion for the second: > chr = RenderedHexByte.ToAscii()[1]; > ^ >In file included from src/HexEditorCtrl/wxHexCtrl/wxHexCtrl.h:28, > from src/HexEditorCtrl/wxHexCtrl/wxHexCtrl.cpp:25: >/usr/include/wx-3.0/wx/buffer.h:158:14: note: candidate 1: 'wxScopedCharTypeBuffer<T>::CharType wxScopedCharTypeBuffer<T>::operator[](size_t) const [with T = char; wxScopedCharTypeBuffer<T>::CharType = char; size_t = unsigned int]' > CharType operator[](size_t n) const { return data()[n]; } > ^~~~~~~~ >src/HexEditorCtrl/wxHexCtrl/wxHexCtrl.cpp:572:39: note: candidate 2: 'operator[](const CharType* {aka const char*}, int)' <built-in> > chr = RenderedHexByte.ToAscii()[1]; > ^ >src/HexEditorCtrl/wxHexCtrl/wxHexCtrl.cpp: In member function 'wxString wxHexTextCtrl::PrepareCodepageTable(wxString)': >src/HexEditorCtrl/wxHexCtrl/wxHexCtrl.cpp:2368:11: error: ambiguous overload for 'operator+=' (operand types are 'wxString' and 'unsigned int') > newCP += ((i<0x20 || i==0x7F) ? '.' : wxChar(i)); > ~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ >In file included from /usr/include/wx-3.0/wx/memory.h:15, > from /usr/include/wx-3.0/wx/object.h:19, > from /usr/include/wx-3.0/wx/utils.h:18, > from /usr/include/wx-3.0/wx/geometry.h:18, > from /usr/include/wx-3.0/wx/graphics.h:18, > from src/HexEditorCtrl/wxHexCtrl/wxHexCtrl.h:29, > from src/HexEditorCtrl/wxHexCtrl/wxHexCtrl.cpp:25: >/usr/include/wx-3.0/wx/string.h:3382:13: note: candidate: 'wxString& wxString::operator+=(const wxString&)' > wxString& operator+=(const wxString& s) > ^~~~~~~~ >/usr/include/wx-3.0/wx/string.h:3416:13: note: candidate: 'wxString& wxString::operator+=(wxUniChar)' > wxString& operator+=(wxUniChar ch) > ^~~~~~~~ >/usr/include/wx-3.0/wx/string.h:3429:13: note: candidate: 'wxString& wxString::operator+=(int)' > wxString& operator+=(int ch) { return *this += wxUniChar(ch); } > ^~~~~~~~ >/usr/include/wx-3.0/wx/string.h:3430:13: note: candidate: 'wxString& wxString::operator+=(char)' > wxString& operator+=(char ch) { return *this += wxUniChar(ch); } > ^~~~~~~~ >/usr/include/wx-3.0/wx/string.h:3431:13: note: candidate: 'wxString& wxString::operator+=(unsigned char)' > wxString& operator+=(unsigned char ch) { return *this += wxUniChar(ch); } > ^~~~~~~~ >/usr/include/wx-3.0/wx/string.h:3432:13: note: candidate: 'wxString& wxString::operator+=(wchar_t)' > wxString& operator+=(wchar_t ch) { return *this += wxUniChar(ch); } > ^~~~~~~~ >make: *** [Makefile:58: src/HexEditorCtrl/wxHexCtrl/wxHexCtrl.o] Error 1
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Raw
Actions:
View
Attachments on
bug 1636668
: 1491096 |
1491097
|
1491098
|
1491099
|
1491100
|
1491103
|
1493390