denemo-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Denemo-devel] The 1.0 release


From: Jeremiah Benham
Subject: Re: [Denemo-devel] The 1.0 release
Date: Tue, 22 Jan 2013 08:17:29 -0600
User-agent: Mozilla/5.0 (X11; Linux i686; rv:17.0) Gecko/20130106 Thunderbird/17.0.2

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



reply via email to

[Prev in Thread] Current Thread [Next in Thread]