Go to:
Gentoo Home
Documentation
Forums
Lists
Bugs
Planet
Store
Wiki
Get Gentoo!
Gentoo's Bugzilla – Attachment 426254 Details for
Bug 558570
net-misc/elliptics-eblob-0.22.16 : make: *** No rule to make target 'install'. Stop.
Home
|
New
–
[Ex]
|
Browse
|
Search
|
Privacy Policy
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
CMakeError.log
CMakeError.log (text/plain), 5.60 KB, created by
Toralf Förster
on 2016-02-22 20:38:39 UTC
(
hide
)
Description:
CMakeError.log
Filename:
MIME Type:
Creator:
Toralf Förster
Created:
2016-02-22 20:38:39 UTC
Size:
5.60 KB
patch
obsolete
>Determining if the system is big endian passed with the following output: >Change Dir: /var/tmp/portage/net-misc/elliptics-eblob-0.22.16/work/elliptics-eblob-0.22.16_build/CMakeFiles/CMakeTmp > >Run Build Command:"/usr/bin/gmake" "cmTC_e924e/fast" >/usr/bin/gmake -f CMakeFiles/cmTC_e924e.dir/build.make CMakeFiles/cmTC_e924e.dir/build >gmake[1]: Entering directory '/var/tmp/portage/net-misc/elliptics-eblob-0.22.16/work/elliptics-eblob-0.22.16_build/CMakeFiles/CMakeTmp' >Building C object CMakeFiles/cmTC_e924e.dir/TestEndianess.c.o >/usr/bin/x86_64-pc-linux-gnu-gcc -DNDEBUG -march=native -O2 -pipe -o CMakeFiles/cmTC_e924e.dir/TestEndianess.c.o -c /var/tmp/portage/net-misc/elliptics-eblob-0.22.16/work/elliptics-eblob-0.22.16_build/CMakeFiles/CMakeTmp/TestEndianess.c >Linking C executable cmTC_e924e >/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_e924e.dir/link.txt --verbose=1 >/usr/bin/x86_64-pc-linux-gnu-gcc -march=native -O2 -pipe -Wl,-O1 CMakeFiles/cmTC_e924e.dir/TestEndianess.c.o -o cmTC_e924e -rdynamic >gmake[1]: Leaving directory '/var/tmp/portage/net-misc/elliptics-eblob-0.22.16/work/elliptics-eblob-0.22.16_build/CMakeFiles/CMakeTmp' > >TestEndianess.c: >/* A 16 bit integer is required. */ >typedef unsigned short cmakeint16; > >/* On a little endian machine, these 16bit ints will give "THIS IS LITTLE ENDIAN." > On a big endian machine the characters will be exchanged pairwise. */ >const cmakeint16 info_little[] = {0x4854, 0x5349, 0x4920, 0x2053, 0x494c, 0x5454, 0x454c, 0x4520, 0x444e, 0x4149, 0x2e4e, 0x0000}; > >/* on a big endian machine, these 16bit ints will give "THIS IS BIG ENDIAN." > On a little endian machine the characters will be exchanged pairwise. */ >const cmakeint16 info_big[] = {0x5448, 0x4953, 0x2049, 0x5320, 0x4249, 0x4720, 0x454e, 0x4449, 0x414e, 0x2e2e, 0x0000}; > >#ifdef __CLASSIC_C__ >int main(argc, argv) int argc; char *argv[]; >#else >int main(int argc, char *argv[]) >#endif >{ > int require = 0; > require += info_little[argc]; > require += info_big[argc]; > (void)argv; > return require; >} > > >Determining if the pthread_create exist failed with the following output: >Change Dir: /var/tmp/portage/net-misc/elliptics-eblob-0.22.16/work/elliptics-eblob-0.22.16_build/CMakeFiles/CMakeTmp > >Run Build Command:"/usr/bin/gmake" "cmTC_c4dac/fast" >/usr/bin/gmake -f CMakeFiles/cmTC_c4dac.dir/build.make CMakeFiles/cmTC_c4dac.dir/build >gmake[1]: Entering directory '/var/tmp/portage/net-misc/elliptics-eblob-0.22.16/work/elliptics-eblob-0.22.16_build/CMakeFiles/CMakeTmp' >Building C object CMakeFiles/cmTC_c4dac.dir/CheckSymbolExists.c.o >/usr/bin/x86_64-pc-linux-gnu-gcc -DNDEBUG -march=native -O2 -pipe -std=gnu99 -Wmissing-declarations -Wredundant-decls -o CMakeFiles/cmTC_c4dac.dir/CheckSymbolExists.c.o -c /var/tmp/portage/net-misc/elliptics-eblob-0.22.16/work/elliptics-eblob-0.22.16_build/CMakeFiles/CMakeTmp/CheckSymbolExists.c >Linking C executable cmTC_c4dac >/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_c4dac.dir/link.txt --verbose=1 >/usr/bin/x86_64-pc-linux-gnu-gcc -march=native -O2 -pipe -std=gnu99 -Wmissing-declarations -Wredundant-decls -Wl,-O1 CMakeFiles/cmTC_c4dac.dir/CheckSymbolExists.c.o -o cmTC_c4dac -rdynamic >CMakeFiles/cmTC_c4dac.dir/CheckSymbolExists.c.o: In function `main': >CheckSymbolExists.c:(.text.startup+0x6): undefined reference to `pthread_create' >collect2: error: ld returned 1 exit status >CMakeFiles/cmTC_c4dac.dir/build.make:97: recipe for target 'cmTC_c4dac' failed >gmake[1]: *** [cmTC_c4dac] Error 1 >gmake[1]: Leaving directory '/var/tmp/portage/net-misc/elliptics-eblob-0.22.16/work/elliptics-eblob-0.22.16_build/CMakeFiles/CMakeTmp' >Makefile:126: recipe for target 'cmTC_c4dac/fast' failed >gmake: *** [cmTC_c4dac/fast] Error 2 > >File /var/tmp/portage/net-misc/elliptics-eblob-0.22.16/work/elliptics-eblob-0.22.16_build/CMakeFiles/CMakeTmp/CheckSymbolExists.c: >/* */ >#include <pthread.h> > >int main(int argc, char** argv) >{ > (void)argv; >#ifndef pthread_create > return ((int*)(&pthread_create))[argc]; >#else > (void)argc; > return 0; >#endif >} > >Determining if the function pthread_create exists in the pthreads failed with the following output: >Change Dir: /var/tmp/portage/net-misc/elliptics-eblob-0.22.16/work/elliptics-eblob-0.22.16_build/CMakeFiles/CMakeTmp > >Run Build Command:"/usr/bin/gmake" "cmTC_6a9dc/fast" >/usr/bin/gmake -f CMakeFiles/cmTC_6a9dc.dir/build.make CMakeFiles/cmTC_6a9dc.dir/build >gmake[1]: Entering directory '/var/tmp/portage/net-misc/elliptics-eblob-0.22.16/work/elliptics-eblob-0.22.16_build/CMakeFiles/CMakeTmp' >Building C object CMakeFiles/cmTC_6a9dc.dir/CheckFunctionExists.c.o >/usr/bin/x86_64-pc-linux-gnu-gcc -DNDEBUG -march=native -O2 -pipe -std=gnu99 -Wmissing-declarations -Wredundant-decls -DCHECK_FUNCTION_EXISTS=pthread_create -o CMakeFiles/cmTC_6a9dc.dir/CheckFunctionExists.c.o -c /usr/share/cmake/Modules/CheckFunctionExists.c >Linking C executable cmTC_6a9dc >/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_6a9dc.dir/link.txt --verbose=1 >/usr/bin/x86_64-pc-linux-gnu-gcc -march=native -O2 -pipe -std=gnu99 -Wmissing-declarations -Wredundant-decls -DCHECK_FUNCTION_EXISTS=pthread_create -Wl,-O1 CMakeFiles/cmTC_6a9dc.dir/CheckFunctionExists.c.o -o cmTC_6a9dc -rdynamic -lpthreads >/usr/lib/gcc/x86_64-pc-linux-gnu/5.3.0/../../../../x86_64-pc-linux-gnu/bin/ld: cannot find -lpthreads >collect2: error: ld returned 1 exit status >CMakeFiles/cmTC_6a9dc.dir/build.make:97: recipe for target 'cmTC_6a9dc' failed >gmake[1]: *** [cmTC_6a9dc] Error 1 >gmake[1]: Leaving directory '/var/tmp/portage/net-misc/elliptics-eblob-0.22.16/work/elliptics-eblob-0.22.16_build/CMakeFiles/CMakeTmp' >Makefile:126: recipe for target 'cmTC_6a9dc/fast' failed >gmake: *** [cmTC_6a9dc/fast] Error 2 > >
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Raw
Actions:
View
Attachments on
bug 558570
:
410062
|
410064
|
426252
| 426254 |
426256
|
426258
|
426260
|
426262