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
e948157d
Commit
e948157d
authored
Nov 08, 2011
by
Richard Henderson
Committed by
Richard Henderson
Nov 08, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Test for libitm directory present before testing for support.
From-SVN: r181179
parent
86fc3d06
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
31 additions
and
23 deletions
+31
-23
ChangeLog
+2
-0
configure
+15
-12
configure.ac
+14
-11
No files found.
ChangeLog
View file @
e948157d
2011-11-08 Richard Henderson <rth@redhat.com>
* configure.ac: Test for libitm directory present first.
* configure.ac: Adjust srcdir for running libitm/configure.tgt.
* configure.ac: Test libitm/configure.tgt to disable libitm.
...
...
configure
View file @
e948157d
...
...
@@ -3057,20 +3057,23 @@ if test x$enable_libgomp = x ; then
esac
fi
# Disable libitm on unsupported hosted systems.
if
test
x
$enable_libitm
=
x
;
then
{
$as_echo
"
$as_me
:
${
as_lineno
-
$LINENO
}
: checking for libitm support"
>
&5
# Disable libitm on unsupported systems.
if
test
-d
${
srcdir
}
/libitm
;
then
if
test
x
$enable_libitm
=
x
;
then
{
$as_echo
"
$as_me
:
${
as_lineno
-
$LINENO
}
: checking for libitm support"
>
&5
$as_echo_n
"checking for libitm support... "
>
&6
;
}
if
(
srcdir
=
${
srcdir
}
/libitm
;
\
.
${
srcdir
}
/configure.tgt
;
\
test
-n
"
$UNSUPPORTED
"
)
;
then
{
$as_echo
"
$as_me
:
${
as_lineno
-
$LINENO
}
: result: no"
>
&5
$as_echo
"no"
>
&6
;
}
noconfigdirs
=
"
$noconfigdirs
target-libitm"
else
{
$as_echo
"
$as_me
:
${
as_lineno
-
$LINENO
}
: result: yes"
>
&5
if
(
srcdir
=
${
srcdir
}
/libitm
;
\
.
${
srcdir
}
/configure.tgt
;
\
test
-n
"
$UNSUPPORTED
"
)
then
{
$as_echo
"
$as_me
:
${
as_lineno
-
$LINENO
}
: result: no"
>
&5
$as_echo
"no"
>
&6
;
}
noconfigdirs
=
"
$noconfigdirs
target-libitm"
else
{
$as_echo
"
$as_me
:
${
as_lineno
-
$LINENO
}
: result: yes"
>
&5
$as_echo
"yes"
>
&6
;
}
fi
fi
fi
fi
# Disable libssp for some systems.
...
...
configure.ac
View file @
e948157d
...
...
@@ -493,17 +493,20 @@ if test x$enable_libgomp = x ; then
esac
fi
# Disable libitm on unsupported hosted systems.
if test x$enable_libitm = x; then
AC_MSG_CHECKING([for libitm support])
if (srcdir=${srcdir}/libitm; \
. ${srcdir}/configure.tgt; \
test -n "$UNSUPPORTED"); then
AC_MSG_RESULT([no])
noconfigdirs="$noconfigdirs target-libitm"
else
AC_MSG_RESULT([yes])
fi
# Disable libitm on unsupported systems.
if test -d ${srcdir}/libitm; then
if test x$enable_libitm = x; then
AC_MSG_CHECKING([for libitm support])
if (srcdir=${srcdir}/libitm; \
. ${srcdir}/configure.tgt; \
test -n "$UNSUPPORTED")
then
AC_MSG_RESULT([no])
noconfigdirs="$noconfigdirs target-libitm"
else
AC_MSG_RESULT([yes])
fi
fi
fi
# Disable libssp for some systems.
...
...
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