On 01/22/2013 07:58 AM, Richard Shann wrote:
branch. (As you mentioned gub will not rebuild if it thinks the source
is unchanged). It should be possible to change some checksum value to
force a rebuild - you haven't found out where that is by any chance. I
am nervous that I will trigger a complete rebuild of everthing...
I rebuild using a rebuild script. You will have to change the paths to
for you setup.
#!/bin/bash
if [ $# -lt 1 ]
then
echo "Usage : $0 (mingw, darwin, linux)"
exit
fi
sudo rm /usr/lib/libevview.*
sudo rm /usr/lib/libevdoc*
case "$1" in
mingw) echo "Rebuilding mingw"
sudo ln -s
/home/jjbenham/src/gub_master/gub/target/mingw/root/usr/lib/libevview.*
/usr/lib/
sudo ln -s
/home/jjbenham/src/gub_master/gub/target/mingw/root/usr/lib/libevdoc*
/usr/lib/
rm -rf target/mingw/*/denemo*
make PLATFORMS='mingw' denemo
;;
linux) echo "Rebuilding linux"
sudo ln -s
/home/jjbenham/src/gub_master/gub/target/linux-x86/root/usr/lib/libevview.*
/usr/lib/
sudo ln -s
/home/jjbenham/src/gub_master/gub/target/linux-x86/root/usr/lib/libevdoc* /usr/lib/
rm -rf target/linux-x86/*/denemo*
make PLATFORMS='linux-x86' denemo
;;
darwin) echo "Rebuilding darwin"
sudo ln -s
/home/jjbenham/src/gub_master/gub/target/darwin-x86/root/usr/lib/libevview.*
/usr/lib/
sudo ln -s
/home/jjbenham/src/gub_master/gub/target/darwin-x86/root/usr/lib/libevdoc*
/usr/lib/
rm -rf target/darwin-x86/*/denemo*
make PLATFORMS='darwin-x86' denemo
;;
*) echo "$1 is not suported yet"
;;
esac
Jeremiah
_______________________________________________
Denemo-devel mailing list
[email protected]
https://lists.gnu.org/mailman/listinfo/denemo-devel