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
7fa10b25
Commit
7fa10b25
authored
Jun 09, 1997
by
Richard Kenner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(cross_overrides, build_overrides): Use absolute path to GCC top-level
source directory. From-SVN: r14205
parent
6920c391
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
2 deletions
+8
-2
gcc/configure.in
+8
-2
No files found.
gcc/configure.in
View file @
7fa10b25
...
@@ -2601,6 +2601,12 @@ do
...
@@ -2601,6 +2601,12 @@ do
fi
fi
done
done
# Get an absolute path to the GCC top-level source directory
holddir=`pwd`
cd $srcdir
topdir=`pwd`
cd $holddir
# These (without "all_") are set in each config-lang.in.
# These (without "all_") are set in each config-lang.in.
# `language' must be a single word so is spelled singularly.
# `language' must be a single word so is spelled singularly.
all_languages=
all_languages=
...
@@ -2870,7 +2876,7 @@ do
...
@@ -2870,7 +2876,7 @@ do
if [[ x$host != x$target ]]
if [[ x$host != x$target ]]
then
then
cross_defines="CROSS=-DCROSS_COMPILE"
cross_defines="CROSS=-DCROSS_COMPILE"
cross_overrides="
.
/cross-make"
cross_overrides="
${topdir}
/cross-make"
fi
fi
# When building gcc with a cross-compiler, we need to fix a few things.
# When building gcc with a cross-compiler, we need to fix a few things.
...
@@ -2878,7 +2884,7 @@ do
...
@@ -2878,7 +2884,7 @@ do
# all.cross.
# all.cross.
if [[ x$build != x$host ]]
if [[ x$build != x$host ]]
then
then
build_overrides="
.
/build-make"
build_overrides="
${topdir}
/build-make"
fi
fi
cd $STARTDIR
cd $STARTDIR
...
...
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