Package: jcc Severity: important Version: 1.9-7 from build logs: -snip- In file included from jcc/sources/JObject.cpp:32: jcc/sources/JObject.h:32: error: stray '$' in program -snip-
jcc extensively uses a identifier called 'this$' ISO C defines identifiers as a-zA-Z0-9_, and supporting other characters is implementation specific. In other words, using them is not portable. GCC in general allows $, but Arm EABI reserves $ for internal ABI symbols. You'll need to use "-fdollars-in-identifiers" in gcc flags to allow compiling code with $ as identifier. -- "rm -rf" only sounds scary if you don't have backups -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

