| Commit message (Collapse) | Author | Age | Files | Lines |
... | |
|\ \
| | |
| | |
| | | |
https://github.com/mbunkus/mxe into mbunkus-log4cxx-invalid-narrowing-conversion-with-gcc6
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
g++ 6 is stricter regarding narrowing conversions in initializer
lists. This causes errors similar to the following during compilation
with the gcc6 or gcc7 overlays:
locationinfo.cpp:163:21: error: narrowing conversion of '237'
from 'int' to 'char' inside { } [-Wnarrowing]
This has already been fixed upstream in several consecutive patches,
but there's no release including those fixes yet. This patch consists
of the essence of said fixes.
|
| | | |
|
|\ \ \
| | | |
| | | |
| | | | |
https://github.com/mbunkus/mxe into mbunkus-sdl_sound-test-program-compilation-with-gcc6
|
| |/ /
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
gcc 6 has added a diagnostic under `-pedantic` that emits a warning
whenever an enumerator value is not a constant integer
expression. This applies to the expression "1 << 31", too, as [1]
explains: that shifts the bit into the sign bit, and therefore it's
not constant.
This warning combined with `-Werror` means that compilation of the
test program fails.
This patch implements the workaround mentioned in [1].
Actual error message:
```
'x86_64-w64-mingw32.static-gcc' -W -Wall -Werror -std=c99 -pedantic '/home/mosu/prog/video/mingw/cross/src/sdl_sound-test.c' -o '/home/mosu/prog/video/mingw/cross/usr/x86_64-w64-mingw32.static/bin/test-sdl_sound.exe' `'x86_64-w64-mingw32.static-pkg-config' SDL_sound --cflags --libs`
In file included from /home/mosu/prog/video/mingw/cross/src/sdl_sound-test.c:11:0:
/home/mosu/prog/video/mingw/cross/usr/x86_64-w64-mingw32.static/include/SDL/SDL_sound.h:117:32:
error: enumerator value for 'SOUND_SAMPLEFLAG_EAGAIN' is not an integer constant expression [-Werror=pedantic] SOUND_SAMPLEFLAG_EAGAIN = 1 << 31 /**< Function would block, or temp error. */
```
[1] https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71803
|
| | | |
|
|\ \ \
| |_|/
|/| |
| | | |
https://github.com/mbunkus/mxe into mbunkus-openmp-validation-perl-cwd-not-in-inc-anymore
|
| |/
| |
| |
| |
| |
| |
| |
| |
| | |
Perl v5.26.0 has removed the current directory from the include
path. This breaks the `run_test.pl` script which tries to load modules
from the build directory and fails if the system Perl is 5.26.0 or
newer.
Error message: `Can't locate ompts_parserFunctions.pm in @INC`
|
|\ \
| | |
| | | |
qt4 overlay plugin (for vtk and qwt)
|
| | | |
|
|\ \ \
| | | |
| | | | |
vtk: update to version 8 and removal of package vtk6
|
| | | | |
|
| | | | |
|
| |/ / |
|
|/ / |
|
| | |
|
|\ \
| | |
| | | |
libxml++: update from 2.37.2 to 2.40.1
|
| |/
| |
| |
| |
| |
| |
| |
| |
| |
| | |
This fixes the following error with gcc >= 6:
```
libxml++/io/istreamparserinputbuffer.cc: In member function 'virtual bool xmlpp::IStreamParserInputBuffer::do_close()':
libxml++/io/istreamparserinputbuffer.cc:42:12: error: cannot convert 'std::istream {aka std::basic_istream<char>}' to 'bool' in return
return input_;
```
|
| | |
|
| | |
|
|\ \
| | |
| | | |
binutils: update 2.25.1 --> 2.28
|
| | | |
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
* fixes original 2.26 regression with iostreams dll
```
$ make gcc STRIP_TOOLCHAIN= MXE_TARGETS=i686-w64-mingw32.shared
[...]
$ i686-w64-mingw32.shared-nm usr/i686-w64-mingw32.shared/bin/libstdc++-6.dll | grep InitC1
6fefa2d0 T __ZNSt8ios_base4InitC1Ev
```
* replaces #1737
* fixes #1758
* tested on all four targets
|
|\ \ \
| | | |
| | | | |
add more MXE_DISABLE_DOC_OPTS and fix related packages
|
| | | | |
|
| | | |
| | | |
| | | |
| | | | |
MXE_DISABLE_DOC_OPTS
|
| | | | |
|
| | | | |
|
| | | | |
|
|\ \ \ \
| | | | |
| | | | | |
qtbase: fix CMake static linking dependencies
|
| |/ / / |
|
|\ \ \ \
| | | | |
| | | | | |
Minor updates
|
| | | | | |
|
| |/ / / |
|
|\ \ \ \
| | | | |
| | | | | |
libharu: update
|
| | | | | |
|
| |/ / / |
|
|/ / / |
|
| | | |
|
|\ \ \
| | | |
| | | | |
update gstreamer
|
| |/ / |
|
|\ \ \
| | | |
| | | | |
djvulibre: enable static library builds
|
| | | | |
|
| | | | |
|
|\ \ \ \
| | | | |
| | | | | |
secure URLs
|
| | |/ /
| |/| | |
|
|/ / / |
|
| |/
|/|
| |
| |
| |
| |
| |
| |
| | |
This fixes compilation with gcc >= 6. Actual error message:
```
In file included from fcobjs.c:33:0:
fcobjshash.gperf:172:1: error: conflicting types for 'FcObjectTypeLookup'
```
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
gcc 7 has -Wimplicit-fallthrough on by default. On systems where the
build gcc is v7 or newer building gendef will therefore fail with the
following error:
src/gendef.c: In function ‘getMemonic’:
src/gendef.c:1034:15: error: this statement may fall through [-Werror=implicit-fallthrough=]
case c_4: sz++;
Fixes #1786.
|
| |
| |
| |
| | |
* Update cmake to 3.8.2
|