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
4d8392b7
Commit
4d8392b7
authored
27 years ago
by
Richard Kenner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add parameter for setting local prefix.
From-SVN: r14200
parent
a588a9a1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
2 deletions
+12
-2
gcc/configure.in
+12
-2
No files found.
gcc/configure.in
View file @
4d8392b7
...
...
@@ -23,7 +23,6 @@
# Initialization and defaults
AC_INIT(tree.c)
native_prefix=/usr
local_prefix=/usr/local
remove=rm
hard_link=ln
symbolic_link='ln -s'
...
...
@@ -39,7 +38,7 @@ gnu_ld=no)
# With GNU as
AC_ARG_WITH(gnu-as,
[ --with-gnu-
s
arrange to work with GNU as.],
[ --with-gnu-
as
arrange to work with GNU as.],
gas=yes,
gas=no)
...
...
@@ -55,6 +54,17 @@ AC_ARG_WITH(elf,
elf=yes,
elf=no)
# Specify the local prefix
AC_ARG_WITH(local-prefix,
[ --with-local-prefix=DIR specifies directory to put local include.],
local_prefix=$with_local_prefix,
local_prefix=/usr/local)
# Default local prefix if it is empty
if [[ x$local_prefix = x ]]; then
local_prefix=/usr/local
fi
#
# Shell script to create proper links to machine-dependent files in
# preparation for compiling gcc.
...
...
This diff is collapsed.
Click to expand it.
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