aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman1995-04-10 01:15:50 +0000
committerRichard M. Stallman1995-04-10 01:15:50 +0000
commit80ccb2b34a672598d60bd83da3224a70d6b86482 (patch)
tree1e6b0c0c4d704a73a9c4ede35b247fad77008b1d /src
parent8101ff7f95786a83a2018b852f8f4e569a40591d (diff)
downloademacs-80ccb2b34a672598d60bd83da3224a70d6b86482.tar.gz
emacs-80ccb2b34a672598d60bd83da3224a70d6b86482.zip
Initial revision
Diffstat (limited to 'src')
-rw-r--r--src/m/ncr386.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/m/ncr386.h b/src/m/ncr386.h
new file mode 100644
index 00000000000..2599456a873
--- /dev/null
+++ b/src/m/ncr386.h
@@ -0,0 +1,15 @@
1#include "intel386.h"
2
3#ifndef __GNUC__
4/* Allow emacs to link with "bcopy()" unresolved. Works around a
5 problem where /usr/lib/libX11.so provides bcopy, but
6 /usr/ccs/lib/libX11.so does not. */
7#define LD_SWITCH_X_DEFAULT -Wl,-z,nodefs
8#else /* __GNUC__ */
9
10/* Assuming we are using GNU ld, pass a -R option to it
11 so that shared libraries will be found at execution time
12 just as they are found at link time. */
13#define LD_SWITCH_X_DEFAULT -Xlinker LD_SWITCH_X_SITE_AUX
14
15#endif /* __GNUC__ */