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
b0bfa186
Commit
b0bfa186
authored
Sep 09, 1993
by
Ian Lance Taylor
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use CROSS_LIBGCC1 for a cross-compiler
From-SVN: r5294
parent
4d87de75
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
3 deletions
+8
-3
gcc/Makefile.in
+4
-0
gcc/cross-make
+4
-3
No files found.
gcc/Makefile.in
View file @
b0bfa186
...
@@ -188,6 +188,10 @@ INSTALL_LIBGCC = install-libgcc
...
@@ -188,6 +188,10 @@ INSTALL_LIBGCC = install-libgcc
# with or for libgcc1.a.
# with or for libgcc1.a.
LIBGCC1
=
libgcc1.a
LIBGCC1
=
libgcc1.a
# Specify the rule for making libgcc1.a for a cross-compiler.
# The default rule assumes that libgcc1.a is supplied by the user.
CROSS_LIBGCC1
=
libgcc1.cross
# Specify the rule for actually making libgcc2.a.
# Specify the rule for actually making libgcc2.a.
LIBGCC2
=
libgcc2.a
LIBGCC2
=
libgcc2.a
...
...
gcc/cross-make
View file @
b0bfa186
# Expect user to provide libgcc1.a,
# Build libgcc1.a for a cross-compiler.
# and give up immediately if the user has not done so.
# By default this expects the user to provide libgcc1.a,
LIBGCC1 = libgcc1.cross
# and gives up immediately if the user has not done so.
LIBGCC1 = $(CROSS_LIBGCC1)
# Specify tools and options for manipulating libraries for the target machine.
# Specify tools and options for manipulating libraries for the target machine.
AR = $(AR_FOR_TARGET)
AR = $(AR_FOR_TARGET)
...
...
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