[IPOL discuss] Unable to build IPOL demo due to libraries' link order problem in some source codes

Jacques Froment Jacques.Froment at univ-ubs.fr
Mon Sep 15 11:41:24 CEST 2014


Dear Miguel,

First I hope that this post will be added in the right place in the thread tree,
I was not able to reply to your post since I didn't receive his message
alone but all messages in the discuss Digest form (I set the Digest Mode off,
so probably I will receive individual messages now).

 > Any others apart of NL-means?

Yes, a lot of app binaries cannot be generated !
At the end of my post, I list the first encountered errors and they are all of
the following types:

- additional libraries such as png, tiff, fftw3f should be placed at the end
   of the link command;
- math library missing (-lm);
- cmake package missing (while it is not documented as a needed package);
- build failed for unknown reason (no src dir, empty dl dir, no build*.log file).

 > Indeed, until some version of the gcc compiler the right order of the
 > parameters was not taken into account and flawed arguments compiled
 > without any error or warning. Later, the bad ordering of the
 > parameters became an error.

I am wary of the gcc compiler version question. As I wrote, the libraries' link
order does not matter on gcc version 4.7.2 (Debian 4.7.2-5) but it does matter
on the older gcc version 4.6.3 (Ubuntu/Linaro 4.6.3-1ubuntu5).
To perform the link gcc calls /usr/bin/ld, therefore that may be the version number
of ld that matters. However, in the above two distributions, the version number
reported by ld is the same (2.22). That why I suspect an issue of parameters in
the compilation of Gnu binutils, that may be different between Debian and Ubuntu.

I am surprised to be the first user who raises the issue of the libraries' link
order, since Ubuntu is considered to be the most well-known distribution in the Linux world.
Anyway, I think that the only way to solve this problem (as well as the following
that are sure to come), is that the IPOL staff checks IPOL codes on different Linux
distributions, starting with the most common: Ubuntu.
Of course you will understand that if I am willing to help report an error, I can not
substitute myself for the IPOL team to exhaustively check all published (as well as
submitted) IPOL codes.

For now, if you can perform a complete revision of the IPOL demo by checking all points
mentioned above, do not hesitate to send it to me so that I would check it on my Ubuntu
system.

In the following, I put the list of the first errors I have corrected (but the "unknown reason"
I don't know how to deal with). I also put in attachment (does the mailing list supports
attachments ?) the 460 lines file of the output of the "./demo.py build" run: you may
get all problematic app by searching for the "build failed" string.

Best,
Jacques.

Jacques Froment   (Jacques.Froment at univ-ubs.fr)

Université de Bretagne Sud - LMBA UMR 6205
Centre Y. Coppens, campus de Tohannic
BP 573, F-56017 VANNES, FRANCE
Tél. 0297017138 (+33 297017138)
Fax 0297017175 (+33 297017175)

-------------------------------------------------------

* cm_fds_mcm_amss

Offending line:
  gcc -ansi -pedantic -Wall -Werror -Wextra -O3 -ltiff -lm FDS_MCM.o io_tiff_all.o -o mcm
To be replaced by
  gcc -ansi -pedantic -Wall -Werror -Wextra -O3 -ltiff FDS_MCM.o io_tiff_all.o -o mcm -lm -ltiff

* 86

Build failed for unknown reason (no src dir, empty dl dir, no build*.log file)

* g_gunturk_ap_demosaicking

Offending line:
  cc -lm -ljpeg -lpng -ltiff dmgunturkcli.o dmgunturk.o dmbilinear.o conv.o imageio.o basic.o -o dmgunturk
To be replaced by
  cc  dmgunturkcli.o dmgunturk.o dmbilinear.o conv.o imageio.o basic.o -o dmgunturk -lm -ljpeg -lpng -ltiff

* 97

The package cmake is needed but nor this is specified in the README.txt file nor at 
https://tools.ipol.im/wiki/doc/demo/tutorial/

cat build_Rectify.log
Fri, 12 Sep 2014 15:29:32 CEST : cmake -D CMAKE_BUILD_TYPE:string=Release ../src
/bin/sh: 1: cmake: not found

* 67

Same as 86

* 68

Same as 97

* 81

Same as 86

* bcms_self_similarity_driven_demosaicking

Offending line:
  g++ -g -g -O3 -funroll-loops -fomit-frame-pointer  -fno-tree-pre -falign-loops -ffast-math -ftree-vectorize  -Weffc++ 
  -pedantic -Wall -Wextra  -Wno-write-strings  -Wno-deprecated    -I/opt/local/include/ -I/usr/local/include/ 
-L/opt/local/lib/ -L/usr/local/lib/ -ltiff  -o ./mosaic  mosaic.o io_tiff.o libAuxiliary.o libdemosaicking.o
To be replaced by
  g++ -g -g -O3 -funroll-loops -fomit-frame-pointer -fno-tree-pre -falign-loops -ffast-math -ftree-vectorize -Weffc++ 
-pedantic -Wall -Wextra -Wno-write-strings -Wno-deprecated -I/opt/local/include/ -I/usr/local/include/ -L/opt/local/lib/ 
-L/usr/local/lib/ -o ./mosaic mosaic.o io_tiff.o libAuxiliary.o libdemosaicking.o -ltiff

Offending line:
  g++ -g -g -O3 -funroll-loops -fomit-frame-pointer  -fno-tree-pre -falign-loops -ffast-math -ftree-vectorize  -Weffc++ 
  -pedantic -Wall -Wextra  -Wno-write-strings  -Wno-deprecated    -I/opt/local/include/ -I/usr/local/include/ 
-L/opt/local/lib/ -L/usr/local/lib/ -ltiff  -o ./demosaickingIpol  demosaickingIpol.o io_tiff.o libAuxiliary.o 
libdemosaicking.o
To be replaced by
  g++ -g -g -O3 -funroll-loops -fomit-frame-pointer -fno-tree-pre -falign-loops -ffast-math -ftree-vectorize -Weffc++ 
-pedantic -Wall -Wextra -Wno-write-strings -Wno-deprecated -I/opt/local/include/ -I/usr/local/include/ -L/opt/local/lib/ 
-L/usr/local/lib/ -o ./demosaickingIpol demosaickingIpol.o io_tiff.o libAuxiliary.o libdemosaicking.o -ltiff

Offending line:
  g++ -g -g -O3 -funroll-loops -fomit-frame-pointer  -fno-tree-pre -falign-loops -ffast-math -ftree-vectorize  -Weffc++ 
  -pedantic -Wall -Wextra  -Wno-write-strings  -Wno-deprecated    -I/opt/local/include/ -I/usr/local/include/ 
-L/opt/local/lib/ -L/usr/local/lib/ -ltiff  -o ./imgdiff  imgdiff.o io_tiff.o libAuxiliary.o libdemosaicking.o
To be replaced by
  g++ -g -g -O3 -funroll-loops -fomit-frame-pointer -fno-tree-pre -falign-loops -ffast-math -ftree-vectorize -Weffc++ 
-pedantic -Wall -Wextra -Wno-write-strings -Wno-deprecated -I/opt/local/include/ -I/usr/local/include/ -L/opt/local/lib/ 
-L/usr/local/lib/ -o ./imgdiff imgdiff.o io_tiff.o libAuxiliary.o libdemosaicking.o -ltiff

* ggm_random_phase_texture_synthesis

Offending line:
  cc -ansi -Wall -Wextra -Werror -O3 -funroll-loops -fomit-frame-pointer -o random_phase_noise -lpng -lfftw3f io_png.o 
mt.o random_phase_noise_lib.o random_phase_noise.o
To be replaced by (note that the math library has to be added)
cc -ansi -Wall -Wextra -Werror -O3 -funroll-loops -fomit-frame-pointer -o random_phase_noise io_png.o mt.o 
random_phase_noise_lib.o random_phase_noise.o -lm -lpng -lfftw3f

* 84

Same as 86

* 26

Offending line:
  c99 -Wall -Wextra -Werror -O3 -fopenmp -o tvl1flow main.c iio.o -lpng -ljpeg -ltiff
To be replaced by
  c99 -Wall -Wextra -Werror -O3 -fopenmp -o tvl1flow main.c iio.o -lm -lpng -ljpeg -ltiff

* 27

