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
5c90f17f
Commit
5c90f17f
authored
Nov 10, 2003
by
Arnaud Charlet
Committed by
Arnaud Charlet
Nov 10, 2003
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add handling of -nostdlib, now recognized/needed by gnat1.
From-SVN: r73413
parent
139f0d1e
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
14 additions
and
0 deletions
+14
-0
gcc/ada/ChangeLog
+5
-0
gcc/ada/lang.opt
+4
-0
gcc/ada/misc.c
+5
-0
No files found.
gcc/ada/ChangeLog
View file @
5c90f17f
2003
-
11
-
10
Arnaud
Charlet
<
charlet
@
act
-
europe
.
fr
>
2003
-
11
-
10
Arnaud
Charlet
<
charlet
@
act
-
europe
.
fr
>
*
misc
.
c
,
lang
.
opt
:
Add
handling
of
-
nostdlib
,
now
recognized
/
needed
by
gnat1
.
2003
-
11
-
10
Arnaud
Charlet
<
charlet
@
act
-
europe
.
fr
>
*
Makefile
.
in
,
Make
-
lang
.
in
:
Remove
build
of
gnat_wrapper
and
gnatpsta
,
*
Makefile
.
in
,
Make
-
lang
.
in
:
Remove
build
of
gnat_wrapper
and
gnatpsta
,
no
longer
needed
.
no
longer
needed
.
...
...
gcc/ada/lang.opt
View file @
5c90f17f
...
@@ -53,6 +53,10 @@ nostdinc
...
@@ -53,6 +53,10 @@ nostdinc
Ada RejectNegative
Ada RejectNegative
; Don't look for source files
; Don't look for source files
nostdlib
Ada
; Don't look for object files
fRTS
fRTS
Ada RejectNegative
Ada RejectNegative
...
...
gcc/ada/misc.c
View file @
5c90f17f
...
@@ -266,6 +266,11 @@ gnat_handle_option (size_t scode, const char *arg, int value ATTRIBUTE_UNUSED)
...
@@ -266,6 +266,11 @@ gnat_handle_option (size_t scode, const char *arg, int value ATTRIBUTE_UNUSED)
case
OPT_nostdinc
:
case
OPT_nostdinc
:
break
;
break
;
case
OPT_nostdlib
:
gnat_argv
[
gnat_argc
]
=
xstrdup
(
"-nostdlib"
);
gnat_argc
++
;
break
;
case
OPT_fRTS
:
case
OPT_fRTS
:
gnat_argv
[
gnat_argc
]
=
xstrdup
(
"-fRTS"
);
gnat_argv
[
gnat_argc
]
=
xstrdup
(
"-fRTS"
);
gnat_argc
++
;
gnat_argc
++
;
...
...
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