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
9514f0d1
Commit
9514f0d1
authored
27 years ago
by
Richard Kenner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(with-gxx-include-dir): New parameter for setting the g++ header file
directory. From-SVN: r14201
parent
4d8392b7
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
7 deletions
+13
-7
gcc/configure.in
+13
-7
No files found.
gcc/configure.in
View file @
9514f0d1
...
...
@@ -65,13 +65,17 @@ 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.
#
# --local-prefix=DIR specifies directory to put local ./include in.
# --gxx-include-dir=DIR specifies directory to put g++ header files in.
#
# Specify the g++ header file directory
AC_ARG_WITH(gxx-include-dir,
[ --with-gxx-include-dir=DIR
specifies directory to put g++ header files.],
gxx_include_dir=$with_gxx_include_dir,
gxx_include_dir='${prefix}/include/g++')
# Default g++ header file directory if it is empty
if [[ x$gxx_include_dir = x ]]; then
gxx_include_dir='${prefix}/include/g++'
fi
# Determine the host, build, and target systems
AC_CANONICAL_SYSTEM
...
...
@@ -2911,6 +2915,7 @@ AC_SUBST(lang_options_files)
AC_SUBST(objc_thread_file)
AC_SUBST(version)
AC_SUBST(local_prefix)
AC_SUBST(gxx_include_dir)
AC_SUBST(fixincludes)
AC_SUBST(build_install_headers_dir)
AC_SUBST(exeext)
...
...
@@ -3003,6 +3008,7 @@ lang_options_files='${lang_options_files}'
objc_thread_file='${objc_thread_file}'
version='${version}'
local_prefix='${local_prefix}'
gxx_include_dir='${gxx_include_dir}'
fixincludes='${fixincludes}'
build_install_headers_dir='${build_install_headers_dir}'
exeext='${exeext}'
...
...
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