From: Richard M. Stallman Date: Sun, 24 Dec 1995 23:19:14 +0000 (+0000) Subject: (STATIC_OPTION): For GCC, use -Xlinker. X-Git-Tag: emacs-19.34~2022 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=46f7d0885f04cbbc3b01b605e7662a49c5ebba7d;p=emacs.git (STATIC_OPTION): For GCC, use -Xlinker. (DYNAMIC_OPTION): Define like STATIC_OPTION. --- diff --git a/src/s/sol2-5.h b/src/s/sol2-5.h index 26986d433e6..944ec5e526d 100644 --- a/src/s/sol2-5.h +++ b/src/s/sol2-5.h @@ -9,7 +9,9 @@ #define LIBXT_STATIC #ifdef __GNUC__ -#define STATIC_OPTION -static +#define STATIC_OPTION -Xlinker -Bstatic +#define DYNAMIC_OPTION -Xlinker -Bdynamic #else #define STATIC_OPTION -Bstatic +#define DYNAMIC_OPTION -Bdynamic #endif