Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
R
riscv-gcc-1
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
riscv-gcc-1
Commits
6c8c8a4b
Commit
6c8c8a4b
authored
Jan 23, 1994
by
Richard Kenner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Assume GAS 2.x used and add support for debugging.
From-SVN: r6415
parent
b5ff0f70
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
32 additions
and
10 deletions
+32
-10
gcc/config/m68k/plexus.h
+32
-10
No files found.
gcc/config/m68k/plexus.h
View file @
6c8c8a4b
/* Definitions of target machine for GNU compiler.
Copyright (C) 1990 Free Software Foundation, Inc.
Copyright (C) 1990
, 1994
Free Software Foundation, Inc.
Written by Randy Welch
Send bug reports, questions and improvements to any of the following
addresses:
randy@kcin.alphacdc.com
rwelch@isis.cs.du.eu
rwelch@csn.org
randy@kcin.uucp
randy@tss.com
rwelch@netcom.com
plx-info@wpg.com Plexus users mailing list
For
Plexus P/60 and assumably P/35 P/75 P/95's running System V.
2
For
680X0 based Plexus Computers running SYSVR
2
This file outputs assembler source for gas-1.38.1 with the COFF patches
The patches for gas-1.38.1 to support COFF is on ftp.cs.umb.edu in pub/gnu
No debugging is supported, due to the fact that the only debugger Plexus
had was adb *sigh*.
The Plexus port of gcc requires you to use gas ( either 1.3X with COFF
patches or 2.X ), If you use gas 2.X you have to use binutils-2.X.
With using gas-2.X the Plexus gcc port is now capabable of generating
output suitable for use by gdb-4.X ( send mail to above address for
info on getting gdb patches or other GNU items for the Plexus )
This is configured for label output default by gas as LXXX instead of
plexus cc/as combination requires .LXXX
...
...
@@ -78,9 +81,28 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
#undef NEED_PROBE
#define NEED_PROBE -132
/* plexus needs a stack probe */
/***********************************************************************/
/* if you have binutils-2.X and gas-2.X running you can generate code */
/* that gdb can understand ( gdb support available for 4.11 ) */
/* */
/* If you use gas-1.3X don't define this as the version of the coff */
/* patches for gas-1.3x ( stabs in coff ) does not generate coff debug */
/* syms */
/***********************************************************************/
#define HAVE_GAS_2_X
#ifdef HAVE_GAS_2_X
#undef DBX_DEBUGGING_INFO
#define SDB_DEBUGGING_INFO
#undef ASM_FILE_START
#define ASM_FILE_START(FILE) \
output_file_directive((FILE), main_input_filename)
#else
#undef DBX_DEBUGGING_INFO
/* no real debugger */
#undef SDB_DEBUGGING_INFO
#endif
#define TARGET_MEM_FUNCTIONS
/***********************************************************************/
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment