README.COMPILATION.PROBLEMS
上传用户:yhdzpy8989
上传日期:2007-06-13
资源大小:13604k
文件大小:5k
源码类别:

生物技术

开发平台:

C/C++

  1. bzip2-1.0 should compile without problems on the vast majority of
  2. platforms.  Using the supplied Makefile, I've built and tested it
  3. myself for x86-linux, sparc-solaris, alpha-linux, x86-cygwin32 and
  4. alpha-tru64unix.  With makefile.msc, Visual C++ 6.0 and nmake, you can
  5. build a native Win32 version too.  Large file support seems to work
  6. correctly on at least alpha-tru64unix and x86-cygwin32 (on Windows
  7. 2000).
  8. When I say "large file" I mean a file of size 2,147,483,648 (2^31)
  9. bytes or above.  Many older OSs can't handle files above this size,
  10. but many newer ones can.  Large files are pretty huge -- most files
  11. you'll encounter are not Large Files.
  12. Earlier versions of bzip2 (0.1, 0.9.0, 0.9.5) compiled on a wide
  13. variety of platforms without difficulty, and I hope this version will
  14. continue in that tradition.  However, in order to support large files,
  15. I've had to include the define -D_FILE_OFFSET_BITS=64 in the Makefile.
  16. This can cause problems.
  17. The technique of adding -D_FILE_OFFSET_BITS=64 to get large file
  18. support is, as far as I know, the Recommended Way to get correct large
  19. file support.  For more details, see the Large File Support
  20. Specification, published by the Large File Summit, at
  21.    http://www.sas.com/standard/large.file/
  22. As a general comment, if you get compilation errors which you think
  23. are related to large file support, try removing the above define from
  24. the Makefile, ie, delete the line
  25.    BIGFILES=-D_FILE_OFFSET_BITS=64 
  26. from the Makefile, and do 'make clean ; make'.  This will give you a
  27. version of bzip2 without large file support, which, for most
  28. applications, is probably not a problem.  
  29. Alternatively, try some of the platform-specific hints listed below.
  30. You can use the spewG.c program to generate huge files to test bzip2's
  31. large file support, if you are feeling paranoid.  Be aware though that
  32. any compilation problems which affect bzip2 will also affect spewG.c,
  33. alas.
  34. Known problems as of 1.0pre8:
  35. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  36. * HP/UX 10.20 and 11.00, using gcc (2.7.2.3 and 2.95.2):  A large
  37.   number of warnings appear, including the following:
  38.      /usr/include/sys/resource.h: In function `getrlimit':
  39.      /usr/include/sys/resource.h:168: 
  40.         warning: implicit declaration of function `__getrlimit64'
  41.      /usr/include/sys/resource.h: In function `setrlimit':
  42.      /usr/include/sys/resource.h:170: 
  43.         warning: implicit declaration of function `__setrlimit64'
  44.   This would appear to be a problem with large file support, header
  45.   files and gcc.  gcc may or may not give up at this point.  If it
  46.   fails, you might be able to improve matters by adding 
  47.      -D__STDC_EXT__=1
  48.   to the BIGFILES variable in the Makefile (ie, change its definition
  49.   to
  50.      BIGFILES=-D_FILE_OFFSET_BITS=64 -D__STDC_EXT__=1
  51.   Even if gcc does produce a binary which appears to work (ie passes
  52.   its self-tests), you might want to test it to see if it works properly
  53.   on large files.
  54. * HP/UX 10.20 and 11.00, using HP's cc compiler.
  55.   No specific problems for this combination, except that you'll need to
  56.   specify the -Ae flag, and zap the gcc-specific stuff
  57.   -Wall -Winline -O2 -fomit-frame-pointer -fno-strength-reduce.
  58.   You should retain -D_FILE_OFFSET_BITS=64 in order to get large
  59.   file support -- which is reported to work ok for this HP/UX + cc
  60.   combination.
  61. * SunOS 4.1.X.
  62.   Amazingly, there are still people out there using this venerable old
  63.   banger.  I shouldn't be too rude -- I started life on SunOS, and
  64.   it was a pretty darn good OS, way back then.  Anyway:
  65.      SunOS doesn't seem to have strerror(), so you'll have to use
  66.      perror(), perhaps by doing adding this (warning: UNTESTED CODE):
  67.      char* strerror ( int errnum )
  68.      {
  69.         if (errnum < 0 || errnum >= sys_nerr)
  70.            return "Unknown error"; 
  71.         else
  72.            return sys_errlist[errnum];
  73.      }
  74.    Or you could comment out the relevant calls to strerror; they're
  75.    not mission-critical.  Or you could upgrade to Solaris.  Ha ha ha!
  76.    (what??  you think I've got Bad Attitude?) 
  77. * Making a shared library on Solaris.  (Not really a compilation
  78.   problem, but many people ask ...)  
  79.   Firstly, if you have Solaris 8, either you have libbz2.so already
  80.   on your system, or you can install it from the Solaris CD.  
  81.   Secondly, be aware that there are potential naming conflicts
  82.   between the .so file supplied with Solaris 8, and the .so file
  83.   which Makefile-libbz2_so will make.  Makefile-libbz2_so creates
  84.   a .so which has the names which I intend to be "official" as
  85.   of version 1.0.0 and onwards.  Unfortunately, the .so in
  86.   Solaris 8 appeared before I decided on the final names, so
  87.   the two libraries are incompatible.  We have since communicated
  88.   and I hope that the problems will have been solved in the next
  89.   version of Solaris, whenever that might appear.
  90.   All that said: you might be able to get somewhere
  91.   by finding the line in Makefile-libbz2_so which says
  92.   $(CC) -shared -Wl,-soname -Wl,libbz2.so.1.0 -o libbz2.so.1.0.2 $(OBJS)
  93.   and replacing with 
  94.   $(CC) -G -shared -o libbz2.so.1.0.2 -h libbz2.so.1.0 $(OBJS)
  95.   
  96.   If gcc objects to the combination -fpic -fPIC, get rid of
  97.   the second one, leaving just "-fpic".
  98. That's the end of the currently known compilation problems.