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
0c639b89
Commit
0c639b89
authored
22 years ago
by
DJ Delorie
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* configure.in: Rearrange a little.
From-SVN: r54808
parent
e1848dde
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
26 additions
and
27 deletions
+26
-27
configure.in
+26
-27
No files found.
configure.in
View file @
0c639b89
...
...
@@ -497,33 +497,6 @@ if test x"${with_libs}" != x ; then
done
fi
# If both --with-headers and --with-libs are specified, default to
# --without-newlib.
if
test
x
"
${
with_headers
}
"
!=
x
&&
test
x
"
${
with_libs
}
"
!=
x
;
then
if
test
x
"
${
with_newlib
}
"
=
x
;
then
with_newlib
=
no
fi
fi
# Recognize --with-newlib/--without-newlib.
if
test
x
${
with_newlib
}
=
xno
;
then
skipdirs
=
"
${
skipdirs
}
target-newlib"
elif
test
x
${
with_newlib
}
=
xyes
;
then
skipdirs
=
`
echo
"
${
skipdirs
}
"
| sed
-e
's/ target-newlib / /'
`
fi
# Default to using --with-stabs for certain targets.
if
test
x
${
with_stabs
}
=
x
;
then
case
"
${
target
}
"
in
mips
*
-
*
-irix6
*
)
;;
mips
*
-
*
-
*
|
alpha
*
-
*
-osf
*
)
with_stabs
=
yes
;
withoptions
=
"
${
withoptions
}
--with-stabs"
;;
esac
fi
# Handle ${copy_dirs}
set
fnord
${
copy_dirs
}
shift
...
...
@@ -555,6 +528,32 @@ while test $# != 0 ; do
shift
;
shift
done
# If both --with-headers and --with-libs are specified, default to
# --without-newlib.
if
test
x
"
${
with_headers
}
"
!=
x
&&
test
x
"
${
with_libs
}
"
!=
x
;
then
if
test
x
"
${
with_newlib
}
"
=
x
;
then
with_newlib
=
no
fi
fi
# Recognize --with-newlib/--without-newlib.
case
${
with_newlib
}
in
no
)
skipdirs
=
"
${
skipdirs
}
target-newlib"
;;
yes
)
skipdirs
=
`
echo
"
${
skipdirs
}
"
| sed
-e
's/ target-newlib / /'
`
;;
esac
# Default to using --with-stabs for certain targets.
if
test
x
${
with_stabs
}
=
x
;
then
case
"
${
target
}
"
in
mips
*
-
*
-irix6
*
)
;;
mips
*
-
*
-
*
|
alpha
*
-
*
-osf
*
)
with_stabs
=
yes
;
withoptions
=
"
${
withoptions
}
--with-stabs"
;;
esac
fi
# Configure extra directories which are host specific
case
"
${
host
}
"
in
...
...
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