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
40dc28fc
Commit
40dc28fc
authored
Dec 22, 1994
by
Ian Lance Taylor
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
On a NeXT, <limits.h> is sometimes not in /usr/include, so look elsewhere
From-SVN: r8689
parent
ad6c5fa9
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
10 additions
and
1 deletions
+10
-1
gcc/Makefile.in
+4
-1
gcc/config/i386/t-next
+3
-0
gcc/config/m68k/t-next
+3
-0
No files found.
gcc/Makefile.in
View file @
40dc28fc
...
...
@@ -137,6 +137,9 @@ SYSTEM_HEADER_DIR = /usr/include
# Control whether to run fixproto.
STMP_FIXPROTO
=
stmp-fixproto
# Test to see whether <limits.h> exists in the system header files.
LIMITS_H_TEST
=
[
-f
$(SYSTEM_HEADER_DIR)
/limits.h
]
# There may be a premade insn-attrtab.c for this machine.
# (You could rebuild it with genattrtab as usual, but it takes a long time.)
# PREMADE_ATTRTAB is the file name of the file to use.
...
...
@@ -679,7 +682,7 @@ enquire.o: $(srcdir)/enquire.c $(GCC_PASSES) stmp-int-hdrs
# Build the version of limits.h that we will install.
xlimits.h
:
glimits.h limitx.h limity.h
if
[
-f
$(SYSTEM_HEADER_DIR)
/limits.h
]
;
then
\
if
$(LIMITS_H_TEST)
;
then
\
cat
$(srcdir)
/limitx.h
$(srcdir)
/glimits.h
$(srcdir)
/limity.h
>
tmp-xlimits.h
;
\
else
\
cat
$(srcdir)
/glimits.h
>
tmp-xlimits.h
;
\
...
...
gcc/config/i386/t-next
View file @
40dc28fc
...
...
@@ -4,3 +4,6 @@ CROSS_LIBGCC1=libgcc1.null
# Specify other dirs of system header files to be fixed.
OTHER_FIXINCLUDES_DIRS= /LocalDeveloper/Headers
# <limits.h> is sometimes in /usr/include/ansi/limits.h.
LIMITS_H_TEST = [ -f $(SYSTEM_HEADER_DIR)/limits.h -o -f $(SYSTEM_HEADER_DIR)/ansi/limits.h ]
gcc/config/m68k/t-next
View file @
40dc28fc
...
...
@@ -4,3 +4,6 @@ CROSS_LIBGCC1=libgcc1.null
# Specify other dirs of system header files to be fixed.
OTHER_FIXINCLUDES_DIRS= /LocalDeveloper/Headers
# <limits.h> is sometimes in /usr/include/ansi/limits.h.
LIMITS_H_TEST = [ -f $(SYSTEM_HEADER_DIR)/limits.h -o -f $(SYSTEM_HEADER_DIR)/ansi/limits.h ]
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