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
a588a9a1
Commit
a588a9a1
authored
Jun 09, 1997
by
Richard Kenner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Don't override a user's setting for prefix on platforms that use the
native prefix. From-SVN: r14199
parent
3ff2293f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
4 deletions
+6
-4
gcc/configure.in
+6
-4
No files found.
gcc/configure.in
View file @
a588a9a1
...
...
@@ -22,10 +22,7 @@
# Initialization and defaults
AC_INIT(tree.c)
AC_PREFIX_DEFAULT(/usr/local)
#prefix=/usr/local
native_prefix=/usr
#exec_prefix='$(prefix)'
local_prefix=/usr/local
remove=rm
hard_link=ln
...
...
@@ -1583,6 +1580,9 @@ for machine in $build $host $target; do
# On NetBSD, the headers are already okay.
fixincludes=Makefile.in
tmake_file=t-netbsd
if [[ x$prefix = xNONE ]]; then
prefix=$native_prefix
fi
prefix=$native_prefix
;;
mips-sony-bsd* | mips-sony-newsos*) # Sony NEWS 3600 or risc/news.
...
...
@@ -2562,7 +2562,9 @@ done
# Are we using gcc as the native compiler?
case $host in
*linux*) # All Linux's use gcc as the native compiler.
prefix=$native_prefix
if [[ x$prefix = xNONE ]]; then
prefix=$native_prefix
fi
;;
esac
...
...
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