All of lore.kernel.org
 help / color / mirror / Atom feed
* compile error : about declaration of ‘pthread_attr_setaffinity_np’
@ 2015-02-24  9:02 taeung
  2015-02-28  3:04 ` Namhyung Kim
  0 siblings, 1 reply; 2+ messages in thread
From: taeung @ 2015-02-24  9:02 UTC (permalink / raw)
  To: Namhyung Kim; +Cc: linux-perf-users

Hi, Namhyung

After I pulled new changed source codes from 'perf/core' branch 
(https://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git)
,when I compiled perf I've had a problem with error messages as below.

(I'm using as below
system : Ubuntu 14.04.2 LTS 64-bit
kernel version : 3.13.0-40-generic)

==================
taeung ~/git/tip/tools/perf
  :> make -j4

...(omitted)

In file included from bench/futex-hash.c:17:0:
bench/futex.h:73:19: error: conflicting types for 
‘pthread_attr_setaffinity_np’
  static inline int pthread_attr_setaffinity_np(pthread_attr_t *attr,
                    ^
In file included from bench/futex.h:72:0,
                  from bench/futex-hash.c:17:
/usr/include/pthread.h:407:12: note: previous declaration of 
‘pthread_attr_setaffinity_np’ was here
  extern int pthread_attr_setaffinity_np (pthread_attr_t *__attr,
             ^
make[3]: *** [bench/futex-hash.o] Error 1
make[2]: *** [bench] Error 2
make[2]: *** Waiting for unfinished jobs....

...(omitted)

==================

But I modified 'tools/perf/config/feature-checks/Makefile' as Jirka said 
(https://lkml.org/lkml/2015/1/12/216)
so I was able to compile perf.


diff --git a/tools/perf/config/feature-checks/Makefile 
b/tools/perf/config/feature-checks/Makefile
index b32ff33..42ac05a 100644
--- a/tools/perf/config/feature-checks/Makefile
+++ b/tools/perf/config/feature-checks/Makefile
@@ -49,7 +49,7 @@ test-hello.bin:
         $(BUILD)

  test-pthread-attr-setaffinity-np.bin:
-       $(BUILD) -D_GNU_SOURCE -Werror -lpthread
+       $(BUILD) -Werror -lpthread

  test-stackprotector-all.bin:
         $(BUILD) -Werror -fstack-protector-all


Is this patch right ?


Thanks,
Taeung

^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: compile error : about declaration of ‘pthread_attr_setaffinity_np’
  2015-02-24  9:02 compile error : about declaration of ‘pthread_attr_setaffinity_np’ taeung
@ 2015-02-28  3:04 ` Namhyung Kim
  0 siblings, 0 replies; 2+ messages in thread
From: Namhyung Kim @ 2015-02-28  3:04 UTC (permalink / raw)
  To: taeung; +Cc: linux-perf-users, acme, jolsa

(Adding Arnaldo and Jiri to CC.)

On Tue, Feb 24, 2015 at 06:02:51PM +0900, taeung wrote:
> Hi, Namhyung

Hi Taeung,

> 
> After I pulled new changed source codes from 'perf/core' branch
> (https://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git)
> ,when I compiled perf I've had a problem with error messages as below.
> 
> (I'm using as below
> system : Ubuntu 14.04.2 LTS 64-bit
> kernel version : 3.13.0-40-generic)
> 
> ==================
> taeung ~/git/tip/tools/perf
>  :> make -j4
> 
> ...(omitted)
> 
> In file included from bench/futex-hash.c:17:0:
> bench/futex.h:73:19: error: conflicting types for
> ‘pthread_attr_setaffinity_np’
>  static inline int pthread_attr_setaffinity_np(pthread_attr_t *attr,
>                    ^
> In file included from bench/futex.h:72:0,
>                  from bench/futex-hash.c:17:
> /usr/include/pthread.h:407:12: note: previous declaration of
> ‘pthread_attr_setaffinity_np’ was here
>  extern int pthread_attr_setaffinity_np (pthread_attr_t *__attr,
>             ^

This means it failed to find pthread_attr_setaffinity_np() on the
feature test (so HAVE_PTHREAD_ATTR_SETAFFINITY_NP is not defined) but
it's actually available on your system.


> make[3]: *** [bench/futex-hash.o] Error 1
> make[2]: *** [bench] Error 2
> make[2]: *** Waiting for unfinished jobs....
> 
> ...(omitted)
> 
> ==================
> 
> But I modified 'tools/perf/config/feature-checks/Makefile' as Jirka said
> (https://lkml.org/lkml/2015/1/12/216)
> so I was able to compile perf.

No Jiri's advice was to add -lpthread, not remove _GNU_SOURCE define.
I guess adding -pthread instead of -lpthread might help..


> 
> 
> diff --git a/tools/perf/config/feature-checks/Makefile
> b/tools/perf/config/feature-checks/Makefile
> index b32ff33..42ac05a 100644
> --- a/tools/perf/config/feature-checks/Makefile
> +++ b/tools/perf/config/feature-checks/Makefile
> @@ -49,7 +49,7 @@ test-hello.bin:
>         $(BUILD)
> 
>  test-pthread-attr-setaffinity-np.bin:
> -       $(BUILD) -D_GNU_SOURCE -Werror -lpthread
> +       $(BUILD) -Werror -lpthread
> 
>  test-stackprotector-all.bin:
>         $(BUILD) -Werror -fstack-protector-all
> 
> 
> Is this patch right ?

I don't think so.  You'd better to find out the reason of the failure
in the feature test.

Thanks,
Namhyung

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2015-02-28  3:05 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-02-24  9:02 compile error : about declaration of ‘pthread_attr_setaffinity_np’ taeung
2015-02-28  3:04 ` Namhyung Kim

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.