~ubuntu-branches/ubuntu/breezy/ace/breezy

« back to all changes in this revision

Viewing changes to include/makeinclude/platform_psos_tm.GNU

  • Committer: Bazaar Package Importer
  • Author(s): Adam Conrad, Benjamin Montgomery, Adam Conrad
  • Date: 2005-09-18 22:51:38 UTC
  • mfrom: (1.2.1 upstream) (2.1.1 sarge) (0.1.2 woody)
  • Revision ID: james.westby@ubuntu.com-20050918225138-seav22q6fyylb536
Tags: 5.4.7-3ubuntu1
[ Benjamin Montgomery ]
* Added a patch for amd64 and powerpc that disables the compiler
  option -fvisibility-inlines-hidden

[ Adam Conrad ]
* Added DPATCH_OPTION_CPP=1 to debian/patches/00options to make
  Benjamin's above changes work correctly with dpatch.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# platform_psos_tm.GNU,v 4.1 1998/09/02 16:59:54 cdgill Exp
2
 
# pSOS with Trimedia compiler
3
 
 
4
 
####
5
 
#### Notes: 
6
 
####
7
 
####   1) This file assumes that the PSS_ROOT environment variable is set.
8
 
####
9
 
 
10
 
TCS         = /net/neptune/neptune/n3/jin
11
 
#TCS        = /net/video/video/v0/dtv_stage1/TCS/SunOS
12
 
HOST        = tmsim
13
 
ENDIAN      = el
14
 
 
15
 
PSS_ROOT    = $(TCS)/OS/pSOS/pSOSystem
16
 
PSS_SYS_DIR     = $(PSS_ROOT)/sys/os
17
 
PSS_SYS_LIBS    = $(PSS_SYS_DIR)/psos_tm_$(ENDIAN).o 
18
 
 
19
 
PSOS_SYSTEM = $(TCS)/OS/pSOS/pSOSystem
20
 
PSOS_DEFS   = -DSC_PSOS=YES -DSC_PSOSM=NO -DSC_PNA=NO -D__sparc 
21
 
CC          = $(TCS)/bin/tmcc -$(ENDIAN)  -host $(HOST) $(PSOS_DEFS)
22
 
CXX         = $(TCS)/bin/tmCC -$(ENDIAN)  -host $(HOST) $(PSOS_DEFS)
23
 
CINCS       = -I. -I$(PSOS_SYSTEM)/include
24
 
#-I$(TCS)/include/$(HOST)
25
 
CFLAGS      = $(CINCS) 
26
 
CCFLAGS     = $(CINCS)
27
 
 
28
 
AR          = $(TCS)/bin/tmar
29
 
ARFLAGS     = rcv
30
 
LD          = $(TCS)/bin/tmld
31
 
LDFLAGS     = -bremoveunusedcode -bcompact -bfoldcode -ldev_g
32
 
 
33
 
RANLIB      = echo
34
 
 
35
 
# -w suppresses warnings 
36
 
# -H tells you which header files are being included 
37
 
# (switch between these)
38
 
#DCFLAGS         += -g
39
 
#DCFLAGS         += -g -H
40
 
#DCFLAGS         += -g -H -w
41
 
#DCFLAGS          += -g -w
42
 
 
43
 
LIBS            += $(PSS_SYS_LIBS)  
44
 
 
45
 
#INCLDIRS        += -I$(PSS_ROOT)/include -I$(PSS_BSP) -I$(ACE_ROOT)/ace
46
 
 
47