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
40673d2b
Commit
40673d2b
authored
Nov 04, 2002
by
Kevin Buettner
Committed by
Kevin Buettner
Nov 04, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Top level configury changes for RDA.
From-SVN: r58797
parent
deb778c2
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
19 additions
and
6 deletions
+19
-6
ChangeLog
+6
-0
Makefile.def
+1
-0
Makefile.in
+11
-5
configure.in
+1
-1
No files found.
ChangeLog
View file @
40673d2b
2002-11-04 Kevin Buettner <kevinb@redhat.com>
* Makefile.def (host_modules): Add rda.
* Makefile.in: Regenerate.
* configure.in (target_tool): Add target-rda to list.
2002-10-28 Gerald Pfeifer <pfeifer@dbai.tuwien.ac.at>
2002-10-28 Gerald Pfeifer <pfeifer@dbai.tuwien.ac.at>
* MAINTAINERS: Remove "co-maintainer" note for web pages.
* MAINTAINERS: Remove "co-maintainer" note for web pages.
...
...
Makefile.def
View file @
40673d2b
...
@@ -77,3 +77,4 @@ target_modules = { module= libjava; };
...
@@ -77,3 +77,4 @@ target_modules = { module= libjava; };
target_modules
=
{
module
=
zlib
;
}
;
target_modules
=
{
module
=
zlib
;
}
;
target_modules
=
{
module
=
boehm-gc
;
}
;
target_modules
=
{
module
=
boehm-gc
;
}
;
target_modules
=
{
module
=
qthreads
;
}
;
target_modules
=
{
module
=
qthreads
;
}
;
target_modules
=
{
module
=
rda
;
}
;
Makefile.in
View file @
40673d2b
...
@@ -760,7 +760,8 @@ ALL_TARGET_MODULES = \
...
@@ -760,7 +760,8 @@ ALL_TARGET_MODULES = \
all-target-libjava
\
all-target-libjava
\
all-target-zlib
\
all-target-zlib
\
all-target-boehm-gc
\
all-target-boehm-gc
\
all-target-qthreads
all-target-qthreads
\
all-target-rda
# This is a list of the configure targets for all of the modules which
# This is a list of the configure targets for all of the modules which
# are compiled using the target tools.
# are compiled using the target tools.
...
@@ -779,7 +780,8 @@ CONFIGURE_TARGET_MODULES = \
...
@@ -779,7 +780,8 @@ CONFIGURE_TARGET_MODULES = \
configure-target-libjava
\
configure-target-libjava
\
configure-target-zlib
\
configure-target-zlib
\
configure-target-boehm-gc
\
configure-target-boehm-gc
\
configure-target-qthreads
configure-target-qthreads
\
configure-target-rda
# This is a list of the check targets for all of the modules which are
# This is a list of the check targets for all of the modules which are
# compiled using $(TARGET_FLAGS_TO_PASS).
# compiled using $(TARGET_FLAGS_TO_PASS).
...
@@ -795,7 +797,8 @@ CHECK_TARGET_MODULES = \
...
@@ -795,7 +797,8 @@ CHECK_TARGET_MODULES = \
check-target-libjava
\
check-target-libjava
\
check-target-zlib
\
check-target-zlib
\
check-target-boehm-gc
\
check-target-boehm-gc
\
check-target-qthreads
check-target-qthreads
\
check-target-rda
# This is a list of the install targets for all of the modules which are
# This is a list of the install targets for all of the modules which are
# compiled using $(TARGET_FLAGS_TO_PASS).
# compiled using $(TARGET_FLAGS_TO_PASS).
...
@@ -812,7 +815,8 @@ INSTALL_TARGET_MODULES = \
...
@@ -812,7 +815,8 @@ INSTALL_TARGET_MODULES = \
install-target-libjava
\
install-target-libjava
\
install-target-zlib
\
install-target-zlib
\
install-target-boehm-gc
\
install-target-boehm-gc
\
install-target-qthreads
install-target-qthreads
\
install-target-rda
# This is a list of the targets for which we can do a clean-{target}.
# This is a list of the targets for which we can do a clean-{target}.
CLEAN_MODULES
=
\
CLEAN_MODULES
=
\
...
@@ -892,7 +896,8 @@ CLEAN_TARGET_MODULES = \
...
@@ -892,7 +896,8 @@ CLEAN_TARGET_MODULES = \
clean-target-libjava
\
clean-target-libjava
\
clean-target-zlib
\
clean-target-zlib
\
clean-target-boehm-gc
\
clean-target-boehm-gc
\
clean-target-qthreads
clean-target-qthreads
\
clean-target-rda
# All of the x11 modules that can be cleaned
# All of the x11 modules that can be cleaned
CLEAN_X11_MODULES
=
\
CLEAN_X11_MODULES
=
\
...
@@ -1762,6 +1767,7 @@ all-target-libjava: configure-target-libjava
...
@@ -1762,6 +1767,7 @@ all-target-libjava: configure-target-libjava
all-target-zlib
:
configure-target-zlib
all-target-zlib
:
configure-target-zlib
all-target-boehm-gc
:
configure-target-boehm-gc
all-target-boehm-gc
:
configure-target-boehm-gc
all-target-qthreads
:
configure-target-qthreads
all-target-qthreads
:
configure-target-qthreads
all-target-rda
:
configure-target-rda
### other supporting targets
### other supporting targets
...
...
configure.in
View file @
40673d2b
...
@@ -76,7 +76,7 @@ target_libs="target-libiberty \
...
@@ -76,7 +76,7 @@ target_libs="target-libiberty \
# list belongs in this list. those programs are also very likely
# list belongs in this list. those programs are also very likely
# candidates for the "native_only" list which follows
# candidates for the "native_only" list which follows
#
#
target_tools
=
"target-examples target-groff target-gperf"
target_tools
=
"target-examples target-groff target-gperf
target-rda
"
################################################################################
################################################################################
...
...
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