Native support cleanup and corefile fixes for i386 SVR4 systems.
[deliverable/binutils-gdb.git] / gdb / config / ncr3000.mh
CommitLineData
5435f927
FF
1# Host: Intel 386 running SVR4.
2
3# The NCR 3000 ships with a MetaWare compiler installed as /bin/cc.
4c07f28d 4# This compiler not only emits obnoxious copyright messages every time
5435f927
FF
5# you run it, but it chokes and dies on a whole bunch of GNU source
6# files. Default to using the AT&T compiler installed in /usr/ccs/ATT/cc.
7# Unfortunately though, the AT&T compiler sometimes generates code that
8# the assembler barfs on if -g is used, so disable it by default as well.
9CC = /usr/ccs/ATT/cc
952131da 10CFLAGS =
5435f927
FF
11
12SYSV_DEFINE=-DSYSV
13REGEX=regex.o
14REGEX1=regex.o
15
16# Need to compile and link in support for SVR4's /proc and i386 host dependent
17# routines.
c36989aa 18XDEPFILES=
5435f927
FF
19
20# Use the i386 SVR4 host configuration file.
21XM_FILE= xm-i386v4.h
22
4d0eabff
FF
23NAT_FILE= nm-i386v4.h
24NATDEPFILES= corelow.o exec.o procfs.o fork-child.o i386v4-nat.o
c36989aa 25
5435f927
FF
26# We need to find alloca() somewhere. Gcc has one built in, but most other
27# compilers don't. Using the one in /usr/ucblib/libucb.a is tricky because
28# we have to be careful not to pull in anything else from the library (lots
29# of things are broken in most SVR4 versions). The best solution is to just
30# compile alloca.c and link it into the executable. If we end up not needing
31# it, then the code is just dead. Once alloca.c moves to libiberty, then we
32# can eliminate this semi-kludge.
33ALLOCA=alloca.o
34ALLOCA1=alloca.o
35
36# SVR4 comes standard with terminfo, and in some implementations, the
37# old termcap descriptions are incomplete. So ensure that we use the
38# new terminfo interface and latest terminal descriptions.
39TERMCAP=-ltermlib
36ce1b64 40
4c07f28d
FF
41# The /usr/ucb/install program is incompatible (complains about unknown
42# group staff). Use good old cp...
43INSTALL = cp
This page took 0.039175 seconds and 4 git commands to generate.