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
c5ac5edb
Commit
c5ac5edb
authored
Apr 22, 2002
by
Loren J. Rittle
Committed by
Loren J. Rittle
Apr 22, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* docs/html/17_intro/porting.texi (_GLIBCPP_AVOID_FSEEK): Remove.
From-SVN: r52642
parent
9340544b
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
8 deletions
+5
-8
libstdc++-v3/ChangeLog
+4
-0
libstdc++-v3/docs/html/17_intro/porting.texi
+1
-8
No files found.
libstdc++-v3/ChangeLog
View file @
c5ac5edb
2002-04-22 Loren J. Rittle <ljrittle@acm.org>
* docs/html/17_intro/porting.texi (_GLIBCPP_AVOID_FSEEK): Remove.
2002-04-20 Jason Merrill <jason@redhat.com>
PR libstdc++/4150
...
...
libstdc++-v3/docs/html/17_intro/porting.texi
View file @
c5ac5edb
...
...
@@ -142,18 +142,11 @@ need to define. You will need to add them to the
target
.
It
will
not
work
to
simply
define
these
macros
in
@file
{
os_defines
.
h
}.
At
this
time
,
there
are
two
libstdc
++-
v3
-
specific
macros
which
may
be
At
this
time
,
there
is
one
libstdc
++-
v3
-
specific
macro
which
may
be
defined
.
@code
{
_G_USING_THUNKS
}
may
be
defined
to
0
to
express
that
the
port
doesn
'
t
use
thunks
(
although
it
is
unclear
that
this
is
still
useful
since
libio
support
isn
'
t
currently
working
and
the
g
++
v3
ABI
invalidates
the
assumption
that
some
ports
don
'
t
use
thunks
).
@code
{
_GLIBCPP_AVOID_FSEEK
}
may
be
defined
if
seeking
on
an
interactive
stream
(
or
one
hooked
to
a
pipe
)
is
not
allowed
by
the
OS
.
In
this
case
,
getc
()
/
ungetc
()
will
be
used
at
some
key
locations
in
the
library
implementation
instead
of
fseek
().
Currently
,
the
code
path
to
avoid
fseek
()
is
only
enabled
when
the
seek
size
is
1
character
away
from
the
current
stream
position
.
This
is
known
to
improve
*-
unknown
-
freebsd
*
,
sparc
-
sun
-
solaris2
.
*
and
*-*-
mingw32
*
.
Finally
,
you
should
bracket
the
entire
file
in
an
include
-
guard
,
like
this
:
...
...
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