Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
93a37120
Commit
93a37120
authored
Jan 31, 1992
by
Jim Blandy
Browse files
entered into RCS
parent
9ae5ee04
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
31 additions
and
1 deletion
+31
-1
src/m/mips4.h
src/m/mips4.h
+4
-0
src/s/isc2-2.h
src/s/isc2-2.h
+11
-1
src/unexfx2800.c
src/unexfx2800.c
+16
-0
No files found.
src/m/mips4.h
View file @
93a37120
...
...
@@ -14,11 +14,15 @@ NOTE-END */
/* Define MIPS2 if you have an R6000 or R4000. */
/* #define MIPS2 */
#ifdef __GNUC__
#define C_DEBUG_SWITCH -g -O
#else
#ifdef MIPS2
#define C_DEBUG_SWITCH -systype bsd43 -O -Olimit 791 -g3 -mips2
#else
#define C_DEBUG_SWITCH -systype bsd43 -O -Olimit 791 -g3
#endif
#endif
#ifdef TERMINFO
#undef TERMINFO
...
...
src/s/isc2-2.h
View file @
93a37120
...
...
@@ -7,7 +7,17 @@
#define HAVE_RENAME
#define HAVE_CLOSEDIR
#define MAXNAMLEN 512
#define LIB_STANDARD -lcposix -lc
#define LIB_STANDARD
-lPW
-lcposix -lc
#define O_NDELAY O_NONBLOCK
#define MEMORY_IN_STRING_H
#undef SIGTSTP
/* This communicates with m-intel386.h. */
#define DONT_DEFINE_SIGNAL
/* May be needed to avoid undefined symbols
such as gethostname, inet_addr, gethostbyname, socket, connect... */
#define LIBS_SYSTEM -linet
/* This system has job control. */
#undef NOMULTIPLEJOBS
src/unexfx2800.c
0 → 100644
View file @
93a37120
/* Unexec for the Alliant FX/2800. */
#include <stdio.h>
unexec
(
new_name
,
a_name
,
data_start
,
bss_start
,
entry_address
)
char
*
new_name
,
*
a_name
;
unsigned
data_start
,
bss_start
,
entry_address
;
{
int
stat
;
stat
=
elf_write_modified_data
(
a_name
,
new_name
);
if
(
stat
<
0
)
perror
(
"emacs: elf_write_modified_data"
);
else
if
(
stat
>
0
)
fprintf
(
stderr
,
"Unspecified error from elf_write_modified_data.
\n
"
);
}
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