Benedikt Huber

Results 5 comments of Benedikt Huber

I've started working on C11 support in language.c. _Noreturn has been implemented already: https://github.com/visq/language-c/commit/7a1ab1af9b5df9019931412130056cdc173698bf

So this particular problem would be fixed if language.c supports the _Noreturn function specifier (C11 6.7.4). Extending Lexer and Parser is trivial. However, the only other function specifier so far...

In order to evaluate the changes necessary for proper C11 support, I reran gcc.dg test suite with language.c 0.5.0. The following (not necessarily complete) list of features needs to be...

The changes introduced in SHA: aa8fcc2eb40b4360a1a8ce948b97162df644f84f break the build on OS X, as the existence of 'lib/libmemcached.so' is assumed; this file is called libmemcached.dylib on OS X, however. Suggested fix:...

The simplest fix is to add another elsif clause that checks whether libmemcached.dylib exists; this way, non OS X platforms are not affected for sure. I'd also suggest to raise...