sys/cdefs.h or maybe gcc build issue

cyg Simple cygsimple@gmail.com
Sun Oct 30 18:37:00 GMT 2016


The below sample code will give a warning that visibility isn't
supported in this configuration.  Either the GCC build is incorrect or
the sys/cdefs.h needs to be modified to define __hidden to empty.

/********************************************/
#include <sys/cdefs.h>
#include <stdio.h>

__hidden void hello (char * str) {
	printf("%s %s\n", "Hello", str);
}

int main (int argc, char ** argv) {
	hello("cruel world!");
}
/********************************************/

-- 
cyg Simple

--
Problem reports:       http://cygwin.com/problems.html
FAQ:                   http://cygwin.com/faq/
Documentation:         http://cygwin.com/docs.html
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple



More information about the Cygwin mailing list