when | what | where | who |
Yesterday 20:41 |
05194ec6eb: voice-corrections: Add " no." -> "number " (English)
This is particularly useful for classical music, where track names like
"symphony no.5" are common -- We want to voice this as "symphony number 5" instead.
|
tools/voice-corrections.txt [diff]
|
Solomon Peachy |
Yesterday 20:41 |
1694101b23: voice: Also apply voice corrections to talkclips
|
tools/voice.pl [diff]
|
Solomon Peachy |
Yesterday 19:09 |
38211e627d: AS3525: Get rid of duplicate 'const' in a single definition
(Another GCC9-produced warning)
|
firmware/target/arm/as3525/system-as3525.c [diff]
|
Solomon Peachy |
Yesterday 17:54 |
6cb0bc3468: coldfire: Silence a warning generated by GCC >= 9
Basically, there are weak aliases for all possible IRQ handlers, pointing at a NORETURN function. GCC complains that the aliases don't have the same attribute, but that's actually what we want.
|
firmware/target/coldfire/system-coldfire.c [diff]
|
Solomon Peachy |
Yesterday 16:26 |
62d6c7ecaa: pdbox: Silence a spurious warning with GCC9 on hosted ARM
(pdbox seems to trigger a lot of false warnings...)
|
apps/plugins/pdbox/PDa/src/d_soundfile.c [diff]
|
Solomon Peachy |
Yesterday 16:01 |
d4d74fda00: codecs: abs() --> llabs() in speex and libgme
We were calling abs() on 64-bit (ie long long) variables.
|
lib/rbcodec/codecs/libgme/ym2612_emu.c [diff]
lib/rbcodec/codecs/speex.c [diff]
|
Solomon Peachy |
Yesterday 16:01 |
8dc42711b4: libc: Correct definition of labs()' and add llabs()
|
firmware/libc/include/stdlib.h [diff]
|
Solomon Peachy |
Yesterday 14:34 |
e1bed147a3: build: Add advanced option to treat all warnings as errors.
|
tools/configure [diff]
|
Solomon Peachy |
Yesterday 13:23 |
94d6265df0: gcc9: Move structure packing to the struct definition
Silences GCC9 warnings about possible casting misalignments.
|
firmware/export/ata.h [diff]
firmware/export/usb_ch9.h [diff]
firmware/usbstack/usb_core.c [diff]
|
Solomon Peachy |
Yesterday 02:57 |
8b9ef7cf8d: sdl: Remove SDL_RENDERER_ACCELERATED flag
The flag would apparently make hardware accelerated rendering mandatory. SDL2 will still attempt to use hardware acceleration, if the flag is missing.
|
firmware/target/hosted/sdl/system-sdl.c [diff]
|
Christian Soffke |
Yesterday 02:56 |
7d60b13584: pdf50606: Fix questionable code that GCC9 complains about
Instead of:
bool &= ~bool;
do this:
bool &= !bool;
|
firmware/drivers/rtc/rtc_pcf50606.c [diff]
|
Solomon Peachy |
Friday 17:01 |
49b6853c19: rockboxdev.sh: bump required version of GMP and MPFR
GMP 4.3.2 was quite old even at the time of the GCC 4.9.4 release, and it refuses to compile out of the box on modern toolchains (eg GCC 14) due to issues in the configure script. Instead of trying to backport fixes, just bump it up to 6.1.2, the final release in the 6.1.x series that was current when GCC 4.9.4 was released.
Meanwhile, with the update to GMP, the also-quite-old MPFR 3.1.0 fails to compile; instead bump it up to 3.1.6, which is the final release in the 3.1.x series.
|
tools/rockboxdev.sh [diff]
|
Solomon Peachy |
Thursday 14:12 |
edbcf0b0f4: erosq: Initial PM support for "hw4" variant
(They renamed the battery from 'battery' to 'axp_battery')
|
firmware/export/config/hibylinux.h [diff]
firmware/target/hosted/aigo/power-erosq.c [diff]
firmware/target/hosted/power-linux.c [diff]
|
Solomon Peachy |
7th Oct 16:36 |
41abd8e32f: sdlapp: Fix build with SDL2
Not sure why this didn't break in my earlier tests.
|
apps/playback.c [diff]
|
Solomon Peachy |
7th Oct 16:15 |
56ec2e2e4a: Only increase sigalthreads stack size for simulator or aarch64 builds.
The 12K-per-thread necessary on arm64 linux systems caused an unnecessary 180K increase in RAM usage on the hibyos hosted ports. So back off to the old size unless we know it was needed.
|
firmware/asm/thread.h [diff]
|
Solomon Peachy |