diff options
author | William Wilgus <me.theuser@yahoo.com> | 2018-12-05 21:44:09 -0600 |
---|---|---|
committer | William Wilgus <me.theuser@yahoo.com> | 2018-12-07 21:04:30 +0100 |
commit | 94506894837242877c147bd755111cfd8f993ea7 (patch) | |
tree | 05ec7b879d7ddc63e0fdd6c933d7b67a7de62afd /tools/configure | |
parent | 4e8ef17a8b756c8894ec4d8b2481794f7f69c361 (diff) | |
download | rockbox-94506894837242877c147bd755111cfd8f993ea7.tar.gz rockbox-94506894837242877c147bd755111cfd8f993ea7.tar.bz2 rockbox-94506894837242877c147bd755111cfd8f993ea7.zip |
Fix Sim for newer distros
__builtin found fix for rbendian.h
tools/configure defines SIM_USE_BYTESWAP_H if byteswap.h is found in
/usr/include/ maybe there is a better mechanism for this
genshortcut.sh is a simple script to make .desktop shortcut files
several newer distros don't allow you to run the simulator from the
file manager, this or perhaps a different method can probably be
included while building a sim at a later date.
for now it can be run manually like so:
similar to ../tools/configure
run from your simulator folder
../tools/genshortcut.sh exepath shortname icon
ex. ../tools/genshortcut.sh ./rockboxui clip+sim music-app
Change-Id: Ia05d3a9349b27c5968a4a7a68b2eb480e60faec3
Diffstat (limited to 'tools/configure')
-rwxr-xr-x | tools/configure | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/tools/configure b/tools/configure index 330c6640fe..6398c48d06 100755 --- a/tools/configure +++ b/tools/configure @@ -10,6 +10,9 @@ # global CC options for all platforms CCOPTS="-W -Wall -Wundef -O -nostdlib -ffreestanding -Wstrict-prototypes -pipe -std=gnu99" +#newer versions GLIBC use byteswap.h +BYTESWP="/usr/include/byteswap.h" + # LD options for the core LDOPTS="" # LD options for the core + plugins @@ -4471,6 +4474,10 @@ fi if [ "yes" = "$simulator" ]; then echo Unsetting APPLICATION define for SIMULATOR build unset application + if test -f "$BYTESWP"; then + echo Using "$BYTESWP" + extradefines="$extradefines -DSIM_USE_BYTESWAP_H=$BYTESWP" + fi fi if [ "yes" = "$application" ]; then |