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
763ecbbc
Commit
763ecbbc
authored
26 years ago
by
Mumit Khan
Committed by
Jeff Law
26 years ago
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
configure.in (EXEEXT): Define.
0 * configure.in (EXEEXT): Define. (compiler_name): Use. From-SVN: r25950
parent
adbfd1de
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
18 additions
and
3 deletions
+18
-3
libio/configure.in
+18
-3
No files found.
libio/configure.in
View file @
763ecbbc
...
...
@@ -2,13 +2,28 @@
# necessary for a configure script to process the program in
# this directory. For more information, look at ../configure.
# If the language specific compiler does not exist, but the "gcc" directory does,
# we do not build anything. Note, $r is set by the top-level Makefile.
# find a possible extension of the just-built C++ compiler. Note that this
# is not the only choice, taking into cross and canadian cross into
# account, and we need to search for with and without the extension.
case "${host_alias}" in
*cygwin* | *mingw32*)
EXEEXT=.exe
;;
*)
EXEEXT=
;;
esac
# If the language specific compiler does not exist, but the "gcc" directory
# does, we do not build anything. Note, $r is set by the top-level Makefile.
# Note that when we look for the compiler, we search both with and without
# extension to handle cross and canadian cross builds.
compiler_name=cc1plus
rm -f skip-this-dir
if test -n "$r"; then
if test -d "$r"/gcc; then
if test -f "$r"/gcc/$compiler_name; then
if test -f "$r"/gcc/$compiler_name \
|| test -f "$r"/gcc/$compiler_name$EXEEXT; then
true
else
echo "rm -f multilib.out" > skip-this-dir
...
...
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