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
089e52f7
Commit
089e52f7
authored
Feb 20, 2004
by
Nathanael Nerode
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* Makefile.direct, alloc.c: Resync to upstream 6.3 alpha 1.
From-SVN: r78142
parent
e0c34369
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
15 additions
and
6 deletions
+15
-6
boehm-gc/ChangeLog
+4
-0
boehm-gc/Makefile.direct
+11
-4
boehm-gc/alloc.c
+0
-2
No files found.
boehm-gc/ChangeLog
View file @
089e52f7
2004-02-19 Nathanael Nerode <neroden@gcc.gnu.org>
* Makefile.direct, alloc.c: Resync to upstream 6.3 alpha 1.
2004-01-20 Andrew Haley <aph@redhat.com>
* include/private/gcconfig.h (USE_MMAP): Define for all Linux.
...
...
boehm-gc/Makefile.direct
View file @
089e52f7
...
...
@@ -10,13 +10,20 @@
# c++ interface to gc.a
# cord/de - builds dumb editor based on cords.
ABI_FLAG
=
# ABI_FLAG should be the cc flag that specifies the ABI. On most
# platforms this will be the empty string. Possible values:
# +DD64 for 64-bit executable on HP/UX.
# -n32, -n64, -o32 for SGI/MIPS ABIs.
AS_ABI_FLAG
=
$(ABI_FLAG)
# ABI flag for assembler. On HP/UX this is +A64 for 64 bit
# executables.
CC
=
cc
$(ABI_FLAG)
CXX
=
g++
$(ABI_FLAG)
AS
=
as
$(ABI_FLAG)
AS
=
as
$(A
S_A
BI_FLAG)
# The above doesn't work with gas, which doesn't run cpp.
# Define AS as `gcc -c -x assembler-with-cpp' instead.
# Under Irix 6, you will have to specify the ABI (-o32, -n32, or -64)
# if you use something other than the default ABI on your machine.
# Redefining srcdir allows object code for the nonPCR version of the collector
# to be generated in different directories.
...
...
@@ -57,7 +64,7 @@ HOSTCFLAGS=$(CFLAGS)
# gc.h before performing thr_ or dl* or GC_ operations.)
# Must also define -D_REENTRANT.
# -DGC_SOLARIS_PTHREADS enables support for Solaris pthreads.
#
Define SOLARIS_THREADS as well.
#
(Internally this define GC_SOLARIS_THREADS as well.)
# -DGC_IRIX_THREADS enables support for Irix pthreads. See README.irix.
# -DGC_HPUX_THREADS enables support for HP/UX 11 pthreads.
# Also requires -D_REENTRANT or -D_POSIX_C_SOURCE=199506L. See README.hp.
...
...
boehm-gc/alloc.c
View file @
089e52f7
...
...
@@ -126,7 +126,6 @@ int GC_n_attempts = 0; /* Number of attempts at finishing */
unsigned
long
time_diff
;
if
((
count
++
&
3
)
!=
0
)
return
(
0
);
#ifndef NO_CLOCK
GET_TIME
(
current_time
);
time_diff
=
MS_TIME_DIFF
(
current_time
,
GC_start_time
);
if
(
time_diff
>=
GC_time_limit
)
{
...
...
@@ -139,7 +138,6 @@ int GC_n_attempts = 0; /* Number of attempts at finishing */
# endif
return
(
1
);
}
#endif
return
(
0
);
}
#endif
/* !SMALL_CONFIG */
...
...
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