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
179a9caf
Commit
179a9caf
authored
22 years ago
by
Jason Thorpe
Committed by
Jason Thorpe
22 years ago
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* include/private/gcconfig.h: Fix NetBSD/mips parameters.
From-SVN: r57479
parent
58e60158
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
17 deletions
+12
-17
boehm-gc/ChangeLog
+4
-0
boehm-gc/include/private/gcconfig.h
+8
-17
No files found.
boehm-gc/ChangeLog
View file @
179a9caf
2002-09-24 Jason Thorpe <thorpej@wasabisystems.com>
* include/private/gcconfig.h: Fix NetBSD/mips parameters.
2002-08-23 Adam Megacz <adam@xwt.org>
* Removed extraneous ABORT()
...
...
This diff is collapsed.
Click to expand it.
boehm-gc/include/private/gcconfig.h
View file @
179a9caf
...
...
@@ -95,8 +95,8 @@
# if defined(nec_ews) || defined(_nec_ews)
# define EWS4800
# endif
# if !defined(LINUX) && !defined(EWS4800)
# if defined(ultrix) || defined(__ultrix)
|| defined(__NetBSD__)
# if !defined(LINUX) && !defined(EWS4800)
&& !defined(NETBSD)
# if defined(ultrix) || defined(__ultrix)
# define ULTRIX
# else
# if defined(_SYSTYPE_SVR4) || defined(SYSTYPE_SVR4) \
...
...
@@ -107,9 +107,6 @@
# endif
# endif
# endif
/* !LINUX */
# if defined(__NetBSD__) && defined(__MIPSEL__)
# undef ULTRIX
# endif
# define mach_type_known
# endif
# if defined(sequent) && (defined(i386) || defined(__i386__))
...
...
@@ -1226,21 +1223,15 @@
# define DATAEND
/* not needed */
# endif
# if defined(NETBSD)
/* This also checked for __MIPSEL__ . Why? NETBSD recognition */
/* should be handled at the top of the file. */
# define ALIGNMENT 4
# define OS_TYPE "NETBSD"
# define ALIGNMENT 4
# define HEURISTIC2
# define USE_GENERIC_PUSH_REGS
# ifdef __ELF__
extern
int
etext
[];
# define DATASTART GC_data_start
# define NEED_FIND_LIMIT
# define DYNAMIC_LOADING
# else
# define DATASTART ((ptr_t) 0x10000000)
# define STACKBOTTOM ((ptr_t) 0x7ffff000)
# endif
/* _ELF_ */
extern
int
_fdata
[];
# define DATASTART ((ptr_t)(_fdata))
extern
int
_end
[];
# define DATAEND ((ptr_t)(_end))
# define DYNAMIC_LOADING
# endif
# endif
...
...
This diff is collapsed.
Click to expand it.
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