Updated FTK makefile to detect the Sun Studio compiler.

git-svn-id: https://svn.code.sf.net/p/flaim/code/trunk@637 0109f412-320b-0410-ab79-c3e0c5ffbbe6
This commit is contained in:
ahodgkinson
2006-07-06 19:03:29 +00:00
parent 4f9dbe409c
commit 25871146ba

View File

@@ -837,6 +837,10 @@ ifdef unix_target
compiler = CC
exe_linker = CC
shared_linker = ld
compiler_version := $(shell $(compiler) -V)
ifneq (,$(findstring Sun C++,$(compiler_version)))
sun_studio_compiler = yes
endif
endif
endif
@@ -905,7 +909,10 @@ ifdef unix_target
ifeq ($(target_os_family),solaris)
ifeq ($(usenativecc),yes)
ccflags += -KPIC -errwarn=%all -errtags -erroff=hidef,inllargeuse
ccflags += -KPIC
ifeq ($(sun_studio_compiler),yes)
ccflags += -errwarn=%all -errtags -erroff=hidef,inllargeuse
endif
ifeq ($(target_word_size),64)
ccflags += -xarch=generic64
else