Advertisement
Guest User

Untitled

a guest
Jun 26th, 2014
272
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.81 KB | None | 0 0
  1. ../../ga-5-1/armci/src/memory/shmem.c:163:34: error: 'MAX_REGIONS' undeclared here (not in a function)
  2. static unsigned long MaxShmem = MAX_REGIONS*_SHMMAX;
  3. ^
  4. ../../ga-5-1/armci/src/memory/shmem.c: In function 'armci_krmalloc_init_ctxshmem':
  5. ../../ga-5-1/armci/src/memory/shmem.c:437:17: error: 'SHMIDLEN' undeclared (first use in this function)
  6. long idlist[SHMIDLEN];
  7. ^
  8. ../../ga-5-1/armci/src/memory/shmem.c:437:17: note: each undeclared identifier is reported only once for each function it appears in
  9. ../../ga-5-1/armci/src/memory/shmem.c: In function 'armci_get_shmem_ptr':
  10. ../../ga-5-1/armci/src/memory/shmem.c:969:17: error: 'SHMIDLEN' undeclared (first use in this function)
  11. long idlist[SHMIDLEN];
  12. ^
  13. ../../ga-5-1/armci/src/memory/shmem.c:974:12: error: 'IDLOC' undeclared (first use in this function)
  14. idlist[IDLOC+1] = shmsize; /* CHECK : idlist in CreateShmem????*/
  15. ^
  16. ../../ga-5-1/armci/src/memory/shmem.c: At top level:
  17. ../../ga-5-1/armci/src/memory/shmem.c:987:7: error: conflicting types for 'Attach_Shared_Region'
  18. char *Attach_Shared_Region(id, size, offset)
  19. ^
  20. ../../ga-5-1/armci/src/memory/shmem.c:463:23: note: previous implicit declaration of 'Attach_Shared_Region' was here
  21. myptr=(double*)Attach_Shared_Region(idlist+1,size,idlist[0]);
  22. ^
  23. ../../ga-5-1/armci/src/memory/shmem.c: In function 'Attach_Shared_Region':
  24. ../../ga-5-1/armci/src/memory/shmem.c:1019:20: error: 'SHMIDLEN' undeclared (first use in this function)
  25. MinShmem= id[SHMIDLEN-2];
  26. ^
  27. ../../ga-5-1/armci/src/memory/shmem.c:1037:13: error: 'IDLOC' undeclared (first use in this function)
  28. size = id[IDLOC];
  29. ^
  30. ../../ga-5-1/armci/src/memory/shmem.c: At top level:
  31. ../../ga-5-1/armci/src/memory/shmem.c:1165:7: error: conflicting types for 'Create_Shared_Region'
  32. char *Create_Shared_Region(long *id, long size, long *offset)
  33. ^
  34. ../../ga-5-1/armci/src/memory/shmem.c:445:16: note: previous implicit declaration of 'Create_Shared_Region' was here
  35. myptr = Create_Shared_Region(idlist+1,size,idlist);
  36. ^
  37. ../../ga-5-1/armci/src/memory/shmem.c: In function 'Create_Shared_Region':
  38. ../../ga-5-1/armci/src/memory/shmem.c:1194:11: error: 'SHMIDLEN' undeclared (first use in this function)
  39. id[SHMIDLEN-2]=MinShmem;
  40. ^
  41. ../../ga-5-1/armci/src/memory/shmem.c:1212:8: error: 'IDLOC' undeclared (first use in this function)
  42. id[IDLOC]=region_list[reg].sz; /* elan post check */
  43. ^
  44. make[5]: *** [src/memory/shmem.lo] Error 1
  45. make[5]: *** Waiting for unfinished jobs....
  46. make[4]: *** [all] Error 2
  47. make[3]: *** [all-recursive] Error 1
  48. make[2]: *** [all] Error 2
  49. make[1]: *** [build/.libs/libga.a] Error 1
  50. make: *** [libraries] Error 1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement