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
20f914dc
Commit
20f914dc
authored
Jun 02, 2001
by
Anthony Green
Committed by
Anthony Green
Jun 02, 2001
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
!defined(USE_LTDL) fix
From-SVN: r42813
parent
9f0fbbab
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
0 deletions
+13
-0
libjava/ChangeLog
+5
-0
libjava/java/lang/natRuntime.cc
+8
-0
No files found.
libjava/ChangeLog
View file @
20f914dc
2001-06-02 Anthony Green <green@redhat.com>
* java/lang/natRuntime.cc (_Jv_FindSymbolInExecutable): Provide an
alternate when USE_LTDL not defined.
2001-06-02 Anthony Green <green@redhat.com>
* configure: Rebuild.
* configure.in: Remove data_start hack.
* libgcj.spec.in: Ditto.
...
...
libjava/java/lang/natRuntime.cc
View file @
20f914dc
...
...
@@ -72,6 +72,14 @@ _Jv_FindSymbolInExecutable (const char *symname)
return
lt_dlsym
(
NULL
,
symname
);
}
#else
void
*
_Jv_FindSymbolInExecutable
(
const
char
*
symname
)
{
return
NULL
;
}
#endif
/* USE_LTDL */
void
...
...
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