浏览代码

Add specific directory options for sparc and sparc64

git-svn-id: trunk@36386 -
pierre 8 年之前
父节点
当前提交
8a16ad775e
共有 1 个文件被更改,包括 8 次插入0 次删除
  1. 8 0
      ide/compiler/Makefile.fpc

+ 8 - 0
ide/compiler/Makefile.fpc

@@ -67,6 +67,14 @@ endif
 ifeq ($(PPC_TARGET),mipsel)
 override FPCOPT+= -Fu$(COMPILERDIR)/mips
 endif
+# sparc specific
+ifeq ($(PPC_TARGET),sparc)
+override FPCOPT+= -Fu$(COMPILERDIR)/sparcgen -Fi$(COMPILERDIR)/sparcgen
+endif
+# sparc64 specific
+ifeq ($(PPC_TARGET),sparc64)
+override FPCOPT+= -Fu$(COMPILERDIR)/sparcgen -Fi$(COMPILERDIR)/sparcgen
+endif
 
 
 [rules]