Offending line:
  cc -o piecewise_equalization io_png.o piecewise_equalization_lib.o piecewise_equalization.o global_equalization.o -lpng
To be replaced by
  cc -o piecewise_equalization io_png.o piecewise_equalization_lib.o piecewise_equalization.o global_equalization.o -lm 
-lpng

-------------------------------------------------------
-------------- next part --------------
[12/Sep/2014:15:15:35] SETUP app base_dir: /home/jf/L/tmp/ipol_demo
[12/Sep/2014:15:15:35] SETUP/cm_fds_mcm_amss base_dir: /home/jf/L/tmp/ipol_demo/app/cm_fds_mcm_amss/
[12/Sep/2014:15:15:35] SETUP/cm_fds_mcm_amss building
[12/Sep/2014:15:15:35] BUILD retrieving: http://www.ipol.im/pub/art/2011/cm_fds/fds_mcm.tar.gz
[12/Sep/2014:15:15:35] BUILD not retrieved (local file is newer)
[12/Sep/2014:15:15:35] BUILD extracted: /home/jf/L/tmp/ipol_demo/app/cm_fds_mcm_amss/dl/fds_mcm.tar.gz
[12/Sep/2014:15:15:35] BUILD running: make -j4 -C /home/jf/L/tmp/ipol_demo/app/cm_fds_mcm_amss/src/fds_mcm/mcm mcm OMP=1
[12/Sep/2014:15:15:36] SETUP/cm_fds_mcm_amss build failed (see the build log)
[12/Sep/2014:15:15:36] SETUP/bcm_non_local_means_denoising base_dir: /home/jf/L/tmp/ipol_demo/app/bcm_non_local_means_denoising/
[12/Sep/2014:15:15:36] SETUP/bcm_non_local_means_denoising building
[12/Sep/2014:15:15:36] BUILD retrieving: http://www.ipol.im/pub/art/2011/bcm_nlm/nlmeansC.tar.gz
[12/Sep/2014:15:15:36] BUILD not retrieved (local file is newer)
[12/Sep/2014:15:15:36] BUILD extracted: /home/jf/L/tmp/ipol_demo/app/bcm_non_local_means_denoising/dl/nlmeansC.tar.gz
[12/Sep/2014:15:15:36] BUILD running: make -j4 -C /home/jf/L/tmp/ipol_demo/app/bcm_non_local_means_denoising/src/nlmeansC nlmeans_ipol img_diff_ipol img_mse_ipol
[12/Sep/2014:15:15:36] SETUP/bcm_non_local_means_denoising build failed (see the build log)
[12/Sep/2014:15:15:36] SETUP/54 base_dir: /home/jf/L/tmp/ipol_demo/app/54/
[12/Sep/2014:15:15:36] SETUP/54 building
[12/Sep/2014:15:15:36] BUILD retrieving: http://www.ipol.im/pub/art/2013/54/eple_20140426.tgz
[12/Sep/2014:15:15:36] BUILD not retrieved (local file is newer)
[12/Sep/2014:15:15:36] BUILD not rebuild needed
[12/Sep/2014:15:15:36] SETUP/86 base_dir: /home/jf/L/tmp/ipol_demo/app/86/
[12/Sep/2014:15:15:36] SETUP/86 building
[12/Sep/2014:15:15:36] BUILD retrieving: http://www.ipol.im/pub/pre/86/blsgsm_v1.0.zip
[12/Sep/2014:15:15:36] SETUP/86 build failed (see the build log)
[12/Sep/2014:15:15:36] SETUP/g_gunturk_ap_demosaicking base_dir: /home/jf/L/tmp/ipol_demo/app/g_gunturk_ap_demosaicking/
[12/Sep/2014:15:15:36] SETUP/g_gunturk_ap_demosaicking building
[12/Sep/2014:15:15:36] BUILD retrieving: http://www.ipol.im/pub/art/2011/g_gapd/src.tar.gz
[12/Sep/2014:15:15:36] BUILD not retrieved (local file is newer)
[12/Sep/2014:15:15:36] BUILD extracted: /home/jf/L/tmp/ipol_demo/app/g_gunturk_ap_demosaicking/dl/src.tar.gz
[12/Sep/2014:15:15:36] BUILD running: make -C /home/jf/L/tmp/ipol_demo/app/g_gunturk_ap_demosaicking/src/dmgunturk-src dmgunturk dmha dmbilinear mosaic imdiff --makefile=makefile.gcc CXX='ccache c++' -j4
[12/Sep/2014:15:15:37] SETUP/g_gunturk_ap_demosaicking build failed (see the build log)
[12/Sep/2014:15:15:37] SETUP/61 base_dir: /home/jf/L/tmp/ipol_demo/app/61/
[12/Sep/2014:15:15:37] SETUP/61 building
[12/Sep/2014:15:15:37] BUILD retrieving: http://www.ipol.im/pub/pre/61/CDS_ChambolleTV.tgz
[12/Sep/2014:15:15:37] BUILD not retrieved (local file is newer)
[12/Sep/2014:15:15:37] BUILD not rebuild needed
[12/Sep/2014:15:15:37] SETUP/117 base_dir: /home/jf/L/tmp/ipol_demo/app/117/
[12/Sep/2014:15:15:37] SETUP/117 building
[12/Sep/2014:15:15:37] BUILD retrieving: http://www.ipol.im/pub/pre/117/gaussconv_20140515.zip
[12/Sep/2014:15:15:37] BUILD not retrieved (local file is newer)
[12/Sep/2014:15:15:37] BUILD not rebuild needed
[12/Sep/2014:15:15:37] SETUP/97 base_dir: /home/jf/L/tmp/ipol_demo/app/97/
[12/Sep/2014:15:15:37] SETUP/97 building
[12/Sep/2014:15:15:37] BUILD retrieving: http://imagine.enpc.fr/~monasse/rectify-quasi-euclidean_20140626.tar.gz
[12/Sep/2014:15:15:37] BUILD not retrieved (local file is newer)
[12/Sep/2014:15:15:37] BUILD extracted: /home/jf/L/tmp/ipol_demo/app/97/dl/rectify-quasi-euclidean_20140626.tar.gz
[12/Sep/2014:15:15:38] BUILD running: cmake -D CMAKE_BUILD_TYPE:string=Release ../src
[12/Sep/2014:15:15:38] SETUP/97 build failed (see the build log)
[12/Sep/2014:15:15:38] SETUP/35 base_dir: /home/jf/L/tmp/ipol_demo/app/35/
[12/Sep/2014:15:15:38] SETUP/35 building
[12/Sep/2014:15:15:38] BUILD retrieving: http://www.ipol.im/pub/pre/35/classic_edge_detectors_1.0.zip
[12/Sep/2014:15:15:38] BUILD not retrieved (local file is newer)
[12/Sep/2014:15:15:38] BUILD not rebuild needed
[12/Sep/2014:15:15:38] SETUP/67 base_dir: /home/jf/L/tmp/ipol_demo/app/67/
[12/Sep/2014:15:15:38] SETUP/67 building
[12/Sep/2014:15:15:38] BUILD retrieving: http://www.ipol.im/pub/pre/67/gjknd_1.1.tgz
[12/Sep/2014:15:15:38] SETUP/67 build failed (see the build log)
[12/Sep/2014:15:15:38] SETUP/68 base_dir: /home/jf/L/tmp/ipol_demo/app/68/
[12/Sep/2014:15:15:38] SETUP/68 building
[12/Sep/2014:15:15:38] BUILD retrieving: http://www.ipol.im/pub/pre/68/LUTBasedNSDistanceTransform.tgz
[12/Sep/2014:15:15:38] BUILD not retrieved (local file is newer)
[12/Sep/2014:15:15:38] BUILD extracted: /home/jf/L/tmp/ipol_demo/app/68/dl/LUTBasedNSDistanceTransform.tgz
[12/Sep/2014:15:15:38] BUILD running: mkdir /home/jf/L/tmp/ipol_demo/app/68/src/LUTBasedNSDistanceTransform/build;  
[12/Sep/2014:15:15:38] BUILD running: cd /home/jf/L/tmp/ipol_demo/app/68/src/LUTBasedNSDistanceTransform/build; cmake .. -DWITH_PNG=true -DWITH_NETPBM=false ;             make -j 4
[12/Sep/2014:15:15:38] SETUP/68 build failed (see the build log)
[12/Sep/2014:15:15:38] SETUP/69 base_dir: /home/jf/L/tmp/ipol_demo/app/69/
[12/Sep/2014:15:15:38] SETUP/69 building
[12/Sep/2014:15:15:38] BUILD retrieving: http://www.ipol.im/pub/pre/69/demo_SURF_src.zip
[12/Sep/2014:15:15:38] BUILD not retrieved (local file is newer)
[12/Sep/2014:15:15:38] BUILD not rebuild needed
[12/Sep/2014:15:15:38] SETUP/g_ace base_dir: /home/jf/L/tmp/ipol_demo/app/g_ace/
[12/Sep/2014:15:15:38] SETUP/g_ace building
[12/Sep/2014:15:15:38] BUILD retrieving: http://www.ipol.im/pub/art/2012/g-ace/ace_20121029.tar.gz
[12/Sep/2014:15:15:38] BUILD not retrieved (local file is newer)
[12/Sep/2014:15:15:38] BUILD not rebuild needed
[12/Sep/2014:15:15:38] SETUP/81 base_dir: /home/jf/L/tmp/ipol_demo/app/81/
[12/Sep/2014:15:15:38] SETUP/81 building
[12/Sep/2014:15:15:38] BUILD retrieving: http://www.ipol.im/pub/pre/81/BallPivoting.tgz
[12/Sep/2014:15:15:38] SETUP/81 build failed (see the build log)
[12/Sep/2014:15:15:38] SETUP/bcms_self_similarity_driven_demosaicking base_dir: /home/jf/L/tmp/ipol_demo/app/bcms_self_similarity_driven_demosaicking/
[12/Sep/2014:15:15:38] SETUP/bcms_self_similarity_driven_demosaicking building
[12/Sep/2014:15:15:38] BUILD retrieving: http://www.ipol.im/pub/art/2011/bcms-ssdd/src.tar.gz
[12/Sep/2014:15:15:38] BUILD not retrieved (local file is newer)
[12/Sep/2014:15:15:38] BUILD extracted: /home/jf/L/tmp/ipol_demo/app/bcms_self_similarity_driven_demosaicking/dl/src.tar.gz
[12/Sep/2014:15:15:38] BUILD running: make -j4 -C /home/jf/L/tmp/ipol_demo/app/bcms_self_similarity_driven_demosaicking/src/src mosaic demosaickingIpol imgdiff
[12/Sep/2014:15:15:39] SETUP/bcms_self_similarity_driven_demosaicking build failed (see the build log)
[12/Sep/2014:15:15:39] SETUP/ggm_random_phase_texture_synthesis base_dir: /home/jf/L/tmp/ipol_demo/app/ggm_random_phase_texture_synthesis/
[12/Sep/2014:15:15:39] SETUP/ggm_random_phase_texture_synthesis building
[12/Sep/2014:15:15:39] BUILD retrieving: http://www.ipol.im/pub/art/2011/ggm_rpn/random_phase_noise_v1.3.zip
[12/Sep/2014:15:15:39] BUILD not retrieved (local file is newer)
[12/Sep/2014:15:15:39] BUILD extracted: /home/jf/L/tmp/ipol_demo/app/ggm_random_phase_texture_synthesis/dl/random_phase_noise_v1.3.zip
[12/Sep/2014:15:15:39] BUILD running: make -C /home/jf/L/tmp/ipol_demo/app/ggm_random_phase_texture_synthesis/src/random_phase_noise_v1.3/src random_phase_noise
[12/Sep/2014:15:15:40] SETUP/ggm_random_phase_texture_synthesis build failed (see the build log)
[12/Sep/2014:15:15:40] SETUP/84 base_dir: /home/jf/L/tmp/ipol_demo/app/84/
[12/Sep/2014:15:15:40] SETUP/84 building
[12/Sep/2014:15:15:40] BUILD retrieving: http://www.ipol.im/pub/pre/84/screened_poisson.tgz
[12/Sep/2014:15:15:40] SETUP/84 build failed (see the build log)
[12/Sep/2014:15:15:40] SETUP/blmv_nonlinear_cartoon_texture_decomposition base_dir: /home/jf/L/tmp/ipol_demo/app/blmv_nonlinear_cartoon_texture_decomposition/
[12/Sep/2014:15:15:40] SETUP/blmv_nonlinear_cartoon_texture_decomposition building
[12/Sep/2014:15:15:40] BUILD retrieving: http://www.ipol.im/pub/art/2011/blmv_ct/srcB.tar.gz
[12/Sep/2014:15:15:40] BUILD not retrieved (local file is newer)
[12/Sep/2014:15:15:40] BUILD not rebuild needed
[12/Sep/2014:15:15:40] SETUP/26 base_dir: /home/jf/L/tmp/ipol_demo/app/26/
[12/Sep/2014:15:15:40] SETUP/26 building
[12/Sep/2014:15:15:40] BUILD retrieving: http://www.ipol.im/pub/art/2013/26/tvl1flow_3.tar.gz
[12/Sep/2014:15:15:40] BUILD not retrieved (local file is newer)
[12/Sep/2014:15:15:40] BUILD extracted: /home/jf/L/tmp/ipol_demo/app/26/dl/tvl1flow_3.tar.gz
[12/Sep/2014:15:15:40] BUILD running: make -C /home/jf/L/tmp/ipol_demo/app/26/src/tvl1flow_3
[12/Sep/2014:15:15:42] SETUP/26 build failed (see the build log)
[12/Sep/2014:15:15:42] SETUP/27 base_dir: /home/jf/L/tmp/ipol_demo/app/27/
[12/Sep/2014:15:15:42] SETUP/27 building
[12/Sep/2014:15:15:42] BUILD retrieving: http://www.ipol.im/pub/art/2012/lps-pae/piecewise_eq.tgz
[12/Sep/2014:15:15:42] BUILD not retrieved (local file is newer)
[12/Sep/2014:15:15:42] BUILD extracted: /home/jf/L/tmp/ipol_demo/app/27/dl/piecewise_eq.tgz
[12/Sep/2014:15:15:42] BUILD running: make -j4 -C /home/jf/L/tmp/ipol_demo/app/27/src/piecewise_eq piecewise_equalization
[12/Sep/2014:15:15:43] SETUP/27 build failed (see the build log)
[12/Sep/2014:15:15:43] SETUP/20 base_dir: /home/jf/L/tmp/ipol_demo/app/20/
[12/Sep/2014:15:15:43] SETUP/20 building
[12/Sep/2014:15:15:43] BUILD retrieving: http://www.ipol.im/pub/art/2013/20/phs_3.tar.gz
[12/Sep/2014:15:15:43] BUILD not retrieved (local file is newer)
[12/Sep/2014:15:15:43] BUILD extracted: /home/jf/L/tmp/ipol_demo/app/20/dl/phs_3.tar.gz
[12/Sep/2014:15:15:43] BUILD running: make -C /home/jf/L/tmp/ipol_demo/app/20/src/phs_3
[12/Sep/2014:15:15:45] SETUP/20 build failed (see the build log)
[12/Sep/2014:15:15:45] SETUP/21 base_dir: /home/jf/L/tmp/ipol_demo/app/21/
[12/Sep/2014:15:15:45] SETUP/21 building
[12/Sep/2014:15:15:45] BUILD retrieving: http://www.ipol.im/pub/art/2013/21/sms_optic_flow_2.0.tar.gz
[12/Sep/2014:15:15:45] BUILD not retrieved (local file is newer)
[12/Sep/2014:15:15:45] BUILD extracted: /home/jf/L/tmp/ipol_demo/app/21/dl/sms_optic_flow_2.0.tar.gz
[12/Sep/2014:15:15:45] BUILD running: make -C /home/jf/L/tmp/ipol_demo/app/21/src/sms_optic_flow_2.0/spatial
[12/Sep/2014:15:15:45] SETUP/21 build failed (see the build log)
[12/Sep/2014:15:15:45] SETUP/gl_localcolorcorrection base_dir: /home/jf/L/tmp/ipol_demo/app/gl_localcolorcorrection/
[12/Sep/2014:15:15:45] SETUP/gl_localcolorcorrection building
[12/Sep/2014:15:15:45] BUILD retrieving: http://www.ipol.im/pub/art/2011/gl_lcc/LCC.tar.gz
[12/Sep/2014:15:15:45] BUILD not retrieved (local file is newer)
[12/Sep/2014:15:15:45] BUILD not rebuild needed
[12/Sep/2014:15:15:45] SETUP/79 base_dir: /home/jf/L/tmp/ipol_demo/app/79/
[12/Sep/2014:15:15:45] SETUP/79 building
[12/Sep/2014:15:15:45] BUILD retrieving: http://www.ipol.im/pub/pre/79/heegerbergen_1.00.tgz
[12/Sep/2014:15:15:45] BUILD not retrieved (local file is newer)
[12/Sep/2014:15:15:45] BUILD extracted: /home/jf/L/tmp/ipol_demo/app/79/dl/heegerbergen_1.00.tgz
[12/Sep/2014:15:15:45] BUILD running: make -j4 -C /home/jf/L/tmp/ipol_demo/app/79/src/heegerbergen_1.00 hb
[12/Sep/2014:15:15:46] SETUP/79 build failed (see the build log)
[12/Sep/2014:15:15:46] SETUP/glmt_mire base_dir: /home/jf/L/tmp/ipol_demo/app/glmt_mire/
[12/Sep/2014:15:15:46] SETUP/glmt_mire building
[12/Sep/2014:15:15:46] BUILD retrieving: http://www.ipol.im/pub/art/2012/glmt-mire/srcmire_2.tar.gz
[12/Sep/2014:15:15:46] BUILD not retrieved (local file is newer)
[12/Sep/2014:15:15:46] BUILD not rebuild needed
[12/Sep/2014:15:15:46] BUILD retrieving: http://www.ipol.im/pub/art/2012/glmt-mire/simplest_color_balance.tar.gz
[12/Sep/2014:15:15:46] BUILD not retrieved (local file is newer)
[12/Sep/2014:15:15:46] BUILD extracted: /home/jf/L/tmp/ipol_demo/app/glmt_mire/dl/simplest_color_balance.tar.gz
[12/Sep/2014:15:15:46] BUILD running: make -j4 -C /home/jf/L/tmp/ipol_demo/app/glmt_mire/src/simplest_color_balance balance
[12/Sep/2014:15:15:46] SETUP/glmt_mire build failed (see the build log)
[12/Sep/2014:15:15:46] SETUP/44 base_dir: /home/jf/L/tmp/ipol_demo/app/44/
[12/Sep/2014:15:15:46] SETUP/44 building
[12/Sep/2014:15:15:46] BUILD retrieving: http://www.ipol.im/pub/pre/44/clg_6.1.tgz
[12/Sep/2014:15:15:46] BUILD not retrieved (local file is newer)
[12/Sep/2014:15:15:46] BUILD extracted: /home/jf/L/tmp/ipol_demo/app/44/dl/clg_6.1.tar.gz
[12/Sep/2014:15:15:46] BUILD running: cmake ..
[12/Sep/2014:15:15:46] SETUP/44 build failed (see the build log)
[12/Sep/2014:15:15:46] SETUP/45 base_dir: /home/jf/L/tmp/ipol_demo/app/45/
[12/Sep/2014:15:15:46] SETUP/45 building
[12/Sep/2014:15:15:46] BUILD retrieving: http://www.ipol.im/pub/art/2013/45/ponomarenko_v4.zip
[12/Sep/2014:15:15:46] BUILD not retrieved (local file is newer)
[12/Sep/2014:15:15:46] BUILD not rebuild needed
[12/Sep/2014:15:15:46] SETUP/llm_ksvd base_dir: /home/jf/L/tmp/ipol_demo/app/llm_ksvd/
[12/Sep/2014:15:15:46] SETUP/llm_ksvd building
[12/Sep/2014:15:15:46] BUILD retrieving: http://www.ipol.im/pub/art/2012/llm-ksvd/ksvd_src.zip
[12/Sep/2014:15:15:46] BUILD not retrieved (local file is newer)
[12/Sep/2014:15:15:46] BUILD not rebuild needed
[12/Sep/2014:15:15:46] SETUP/40 base_dir: /home/jf/L/tmp/ipol_demo/app/40/
[12/Sep/2014:15:15:46] SETUP/40 building
[12/Sep/2014:15:15:46] BUILD retrieving: http://www.ipol.im/pub/art/2013/40/fstv_1.3.tgz
[12/Sep/2014:15:15:46] BUILD not retrieved (local file is newer)
[12/Sep/2014:15:15:46] BUILD extracted: /home/jf/L/tmp/ipol_demo/app/40/dl/fstv_1.3.tgz
[12/Sep/2014:15:15:46] BUILD running: make -j4 -C /home/jf/L/tmp/ipol_demo/app/40/src/fstv_1.3 -f Makefile fstv random_mask
[12/Sep/2014:15:15:48] SETUP/40 build failed (see the build log)
[12/Sep/2014:15:15:48] SETUP/41 base_dir: /home/jf/L/tmp/ipol_demo/app/41/
[12/Sep/2014:15:15:48] SETUP/41 building
[12/Sep/2014:15:15:48] BUILD retrieving: http://www.ipol.im/pub/art/2013/41/selective_ipol.tgz
[12/Sep/2014:15:15:48] BUILD not retrieved (local file is newer)
[12/Sep/2014:15:15:48] BUILD extracted: /home/jf/L/tmp/ipol_demo/app/41/dl/selective_ipol.tgz
[12/Sep/2014:15:15:48] BUILD running: make -j4 -C /home/jf/L/tmp/ipol_demo/app/41/src/selective_ipol poisson_lca
[12/Sep/2014:15:15:48] SETUP/46 base_dir: /home/jf/L/tmp/ipol_demo/app/46/
[12/Sep/2014:15:15:48] SETUP/46 building
[12/Sep/2014:15:15:48] BUILD retrieving: http://www.ipol.im/pub/art/2013/46/MaoGilles_201307.zip
[12/Sep/2014:15:15:48] BUILD not retrieved (local file is newer)
[12/Sep/2014:15:15:48] BUILD no rebuild needed
[12/Sep/2014:15:15:48] SETUP/g_tv_deconvolution base_dir: /home/jf/L/tmp/ipol_demo/app/g_tv_deconvolution/
[12/Sep/2014:15:15:48] SETUP/g_tv_deconvolution building
[12/Sep/2014:15:15:48] BUILD retrieving: http://www.ipol.im/pub/art/2012/g-tvdc/tvdeconv_20120607.tar.gz
[12/Sep/2014:15:15:48] BUILD not retrieved (local file is newer)
[12/Sep/2014:15:15:48] BUILD not rebuild needed
[12/Sep/2014:15:15:48] SETUP/lmps_simplest_color_balance base_dir: /home/jf/L/tmp/ipol_demo/app/lmps_simplest_color_balance/
[12/Sep/2014:15:15:48] SETUP/lmps_simplest_color_balance building
[12/Sep/2014:15:15:48] BUILD retrieving: http://www.ipol.im/pub/art/2011/llmps-scb/simplest_color_balance.tar.gz
[12/Sep/2014:15:15:49] BUILD not retrieved (local file is newer)
[12/Sep/2014:15:15:49] BUILD extracted: /home/jf/L/tmp/ipol_demo/app/lmps_simplest_color_balance/dl/simplest_color_balance.tar.gz
[12/Sep/2014:15:15:49] BUILD running: make -C /home/jf/L/tmp/ipol_demo/app/lmps_simplest_color_balance/src/simplest_color_balance balance
[12/Sep/2014:15:15:49] SETUP/lmps_simplest_color_balance build failed (see the build log)
[12/Sep/2014:15:15:49] SETUP/g_image_interpolation_with_contour_stencils base_dir: /home/jf/L/tmp/ipol_demo/app/g_image_interpolation_with_contour_stencils/
[12/Sep/2014:15:15:49] SETUP/g_image_interpolation_with_contour_stencils building
[12/Sep/2014:15:15:49] BUILD retrieving: http://www.ipol.im/pub/art/2011/g_iics/src.tar.gz
[12/Sep/2014:15:15:49] BUILD not retrieved (local file is newer)
[12/Sep/2014:15:15:49] BUILD extracted: /home/jf/L/tmp/ipol_demo/app/g_image_interpolation_with_contour_stencils/dl/src.tar.gz
[12/Sep/2014:15:15:49] BUILD running: make -C /home/jf/L/tmp/ipol_demo/app/g_image_interpolation_with_contour_stencils/src/cwinterp-src cwinterp imcoarsen imdiff nninterp --makefile=makefile.gcc CXX='ccache c++' -j4
[12/Sep/2014:15:15:50] SETUP/g_image_interpolation_with_contour_stencils build failed (see the build log)
[12/Sep/2014:15:15:50] SETUP/78 base_dir: /home/jf/L/tmp/ipol_demo/app/78/
[12/Sep/2014:15:15:50] SETUP/78 building
[12/Sep/2014:15:15:50] BUILD retrieving: http://www.ipol.im/pub/pre/78/MissStereo.tar.gz
[12/Sep/2014:15:15:50] BUILD not retrieved (local file is newer)
[12/Sep/2014:15:15:50] BUILD extracted: /home/jf/L/tmp/ipol_demo/app/78/dl/MissStereo.tar.gz
[12/Sep/2014:15:15:50] BUILD running: cmake -D CMAKE_BUILD_TYPE:string=Release ../src
[12/Sep/2014:15:15:50] SETUP/78 build failed (see the build log)
[12/Sep/2014:15:15:50] SETUP/gjmr_line_segment_detector base_dir: /home/jf/L/tmp/ipol_demo/app/gjmr_line_segment_detector/
[12/Sep/2014:15:15:50] SETUP/gjmr_line_segment_detector building
[12/Sep/2014:15:15:50] BUILD retrieving: http://www.ipol.im/pub/art/2012/gjmr-lsd/lsd_1.6.zip
[12/Sep/2014:15:15:50] BUILD not retrieved (local file is newer)
[12/Sep/2014:15:15:50] BUILD not rebuild needed
[12/Sep/2014:15:15:50] SETUP/mmm_orsa_homography base_dir: /home/jf/L/tmp/ipol_demo/app/mmm_orsa_homography/
[12/Sep/2014:15:15:50] SETUP/mmm_orsa_homography building
[12/Sep/2014:15:15:50] BUILD retrieving: http://www.ipol.im/pub/art/2012/mmm-oh/OrsaHomography_20120515.tar.gz
[12/Sep/2014:15:15:50] BUILD not retrieved (local file is newer)
[12/Sep/2014:15:15:50] BUILD extracted: /home/jf/L/tmp/ipol_demo/app/mmm_orsa_homography/dl/OrsaHomography.tar.gz
[12/Sep/2014:15:15:50] BUILD running: cmake -D CMAKE_BUILD_TYPE:string=Release ../src
[12/Sep/2014:15:15:50] SETUP/mmm_orsa_homography build failed (see the build log)
[12/Sep/2014:15:15:50] SETUP/87 base_dir: /home/jf/L/tmp/ipol_demo/app/87/
[12/Sep/2014:15:15:50] SETUP/87 building
[12/Sep/2014:15:15:50] BUILD retrieving: http://www.ipol.im/pub/art/2013/87/gaussian_20131215.tgz
[12/Sep/2014:15:15:50] BUILD not retrieved (local file is newer)
[12/Sep/2014:15:15:50] BUILD not rebuild needed
[12/Sep/2014:15:15:50] SETUP/g_malvar_he_cutler_linear_image_demosaicking base_dir: /home/jf/L/tmp/ipol_demo/app/g_malvar_he_cutler_linear_image_demosaicking/
[12/Sep/2014:15:15:50] SETUP/g_malvar_he_cutler_linear_image_demosaicking building
[12/Sep/2014:15:15:50] BUILD retrieving: http://www.ipol.im/pub/art/2011/g_mhcd/src.tar.gz
[12/Sep/2014:15:15:51] BUILD not retrieved (local file is newer)
[12/Sep/2014:15:15:51] BUILD extracted: /home/jf/L/tmp/ipol_demo/app/g_malvar_he_cutler_linear_image_demosaicking/dl/src.tar.gz
[12/Sep/2014:15:15:51] BUILD running: make -C /home/jf/L/tmp/ipol_demo/app/g_malvar_he_cutler_linear_image_demosaicking/src/dmmalvar-src dmmalvar dmbilinear mosaic imdiff --makefile=makefile.gcc CXX='ccache c++' -j4
[12/Sep/2014:15:15:51] SETUP/g_malvar_he_cutler_linear_image_demosaicking build failed (see the build log)
[12/Sep/2014:15:15:51] SETUP/g_chan_vese_segmentation base_dir: /home/jf/L/tmp/ipol_demo/app/g_chan_vese_segmentation/
[12/Sep/2014:15:15:51] SETUP/g_chan_vese_segmentation building
[12/Sep/2014:15:15:51] BUILD retrieving: http://www.ipol.im/pub/art/2012/g-cv/chanvese_20120715.tar.gz
[12/Sep/2014:15:15:51] BUILD not retrieved (local file is newer)
[12/Sep/2014:15:15:51] BUILD not rebuild needed
[12/Sep/2014:15:15:51] SETUP/ys_dct_denoising base_dir: /home/jf/L/tmp/ipol_demo/app/ys_dct_denoising/
[12/Sep/2014:15:15:51] SETUP/ys_dct_denoising building
[12/Sep/2014:15:15:51] BUILD retrieving: http://www.ipol.im/pub/art/2011/ys-dct/src_demoDCTdenoising.tar.gz
[12/Sep/2014:15:15:51] BUILD not retrieved (local file is newer)
[12/Sep/2014:15:15:51] BUILD extracted: /home/jf/L/tmp/ipol_demo/app/ys_dct_denoising/dl/src_demoDCTdenoising.tar.gz
[12/Sep/2014:15:15:51] BUILD running: make -j4 -C /home/jf/L/tmp/ipol_demo/app/ys_dct_denoising/src/src_demoDCTdenoising demo_DCTdenoising img_diff_ipol img_mse_ipol
[12/Sep/2014:15:15:54] SETUP/ys_dct_denoising build failed (see the build log)
[12/Sep/2014:15:15:54] SETUP/g_tv_denoising base_dir: /home/jf/L/tmp/ipol_demo/app/g_tv_denoising/
[12/Sep/2014:15:15:54] SETUP/g_tv_denoising building
[12/Sep/2014:15:15:54] BUILD retrieving: http://www.ipol.im/pub/art/2012/g-tvd/tvdenoise_20120516.tar.gz
[12/Sep/2014:15:15:54] BUILD not retrieved (local file is newer)
[12/Sep/2014:15:15:54] BUILD extracted: /home/jf/L/tmp/ipol_demo/app/g_tv_denoising/dl/tvdenoise_20120516.tar.gz
[12/Sep/2014:15:15:54] BUILD running: make -j4 -C /home/jf/L/tmp/ipol_demo/app/g_tv_denoising/src/tvdenoise_20120516 -f makefile.gcc tvdenoise imnoise imdiff
[12/Sep/2014:15:15:54] SETUP/admm_non_blind_psf_estimation base_dir: /home/jf/L/tmp/ipol_demo/app/admm_non_blind_psf_estimation/
[12/Sep/2014:15:15:54] SETUP/admm_non_blind_psf_estimation building
[12/Sep/2014:15:15:54] BUILD retrieving: http://www.ipol.im/pub/art/2012/admm-nppsf/psfestim_1.3.tar.gz
[12/Sep/2014:15:15:54] BUILD not retrieved (local file is newer)
[12/Sep/2014:15:15:54] BUILD extracted: /home/jf/L/tmp/ipol_demo/app/admm_non_blind_psf_estimation/dl/psfestim_1.3.tar.gz
[12/Sep/2014:15:15:54] BUILD running: make -j4 -C /home/jf/L/tmp/ipol_demo/app/admm_non_blind_psf_estimation/src/psfestim_1.3 psf_estim
[12/Sep/2014:15:15:54] SETUP/admm_non_blind_psf_estimation build failed (see the build log)
[12/Sep/2014:15:15:54] SETUP/g_linear_methods_for_image_interpolation base_dir: /home/jf/L/tmp/ipol_demo/app/g_linear_methods_for_image_interpolation/
[12/Sep/2014:15:15:54] SETUP/g_linear_methods_for_image_interpolation building
[12/Sep/2014:15:15:54] BUILD retrieving: http://www.ipol.im/pub/art/2011/g_lmii/src.tar.gz
[12/Sep/2014:15:15:54] BUILD not retrieved (local file is newer)
[12/Sep/2014:15:15:55] BUILD extracted: /home/jf/L/tmp/ipol_demo/app/g_linear_methods_for_image_interpolation/dl/src.tar.gz
[12/Sep/2014:15:15:55] BUILD running: make -C /home/jf/L/tmp/ipol_demo/app/g_linear_methods_for_image_interpolation/src/linterp-src linterp imcoarsen imdiff --makefile=makefile.gcc CXX='ccache c++' -j4
[12/Sep/2014:15:15:55] SETUP/g_linear_methods_for_image_interpolation build failed (see the build log)
[12/Sep/2014:15:15:55] SETUP/77 base_dir: /home/jf/L/tmp/ipol_demo/app/77/
[12/Sep/2014:15:15:55] SETUP/77 building
[12/Sep/2014:15:15:55] BUILD retrieving: http://www.ipol.im/pub/art/2013/77/two-photos-psf-estim.tar.gz
[12/Sep/2014:15:15:55] BUILD not retrieved (local file is newer)
[12/Sep/2014:15:15:56] BUILD extracted: /home/jf/L/tmp/ipol_demo/app/77/dl/two-photos-psf-estim.tar.gz
[12/Sep/2014:15:15:56] BUILD running: make OMP=1 -j4 -C /home/jf/L/tmp/ipol_demo/app/77/src/two-photos-psf-estim two_photos_psf_estim
[12/Sep/2014:15:15:56] SETUP/77 build failed (see the build log)
[12/Sep/2014:15:15:56] SETUP/98 base_dir: /home/jf/L/tmp/ipol_demo/app/98/
[12/Sep/2014:15:15:56] SETUP/98 building
[12/Sep/2014:15:15:56] BUILD retrieving: http://www.ipol.im/pub/pre/98/Pansharpening.zip
[12/Sep/2014:15:15:56] BUILD not retrieved (local file is newer)
[12/Sep/2014:15:15:56] BUILD not rebuild needed
[12/Sep/2014:15:15:56] SETUP/75 base_dir: /home/jf/L/tmp/ipol_demo/app/75/
[12/Sep/2014:15:15:56] SETUP/75 building
[12/Sep/2014:15:15:56] BUILD retrieving: http://www.ipol.im/pub/pre/75/meaningfulscaleDemo.tgz
[12/Sep/2014:15:15:56] SETUP/75 build failed (see the build log)
[12/Sep/2014:15:15:56] SETUP/74 base_dir: /home/jf/L/tmp/ipol_demo/app/74/
[12/Sep/2014:15:15:56] SETUP/74 building
[12/Sep/2014:15:15:56] BUILD retrieving: http://www.ipol.im/pub/art/2014/74/FrechetAndConnectedCompDemo.tgz
[12/Sep/2014:15:15:56] BUILD not retrieved (local file is newer)
[12/Sep/2014:15:15:59] BUILD extracted: /home/jf/L/tmp/ipol_demo/app/74/dl/FrechetAndConnectedCompDemo.tgz
[12/Sep/2014:15:15:59] BUILD running: cd /home/jf/L/tmp/ipol_demo/app/74/src/FrechetAndConnectedCompDemo/build; cmake .. -DBUILD_EXAMPLES=false                        -DCMAKE_BUILD_TYPE=Release                        -DDGTAL_BUILD_TESTING=false;                       make -j 4
[12/Sep/2014:15:15:59] SETUP/74 build failed (see the build log)
[12/Sep/2014:15:15:59] SETUP/47 base_dir: /home/jf/L/tmp/ipol_demo/app/47/
[12/Sep/2014:15:15:59] SETUP/47 building
[12/Sep/2014:15:15:59] BUILD retrieving: http://www.ipol.im/pub/pre/47/filter_pca-0.9.2.zip
[12/Sep/2014:15:15:59] BUILD not retrieved (local file is newer)
[12/Sep/2014:15:15:59] BUILD extracted: /home/jf/L/tmp/ipol_demo/app/47/dl/filter_pca-0.9.2.zip
[12/Sep/2014:15:15:59] BUILD running: make -C /home/jf/L/tmp/ipol_demo/app/47/src/filter_pca-0.9.2
[12/Sep/2014:15:16:00] SETUP/47 build failed (see the build log)
[12/Sep/2014:15:16:00] SETUP/g_roussos_diffusion_interpolation base_dir: /home/jf/L/tmp/ipol_demo/app/g_roussos_diffusion_interpolation/
[12/Sep/2014:15:16:00] SETUP/g_roussos_diffusion_interpolation building
[12/Sep/2014:15:16:00] BUILD retrieving: http://www.ipol.im/pub/art/2011/g_rmdi/src.tar.gz
[12/Sep/2014:15:16:00] BUILD not retrieved (local file is newer)
[12/Sep/2014:15:16:00] BUILD extracted: /home/jf/L/tmp/ipol_demo/app/g_roussos_diffusion_interpolation/dl/src.tar.gz
[12/Sep/2014:15:16:00] BUILD running: make -C /home/jf/L/tmp/ipol_demo/app/g_roussos_diffusion_interpolation/src/tdinterp-src tdinterp imcoarsen imdiff nninterp --makefile=makefile.gcc CXX='ccache c++' -j4
[12/Sep/2014:15:16:01] SETUP/g_roussos_diffusion_interpolation build failed (see the build log)
[12/Sep/2014:15:16:01] SETUP/71 base_dir: /home/jf/L/tmp/ipol_demo/app/71/
[12/Sep/2014:15:16:01] SETUP/71 building
[12/Sep/2014:15:16:01] BUILD retrieving: http://www.ipol.im/pub/pre/71/ctseg.tgz
[12/Sep/2014:15:16:01] SETUP/71 build failed (see the build log)
[12/Sep/2014:15:16:01] SETUP/70 base_dir: /home/jf/L/tmp/ipol_demo/app/70/
[12/Sep/2014:15:16:01] SETUP/70 building
[12/Sep/2014:15:16:01] BUILD retrieving: http://www.ipol.im/pub/pre/70/FrechetAndConnectedCompDemo.tgz
[12/Sep/2014:15:16:01] SETUP/70 build failed (see the build log)
[12/Sep/2014:15:16:01] SETUP/103 base_dir: /home/jf/L/tmp/ipol_demo/app/103/
[12/Sep/2014:15:16:01] SETUP/103 building
[12/Sep/2014:15:16:01] BUILD retrieving: http://www.ipol.im/pub/pre/103/texture_cartoon_v2.zip
[12/Sep/2014:15:16:01] SETUP/103 build failed (see the build log)
[12/Sep/2014:15:16:01] SETUP/g_zhang_wu_lmmse_image_demosaicking base_dir: /home/jf/L/tmp/ipol_demo/app/g_zhang_wu_lmmse_image_demosaicking/
[12/Sep/2014:15:16:01] SETUP/g_zhang_wu_lmmse_image_demosaicking building
[12/Sep/2014:15:16:01] BUILD retrieving: http://www.ipol.im/pub/art/2011/g_zwld/src.tar.gz
[12/Sep/2014:15:16:01] BUILD not retrieved (local file is newer)
[12/Sep/2014:15:16:01] BUILD extracted: /home/jf/L/tmp/ipol_demo/app/g_zhang_wu_lmmse_image_demosaicking/dl/src.tar.gz
[12/Sep/2014:15:16:01] BUILD running: make -C /home/jf/L/tmp/ipol_demo/app/g_zhang_wu_lmmse_image_demosaicking/src/dmzhangwu-src dmzhangwu dmbilinear mosaic imdiff --makefile=makefile.gcc CXX='ccache c++' -j4
[12/Sep/2014:15:16:02] SETUP/g_zhang_wu_lmmse_image_demosaicking build failed (see the build log)
[12/Sep/2014:15:16:02] SETUP/abmh_real_time_morphological_snakes_algorithm base_dir: /home/jf/L/tmp/ipol_demo/app/abmh_real_time_morphological_snakes_algorithm/
[12/Sep/2014:15:16:02] SETUP/abmh_real_time_morphological_snakes_algorithm building
[12/Sep/2014:15:16:02] BUILD retrieving: http://www.ipol.im/pub/art/2012/abmh-rtmsa/MorphologicalSnakes_20111228.zip
[12/Sep/2014:15:16:02] BUILD not retrieved (local file is newer)
[12/Sep/2014:15:16:02] BUILD not rebuild needed
[12/Sep/2014:15:16:02] SETUP/106 base_dir: /home/jf/L/tmp/ipol_demo/app/106/
[12/Sep/2014:15:16:02] SETUP/106 building
[12/Sep/2014:15:16:02] BUILD retrieving: http://www.ipol.im/pub/pre/106/ldm_q1p.zip
[12/Sep/2014:15:16:02] BUILD not retrieved (local file is newer)
[12/Sep/2014:15:16:02] BUILD extracted: /home/jf/L/tmp/ipol_demo/app/106/dl/ldm_q1p.zip
[12/Sep/2014:15:16:02] BUILD running: make -j4 -C  /home/jf/L/tmp/ipol_demo/app/106/src/ lens_distortion_correction_division_model_1p 
[12/Sep/2014:15:16:02] SETUP/106 build failed (see the build log)
[12/Sep/2014:15:16:02] SETUP/107 base_dir: /home/jf/L/tmp/ipol_demo/app/107/
[12/Sep/2014:15:16:02] SETUP/107 building
[12/Sep/2014:15:16:02] BUILD retrieving: http://www.ipol.im/pub/pre/107/MSR_original.tgz
[12/Sep/2014:15:16:02] SETUP/107 build failed (see the build log)
[12/Sep/2014:15:16:02] SETUP/104 base_dir: /home/jf/L/tmp/ipol_demo/app/104/
[12/Sep/2014:15:16:02] SETUP/104 building
[12/Sep/2014:15:16:02] BUILD retrieving: http://www.ipol.im/pub/pre/104/vj_20140328.tar.gz
[12/Sep/2014:15:16:02] SETUP/104 build failed (see the build log)
[12/Sep/2014:15:16:02] SETUP/105 base_dir: /home/jf/L/tmp/ipol_demo/app/105/
[12/Sep/2014:15:16:02] SETUP/105 building
[12/Sep/2014:15:16:02] BUILD retrieving: http://www.ipol.im/pub/pre/105/centroid-2.tar.gz
[12/Sep/2014:15:16:02] SETUP/105 build failed (see the build log)
[12/Sep/2014:15:16:02] SETUP/59 base_dir: /home/jf/L/tmp/ipol_demo/app/59/
[12/Sep/2014:15:16:02] SETUP/59 building
[12/Sep/2014:15:16:02] BUILD retrieving: http://www.ipol.im/pub/art/2013/59/efros_leung_v1.0.tar.gz
[12/Sep/2014:15:16:02] BUILD not retrieved (local file is newer)
[12/Sep/2014:15:16:02] BUILD extracted: /home/jf/L/tmp/ipol_demo/app/59/dl/efros_leung_v1.0.tar.gz
[12/Sep/2014:15:16:02] BUILD running: make -C /home/jf/L/tmp/ipol_demo/app/59/src/efros_leung_v1.0/efros_leung_orig/src/
[12/Sep/2014:15:16:03] BUILD running: make -C /home/jf/L/tmp/ipol_demo/app/59/src/efros_leung_v1.0/efros_leung_accel/src/
[12/Sep/2014:15:16:04] SETUP/59 build failed (see the build log)
[12/Sep/2014:15:16:04] SETUP/ags_algebraic_lens_distortion_estimation base_dir: /home/jf/L/tmp/ipol_demo/app/ags_algebraic_lens_distortion_estimation/
[12/Sep/2014:15:16:04] SETUP/ags_algebraic_lens_distortion_estimation building
[12/Sep/2014:15:16:04] BUILD retrieving: http://www.ipol.im/pub/art/2011/ags-alde/algebraic_lens_distortion_model_estimation_basic_march_2012.tar.gz
[12/Sep/2014:15:16:04] BUILD not retrieved (local file is newer)
[12/Sep/2014:15:16:05] BUILD extracted: /home/jf/L/tmp/ipol_demo/app/ags_algebraic_lens_distortion_estimation/dl/algebraic_lens_distortion_model_estimation_basic_march_2012.tar.gz
[12/Sep/2014:15:16:05] BUILD running: make -C /home/jf/L/tmp/ipol_demo/app/ags_algebraic_lens_distortion_estimation/src/algebraic_lens_distortion_model_estimation_basic lens_distortion_estimation --makefile=makefile
[12/Sep/2014:15:16:05] SETUP/ags_algebraic_lens_distortion_estimation build failed (see the build log)
[12/Sep/2014:15:16:05] SETUP/18 base_dir: /home/jf/L/tmp/ipol_demo/app/18/
[12/Sep/2014:15:16:05] SETUP/18 building
[12/Sep/2014:15:16:05] BUILD retrieving: http://www.ipol.im/pub/art/2012/t-fscs/srcflutter_10.tar.gz
[12/Sep/2014:15:16:05] BUILD not retrieved (local file is newer)
[12/Sep/2014:15:16:05] BUILD not rebuild needed
[12/Sep/2014:15:16:05] SETUP/57 base_dir: /home/jf/L/tmp/ipol_demo/app/57/
[12/Sep/2014:15:16:05] SETUP/57 building
[12/Sep/2014:15:16:05] BUILD retrieving: http://www.ipol.im/pub/pre/57/intimagebm_1.tgz
[12/Sep/2014:15:16:05] BUILD not retrieved (local file is newer)
[12/Sep/2014:15:16:05] BUILD extracted: /home/jf/L/tmp/ipol_demo/app/57/dl/algo.tgz
[12/Sep/2014:15:16:05] BUILD running: cd /home/jf/L/tmp/ipol_demo/app/57/src/intimagebm_1; cmake .
[12/Sep/2014:15:16:05] SETUP/57 build failed (see the build log)
[12/Sep/2014:15:16:05] SETUP/16 base_dir: /home/jf/L/tmp/ipol_demo/app/16/
[12/Sep/2014:15:16:05] SETUP/16 building
[12/Sep/2014:15:16:05] BUILD retrieving: http://www.ipol.im/pub/art/2013/16/nl-bayes_20130617.zip
[12/Sep/2014:15:16:05] BUILD not retrieved (local file is newer)
[12/Sep/2014:15:16:05] BUILD extracted: /home/jf/L/tmp/ipol_demo/app/16/dl/nl-bayes_20130617.zip
[12/Sep/2014:15:16:05] BUILD running: make OMP=1 -j4 -C /home/jf/L/tmp/ipol_demo/app/16/src/nl-bayes_20130617 ./NL_Bayes
[12/Sep/2014:15:16:07] SETUP/16 build failed (see the build log)
[12/Sep/2014:15:16:07] SETUP/108 base_dir: /home/jf/L/tmp/ipol_demo/app/108/
[12/Sep/2014:15:16:07] SETUP/108 building
[12/Sep/2014:15:16:07] BUILD retrieving: http://www.ipol.im/pub/pre/108/source_code_flutter_1.zip
[12/Sep/2014:15:16:07] BUILD not retrieved (local file is newer)
[12/Sep/2014:15:16:07] BUILD not rebuild needed
[12/Sep/2014:15:16:07] SETUP/53 base_dir: /home/jf/L/tmp/ipol_demo/app/53/
[12/Sep/2014:15:16:07] SETUP/53 building
[12/Sep/2014:15:16:07] BUILD retrieving: http://www.ipol.im/pub/art/2013/53/stackmcm_1.1.zip
[12/Sep/2014:15:16:07] BUILD not retrieved (local file is newer)
[12/Sep/2014:15:16:07] BUILD extracted: /home/jf/L/tmp/ipol_demo/app/53/dl/stackmcm_1.1.tar.gz
[12/Sep/2014:15:16:07] BUILD running: make -j4 -C /home/jf/L/tmp/ipol_demo/app/53/src/stackmcm_1.1/stack_mcm
[12/Sep/2014:15:16:07] SETUP/53 build failed (see the build log)
[12/Sep/2014:15:16:07] SETUP/52 base_dir: /home/jf/L/tmp/ipol_demo/app/52/
[12/Sep/2014:15:16:07] SETUP/52 building
[12/Sep/2014:15:16:07] BUILD retrieving: http://www.ipol.im/pub/art/2013/52/sple_20130711.tgz
[12/Sep/2014:15:16:07] BUILD not retrieved (local file is newer)
[12/Sep/2014:15:16:07] BUILD not rebuild needed
[12/Sep/2014:15:16:07] SETUP/l_bm3d base_dir: /home/jf/L/tmp/ipol_demo/app/l_bm3d/
[12/Sep/2014:15:16:07] SETUP/l_bm3d building
[12/Sep/2014:15:16:07] BUILD retrieving: http://www.ipol.im/pub/art/2012/l-bm3d/bm3d_src.zip
[12/Sep/2014:15:16:07] BUILD not retrieved (local file is newer)
[12/Sep/2014:15:16:07] BUILD not rebuild needed
[12/Sep/2014:15:16:07] SETUP/lmps_retinex_poisson_equation base_dir: /home/jf/L/tmp/ipol_demo/app/lmps_retinex_poisson_equation/
[12/Sep/2014:15:16:07] SETUP/lmps_retinex_poisson_equation building
[12/Sep/2014:15:16:07] BUILD retrieving: http://www.ipol.im/pub/art/2011/lmps_rpe/retinex_pde.tar.gz
[12/Sep/2014:15:16:07] BUILD not retrieved (local file is newer)
[12/Sep/2014:15:16:07] BUILD extracted: /home/jf/L/tmp/ipol_demo/app/lmps_retinex_poisson_equation/dl/retinex_pde.tar.gz
[12/Sep/2014:15:16:07] BUILD running: make -j4 -C /home/jf/L/tmp/ipol_demo/app/lmps_retinex_poisson_equation/src/retinex_pde retinex_pde
[12/Sep/2014:15:16:08] SETUP/lmps_retinex_poisson_equation build failed (see the build log)
[12/Sep/2014:15:16:08] SETUP/g_tv_inpainting base_dir: /home/jf/L/tmp/ipol_demo/app/g_tv_inpainting/
[12/Sep/2014:15:16:08] SETUP/g_tv_inpainting building
[12/Sep/2014:15:16:08] BUILD retrieving: http://www.ipol.im/pub/art/2012/g-tvi/tvinpaint_20120701.tar.gz
[12/Sep/2014:15:16:08] BUILD not retrieved (local file is newer)
[12/Sep/2014:15:16:08] BUILD not rebuild needed
[12/Sep/2014:15:16:08] SETUP/g_interpolation_geometric_contour_stencils base_dir: /home/jf/L/tmp/ipol_demo/app/g_interpolation_geometric_contour_stencils/
[12/Sep/2014:15:16:08] SETUP/g_interpolation_geometric_contour_stencils building
[12/Sep/2014:15:16:08] BUILD retrieving: http://www.ipol.im/pub/art/2011/g_igcs/src.tar.gz
[12/Sep/2014:15:16:08] BUILD not retrieved (local file is newer)
[12/Sep/2014:15:16:08] BUILD extracted: /home/jf/L/tmp/ipol_demo/app/g_interpolation_geometric_contour_stencils/dl/src.tar.gz
[12/Sep/2014:15:16:08] BUILD running: make -C /home/jf/L/tmp/ipol_demo/app/g_interpolation_geometric_contour_stencils/src/sinterp-src sinterp imcoarsen imdiff nninterp --makefile=makefile.gcc CXX='ccache c++' -j4
[12/Sep/2014:15:16:09] SETUP/g_interpolation_geometric_contour_stencils build failed (see the build log)
[12/Sep/2014:15:16:09] SETUP/m_quasi_euclidean_epipolar_rectification base_dir: /home/jf/L/tmp/ipol_demo/app/m_quasi_euclidean_epipolar_rectification/
[12/Sep/2014:15:16:09] SETUP/m_quasi_euclidean_epipolar_rectification building
[12/Sep/2014:15:16:09] BUILD retrieving: http://www.ipol.im/pub/art/2011/m_qer/MissStereo.tar.gz
[12/Sep/2014:15:16:09] BUILD not retrieved (local file is newer)
[12/Sep/2014:15:16:09] BUILD extracted: /home/jf/L/tmp/ipol_demo/app/m_quasi_euclidean_epipolar_rectification/dl/MissStereo.tar.gz
[12/Sep/2014:15:16:09] BUILD running: cmake -D CMAKE_BUILD_TYPE:string=Release ../src
[12/Sep/2014:15:16:09] SETUP/m_quasi_euclidean_epipolar_rectification build failed (see the build log)
[12/Sep/2014:15:16:09] SETUP/my_affine_sift base_dir: /home/jf/L/tmp/ipol_demo/app/my_affine_sift/
[12/Sep/2014:15:16:09] SETUP/my_affine_sift building
[12/Sep/2014:15:16:09] BUILD retrieving: http://www.ipol.im/pub/art/2011/my-asift/demo_ASIFT_src.tar.gz
[12/Sep/2014:15:16:09] BUILD not retrieved (local file is newer)
[12/Sep/2014:15:16:09] BUILD retrieving: http://www.ipol.im/pub/art/2011/my-asift/SIFT_png.tar.gz
[12/Sep/2014:15:16:09] BUILD not retrieved (local file is newer)
[12/Sep/2014:15:16:09] BUILD not rebuild needed
[12/Sep/2014:15:16:09] BUILD extracted: /home/jf/L/tmp/ipol_demo/app/my_affine_sift/dl/SIFT_png.tar.gz
[12/Sep/2014:15:16:09] BUILD running: make -j4 -C /home/jf/L/tmp/ipol_demo/app/my_affine_sift/src/SIFT_png demo_SIFT OMP=1
[12/Sep/2014:15:16:15] SETUP/my_affine_sift build failed (see the build log)
[12/Sep/2014:15:16:15] SETUP/g_demosaicking_with_contour_stencils base_dir: /home/jf/L/tmp/ipol_demo/app/g_demosaicking_with_contour_stencils/
[12/Sep/2014:15:16:15] SETUP/g_demosaicking_with_contour_stencils building
[12/Sep/2014:15:16:15] BUILD retrieving: http://www.ipol.im/pub/art/2012/g-dwcs/src.tar.gz
[12/Sep/2014:15:16:15] BUILD not retrieved (local file is newer)
[12/Sep/2014:15:16:15] BUILD extracted: /home/jf/L/tmp/ipol_demo/app/g_demosaicking_with_contour_stencils/dl/src.tar.gz
[12/Sep/2014:15:16:15] BUILD running: make -C /home/jf/L/tmp/ipol_demo/app/g_demosaicking_with_contour_stencils/src/dmcswl1-src dmcswl1 dmbilinear mosaic imdiff --makefile=makefile.gcc CXX='ccache c++' -j4
[12/Sep/2014:15:16:16] SETUP/g_demosaicking_with_contour_stencils build failed (see the build log)
[12/Sep/2014:15:16:16] SETUP/90 base_dir: /home/jf/L/tmp/ipol_demo/app/90/
[12/Sep/2014:15:16:16] SETUP/90 building
[12/Sep/2014:15:16:16] BUILD retrieving: http://www.ipol.im/pub/art/2013/90/percentile_v1.zip
[12/Sep/2014:15:16:16] BUILD not retrieved (local file is newer)
[12/Sep/2014:15:16:16] BUILD not rebuild needed
[12/Sep/2014:15:16:16] SETUP/blm_color_dimensional_filtering base_dir: /home/jf/L/tmp/ipol_demo/app/blm_color_dimensional_filtering/
[12/Sep/2014:15:16:16] SETUP/blm_color_dimensional_filtering building
[12/Sep/2014:15:16:16] BUILD retrieving: http://www.ipol.im/pub/art/2011/blm-cdf/rgbprocess.tar.gz
[12/Sep/2014:15:16:16] BUILD not retrieved (local file is newer)
[12/Sep/2014:15:16:16] BUILD extracted: /home/jf/L/tmp/ipol_demo/app/blm_color_dimensional_filtering/dl/rgbprocess.tar.gz
[12/Sep/2014:15:16:16] BUILD running: make -j4 -C /home/jf/L/tmp/ipol_demo/app/blm_color_dimensional_filtering/src/rgbprocess rgbprocess
[12/Sep/2014:15:16:17] SETUP/blm_color_dimensional_filtering build failed (see the build log)


More information about the discuss mailing list