Chris Lattner | 4bb13b8 | 2002-09-13 22:14:47 +0000 | [diff] [blame] | 1 | #===-- Makefile.SunOS - SunOS specific makefile options ---*- makefile -*--====# |
| 2 | # |
| 3 | # This file is included by all other files, through Makefile.common, but only |
| 4 | # when compiling on a solaris based platform. |
| 5 | # |
| 6 | #===-----------------------------------------------------------------------====# |
| 7 | |
| 8 | # MakeSharedObjectOption - This option is passed to the linker by |
| 9 | # Makefile.common when compiling a shared object. |
| 10 | # |
| 11 | MakeSharedObjectOption := -G |
| 12 | |
Chris Lattner | b5e4d8f | 2002-11-04 20:53:27 +0000 | [diff] [blame] | 13 | # PLATFORMLINKOPTS - On sun we need to link to libmalloc.so to get a definition |
| 14 | # of mallinfo. |
Nick Hildenbrandt | cae3783 | 2002-11-04 21:03:13 +0000 | [diff] [blame] | 15 | PLATFORMLINKOPTS := -lmalloc |
Chris Lattner | 4bb13b8 | 2002-09-13 22:14:47 +0000 | [diff] [blame] | 16 | |
Chris Lattner | 7f666ca | 2002-09-19 19:44:28 +0000 | [diff] [blame] | 17 | # Path to location for LLVM front-end for this architecture. This setting may |
| 18 | # be overriden by the Makefile.config option, and should not override it if set. |
| 19 | # |
| 20 | ifndef LLVMGCCDIR |
Chris Lattner | 50aa430 | 2002-10-10 19:28:10 +0000 | [diff] [blame] | 21 | LLVMGCCDIR := /home/vadve/lattner/cvs/gcc_install_sparc |
Chris Lattner | 7f666ca | 2002-09-19 19:44:28 +0000 | [diff] [blame] | 22 | endif |