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
e1848dde
Commit
e1848dde
authored
Jun 19, 2002
by
Nathanael Nerode
Committed by
DJ Delorie
Jun 19, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* configure.in: Pull definition of is_cross_compiler earlier.
From-SVN: r54807
parent
8bc2fff1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
13 deletions
+14
-13
ChangeLog
+2
-0
configure.in
+12
-13
No files found.
ChangeLog
View file @
e1848dde
2002-06-19 Nathanael Nerode <neroden@twcny.rr.com>
* configure.in: Pull definition of is_cross_compiler earlier.
* configure.in: Rearrange a little.
* configure.in: Remove references to librx.
...
...
configure.in
View file @
e1848dde
...
...
@@ -119,6 +119,14 @@ appdirs=""
# per-target:
# Define is_cross_compiler to save on calls to 'test'.
is_cross_compiler
=
if
test
x
"
${
host
}
"
=
x
"
${
target
}
"
;
then
is_cross_compiler
=
no
else
is_cross_compiler
=
yes
fi
# Don't use libstdc++-v3's flags to configure/build itself.
libstdcxx_flags
=
'`case $$dir in libstdc++-v3 | libjava) ;; *) test ! -f $$r/$(TARGET_SUBDIR)/libstdc++-v3/testsuite_flags || $(SHELL) $$r/$(TARGET_SUBDIR)/libstdc++-v3/testsuite_flags --build-includes;; esac` -L$$r/$(TARGET_SUBDIR)/libstdc++-v3/src -L$$r/$(TARGET_SUBDIR)/libstdc++-v3/src/.libs'
...
...
@@ -426,19 +434,10 @@ esac
# toolchains, we add some directories that should only be useful in a
# cross-compiler.
is_cross_compiler
=
if
test
x
"
${
host
}
"
=
x
"
${
target
}
"
;
then
# when doing a native toolchain, don't build the targets
# that are in the 'cross only' list
skipdirs
=
"
${
skipdirs
}
${
cross_only
}
"
is_cross_compiler
=
no
else
# similarly, don't build the targets in the 'native only'
# list when building a cross compiler
skipdirs
=
"
${
skipdirs
}
${
native_only
}
"
is_cross_compiler
=
yes
fi
case
$is_cross_compiler
in
no
)
skipdirs
=
"
${
skipdirs
}
${
cross_only
}
"
;;
yes
)
skipdirs
=
"
${
skipdirs
}
${
native_only
}
"
;;
esac
# We always want to use the same name for this directory, so that dejagnu
# can reliably find 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