Twój Facebook

2019-11-20 Thread Jan Żak . Twój Skuteczny FanPage .

Dzień dobry,

*kreowanie wizerunku* oraz *pozyskiwanie klientów*
  na *Facebooku* to nasza specjalność.

Dobra reklama jest dźwignią handlu - zwłaszcza we
  współczesnym świecie.

Wystarczy przesłać odpowiedź o treści *"TAK"* - a na
  pewno się z Państwem skontaktujemy.


Z pozdrowieniami,
Twój Zleceniobiorca


Bug#945133: gcc-9: __has_attribute(ifunc) false positive on hurd and kfreebsd

2019-11-20 Thread Fabian Kloetzl
Package: gcc-9
Version: 9.2.1-17
Severity: normal

Dear Maintainer,

Recently, the build of one of my packages failed on hurd-i386 and
kfreebsd-* due to unsupported ifuncs [1]. However, I had that code guarded
by __has_attribute(ifunc) which, unfortunately, evaluates to 1 on said
platforms. A minimal testcase is attached.

Best,
Fabian

1: https://buildd.debian.org/status/package.php?p=phylonium
#include 

int main() {
return 0;
}

#if __has_attribute(ifunc)

typedef void (fntype)(void);
fntype* fn_select(void) {
return NULL;
}

void fn(void) __attribute__((ifunc("fn_select")));

#endif