PageRenderTime 35ms CodeModel.GetById 13ms RepoModel.GetById 0ms app.codeStats 0ms

/pcc-20111216/os/sunos/ccconfig.h

#
C Header | 69 lines | 24 code | 9 blank | 36 comment | 1 complexity | 0f019d607b53cf4802fa0723c8ed256a MD5 | raw file
  1. /* $Id: ccconfig.h,v 1.4 2011/06/04 19:27:26 plunky Exp $ */
  2. /*
  3. * Copyright (c) 2008 Adam Hoka.
  4. * All rights reserved.
  5. *
  6. * Redistribution and use in source and binary forms, with or without
  7. * modification, are permitted provided that the following conditions
  8. * are met:
  9. * 1. Redistributions of source code must retain the above copyright
  10. * notice, this list of conditions and the following disclaimer.
  11. * 2. Redistributions in binary form must reproduce the above copyright
  12. * notice, this list of conditions and the following disclaimer in the
  13. * documentation and/or other materials provided with the distribution.
  14. * 3. The name of the author may not be used to endorse or promote products
  15. * derived from this software without specific prior written permission
  16. *
  17. * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
  18. * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
  19. * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
  20. * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
  21. * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
  22. * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  23. * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  24. * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  25. * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
  26. * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  27. */
  28. /*
  29. * Various settings that controls how the C compiler works.
  30. */
  31. #ifndef LIBDIR
  32. #define LIBDIR "/usr/lib/"
  33. #endif
  34. /* common cpp predefines */
  35. #define CPPADD { "-Dunix", "-Dsun", "-D__SVR4", "-D__unix", "-D__sun", "-D__SunOS", "-D__ELF__", NULL }
  36. /* TODO: _ _SunOS_5_6, _ _SunOS_5_7, _ _SunOS_5_8, _ _SunOS_5_9, _ _SunOS_5_10 */
  37. /* host-dependent */
  38. #define CRT0FILE LIBDIR "crt1.o"
  39. #define CRT0FILE_PROFILE LIBDIR "gcrt1.o"
  40. #define STARTFILES { LIBDIR "crti.o", NULL }
  41. #define ENDFILES { LIBDIR "crtn.o", NULL }
  42. /* shared libraries linker files */
  43. #define STARTFILES_S { LIBDIR "crti.o", NULL }
  44. #define ENDFILES_S { LIBDIR "crtn.o", NULL }
  45. #define LIBCLIBS { "-lc", "-lpcc", NULL }
  46. #ifdef LANG_F77
  47. #define F77LIBLIST { "-L/usr/local/lib", "-lF77", "-lI77", "-lm", "-lc", NULL };
  48. #endif
  49. /* host-independent */
  50. #define DYNLINKER { "-Bdynamic", "/usr/lib/ld.so", NULL }
  51. #if defined(mach_i386)
  52. #define CPPMDADD { "-D__i386__", "-D__i386", NULL, }
  53. /* Let's keep it here in case of Polaris. ;) */
  54. #elif defined(mach_powerpc)
  55. #define CPPMDADD { "-D__ppc__", NULL, }
  56. #elif defined(mach_sparc64)
  57. #define CPPMDADD { "-D__sparc64__", "-D__sparc", NULL, }
  58. #else
  59. #error defines for arch missing
  60. #endif