I got the same epp error, in my case the offending line was:

   #define DBG(none)// #define DBG(...)

seems that eep don't like c comments as I just removed the comments to
make it work.

Also I noted that epp don't like variable arguments in macro, as this
don't work:
   #define DEBUG_ENABLE 1
   #if DEBUG_ENABLE
   #define DBG(...) { \
      new _buf[128]; \
      snprintf(_buf, sizeof(_buf), __VA_ARGS__); \
      set_text(PART:"embryo_dbg", _buf); }
   #else
   #define DBG(none)
   #endif

Give the error:
default.edc:7:40: warning: invalid character in macro parameter name
default.edc:7:40: badly punctuated parameter list in `#define'
ERR<30516>:edje_cc edje_cc_parse.c:719 compile() Error. Exit code of
epp not clean: 256


DaveMDS

2011/4/8 Daniel Juyung Seo <juyung....@samsung.com>:
> Hello all,
> I got build fail while building edc in eyelight.
> It looks like epp issue but no clue at the moment.
> Anybody can check this out?
> Please find the error message below.
>
> Thanks.
> Daniel Juyung Seo (SeoZ)
>
> ------- error message -------
>
> /usr/local/bin/edje_cc -v -id ../../../data/themes/default -fd
> ../../../data/themes/default \
>        ../../../data/themes/default/theme.edc \
>        ../../../data/themes/default/theme.edj
> In file included,
>                :
> ../../../data/themes/default/transition/transition_fade.edc:109:10: `#'
> operator is not followed by a macro argument name
> ERR<14683>:edje_cc edje_cc_parse.c:719 compile() Error. Exit code of epp not
> clean: 256
>
>
> ------------------------------------------------------------------------------
> Xperia(TM) PLAY
> It's a major breakthrough. An authentic gaming
> smartphone on the nation's most reliable network.
> And it wants your games.
> http://p.sf.net/sfu/verizon-sfdev
> _______________________________________________
> enlightenment-devel mailing list
> enlightenment-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
>

------------------------------------------------------------------------------
Xperia(TM) PLAY
It's a major breakthrough. An authentic gaming
smartphone on the nation's most reliable network.
And it wants your games.
http://p.sf.net/sfu/verizon-sfdev
_______________________________________________
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel

Reply via email to