Use same object files for all packages
There's no need to rebuild the object files for each component. Reusing them should allow for a faster build.
This commit is contained in:
@ -44,8 +44,6 @@ if [ "$build_experimental" == "yes" ]
|
|||||||
then
|
then
|
||||||
for component in experimental devel client
|
for component in experimental devel client
|
||||||
do
|
do
|
||||||
rm -rf _bild
|
|
||||||
mkdir _build
|
|
||||||
cd _build
|
cd _build
|
||||||
export LD_LIBRARY_PATH=""
|
export LD_LIBRARY_PATH=""
|
||||||
cmake .. $cmake_flags -DTARGET_COMPONENT=$component
|
cmake .. $cmake_flags -DTARGET_COMPONENT=$component
|
||||||
|
@ -39,8 +39,6 @@ if [ "$build_experimental" == "yes" ]
|
|||||||
then
|
then
|
||||||
for component in experimental devel client
|
for component in experimental devel client
|
||||||
do
|
do
|
||||||
sudo rm -rf _build
|
|
||||||
mkdir _build
|
|
||||||
cd _build
|
cd _build
|
||||||
cmake .. $cmake_flags -DTARGET_COMPONENT=$component
|
cmake .. $cmake_flags -DTARGET_COMPONENT=$component
|
||||||
sudo make package
|
sudo make package
|
||||||
|
Reference in New Issue
Block a user