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
9a557138
Commit
9a557138
authored
Nov 11, 2015
by
Mike Frysinger
Committed by
Mike Frysinger
Nov 11, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
gcc: configure: fix test == bashisms
From-SVN: r230146
parent
f83cab84
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
9 additions
and
4 deletions
+9
-4
gcc/ChangeLog
+5
-0
gcc/configure
+2
-2
gcc/configure.ac
+2
-2
No files found.
gcc/ChangeLog
View file @
9a557138
2015
-
11
-
10
Mike
Frysinger
<
vapier
@
gentoo
.
org
>
*
configure
.
ac
:
Use
=
with
test
and
not
==.
*
configure
:
Regenerated
.
2015
-
11
-
11
David
Edelsohn
<
dje
.
gcc
@
gmail
.
com
>
*
config
/
rs6000
/
aix
.
h
(
TARGET_OS_AIX_CPP_BUILTINS
):
Add
cpu
and
gcc/configure
View file @
9a557138
...
...
@@ -28329,7 +28329,7 @@ else
enable_default_ssp=no
fi
if test x$enable_default_ssp =
=
xyes ; then
if test x$enable_default_ssp = xyes ; then
$as_echo "#define ENABLE_DEFAULT_SSP 1" >>confdefs.h
...
...
@@ -29181,7 +29181,7 @@ else
enable_default_pie
=
no
fi
if
test
x
$
enable_default_pie
=
=
xyes
;
then
if
test
x
$
enable_default_pie
=
xyes
;
then
$
as_echo
"#define ENABLE_DEFAULT_PIE 1"
>>
confdefs
.
h
...
...
gcc/configure.ac
View file @
9a557138
...
...
@@ -5463,7 +5463,7 @@ else
enable_default_ssp=no
fi],
enable_default_ssp=no)
if test x$enable_default_ssp =
=
xyes ; then
if test x$enable_default_ssp = xyes ; then
AC_DEFINE(ENABLE_DEFAULT_SSP, 1,
[Define if your target supports default stack protector and it is enabled.])
fi
...
...
@@ -6028,7 +6028,7 @@ AC_ARG_ENABLE(default-pie,
[enable Position Independent Executable as default])],
enable_default_pie=$enableval,
enable_default_pie=no)
if test x$enable_default_pie =
=
xyes ; then
if test x$enable_default_pie = xyes ; then
AC_DEFINE(ENABLE_DEFAULT_PIE, 1,
[Define if your target supports default PIE and it is enabled.])
fi
...
...
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