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
d65ae058
Commit
d65ae058
authored
Oct 30, 1998
by
Andreas Schwab
Committed by
Andreas Schwab
Oct 30, 1998
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* configure.in: Ignore non-absolute value in $AS.
From-SVN: r23451
parent
f5343a9d
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
2 deletions
+9
-2
gcc/ChangeLog
+4
-0
gcc/configure.in
+5
-2
No files found.
gcc/ChangeLog
View file @
d65ae058
Fri
Oct
30
10
:
43
:
29
1998
Andreas
Schwab
<
schwab
@issan
.
cs
.
uni
-
dortmund
.
de
>
*
configure
.
in
:
Ignore
non
-
absolute
value
in
$
AS
.
Fri
Oct
30
00
:
54
:
25
1998
Peter
Jakubek
<
pjak
@snafu
.
de
>
Fri
Oct
30
00
:
54
:
25
1998
Peter
Jakubek
<
pjak
@snafu
.
de
>
*
m68k
.
h
(
INDIRECTABLE_1_ADDRESS_P
)
:
Fix
thinko
.
*
m68k
.
h
(
INDIRECTABLE_1_ADDRESS_P
)
:
Fix
thinko
.
...
...
gcc/configure.in
View file @
d65ae058
...
@@ -112,14 +112,17 @@ gas_flag=no)
...
@@ -112,14 +112,17 @@ gas_flag=no)
AC_ARG_WITH(as,
AC_ARG_WITH(as,
[ --with-as arrange to use the specified as (full pathname).],
[ --with-as arrange to use the specified as (full pathname).],
AS="$with_as")
AS="$with_as")
if test x"${AS+set}" = x"set"; then
# Ignore any non-absolute value which comes from ${GCC_FLAGS_TO_PASS}.
case $AS in
/*)
if test ! -x "$AS"; then
if test ! -x "$AS"; then
AC_MSG_WARN([cannot execute: $AS: check --with-as or env. var. AS])
AC_MSG_WARN([cannot execute: $AS: check --with-as or env. var. AS])
elif test "GNU" = `$AS -v </dev/null 2>&1 | sed '1s/^GNU.*/GNU/;q'`; then
elif test "GNU" = `$AS -v </dev/null 2>&1 | sed '1s/^GNU.*/GNU/;q'`; then
gas_flag=yes
gas_flag=yes
fi
fi
AC_DEFINE_UNQUOTED(DEFAULT_ASSEMBLER,"$AS")
AC_DEFINE_UNQUOTED(DEFAULT_ASSEMBLER,"$AS")
fi
;;
esac
# With stabs
# With stabs
AC_ARG_WITH(stabs,
AC_ARG_WITH(stabs,
...
...
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