We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 10da89c commit 31fba1dCopy full SHA for 31fba1d
src/include/port/svr4.h
@@ -2,3 +2,9 @@
2
# define USE_POSIX_SIGNALS
3
# define NO_EMPTY_STMTS
4
# define SYSV_DIRENT
5
+
6
+#ifndef BYTE_ORDER
7
+#ifdef MIPSEB
8
+#define BYTE_ORDER BIG_ENDIAN
9
+#endif
10
src/makefiles/Makefile.svr4
@@ -1,8 +1,8 @@
1
# MAKE_EXPORTS is required for svr4 loaders that want a file of
# symbol names to tell them what to export/import.
-MAKE_EXPORTS= true
+#MAKE_EXPORTS= true
-LDFLAGS+= /usr/ucblib/libucb.a -LD-Blargedynsym
+LDFLAGS+= -lc /usr/ucblib/libucb.a -LD-Blargedynsym
%.so: %.o
$(LD) -G -Bdynamic -o $@ $<
0 commit comments