Hi, Elementary (OSX) build failed one more time :/ with edje_cc failing when compiling the default theme, with a very misleading error (more details later). After some investigation, I found out that images edje_cc attempts to load are never closed... Linux is also affected, but this went unnoticed because the limit for opened files seems to be higher by default than on OSX.
Bisecting pointed me out the guilty commit: >Author: Cedric BAIL <[email protected]> >Date: Thu Mar 10 16:29:56 2016 -0800 > > edje: seems like preloading is fixed and we can now run edje_cc in // > >diff --git a/src/bin/edje/edje_cc.c b/src/bin/edje/edje_cc.c >index 9452fff..d4c7bb1 100644 >--- a/src/bin/edje/edje_cc.c >+++ b/src/bin/edje/edje_cc.c >@@ -38,7 +38,7 @@ int no_save = 0; > int min_quality = 0; > int max_quality = 100; > int compress_mode = EET_COMPRESSION_HI; >-int threads = 0; >+int threads = 1; > int annotate = 0; > int no_etc1 = 0; > int no_etc2 = 0; After reverting it locally, everything went back to normal :-) I didn't want to seem rude by reverting it upstream; I will let you guys deal with this :p I have provided a fix for the misleading error I mentioned earlier (branch devs/jayji/fixes). I am not sure this is the right way to handle this... I would greatly appreciate some review on this patch. Best regards, Jean Guyomarc'h ------------------------------------------------------------------------------ Transform Data into Opportunity. Accelerate data analysis in your applications with Intel Data Analytics Acceleration Library. Click to learn more. http://pubads.g.doubleclick.net/gampad/clk?id=278785231&iu=/4140 _______________________________________________ enlightenment-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
