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
178f875a
Commit
178f875a
authored
Sep 04, 2012
by
Jason Merrill
Committed by
Jason Merrill
Sep 04, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* configure.ac: Fix --enable-languages=all.
From-SVN: r190945
parent
326280d4
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
12 additions
and
8 deletions
+12
-8
ChangeLog
+4
-0
configure
+4
-4
configure.ac
+4
-4
No files found.
ChangeLog
View file @
178f875a
2012-09-04 Jason Merrill <jason@redhat.com>
* configure.ac: Fix --enable-languages=all.
2012-09-04 Christophe Lyon <christophe.lyon@st.com>
* MAINTAINERS (Write After Approval): Add myself.
...
...
configure
View file @
178f875a
...
...
@@ -6112,6 +6112,7 @@ if test -d ${srcdir}/gcc; then
boot_language
=
yes
fi
add_this_lang
=
no
case
,
${
enable_languages
}
,
in
*
,
${
language
}
,
*
)
# Language was explicitly selected; include it
...
...
@@ -6122,10 +6123,9 @@ if test -d ${srcdir}/gcc; then
;;
*
,all,
*
)
# 'all' was selected, select it if it is a default language
add_this_lang
=
${
build_by_default
}
;;
*
)
add_this_lang
=
no
if
test
"
$language
"
!=
"c"
;
then
add_this_lang
=
${
build_by_default
}
fi
;;
esac
...
...
configure.ac
View file @
178f875a
...
...
@@ -1758,6 +1758,7 @@ if test -d ${srcdir}/gcc; then
boot_language=yes
fi
add_this_lang=no
case ,${enable_languages}, in
*,${language},*)
# Language was explicitly selected; include it
...
...
@@ -1768,10 +1769,9 @@ if test -d ${srcdir}/gcc; then
;;
*,all,*)
# 'all' was selected, select it if it is a default language
add_this_lang=${build_by_default}
;;
*)
add_this_lang=no
if test "$language" != "c"; then
add_this_lang=${build_by_default}
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