mirror of
https://sourceware.org/git/glibc.git
synced 2025-01-03 08:11:08 +00:00
* sysdeps/m68k/Makefile (crypt): Don't define if building a shared
library.
This commit is contained in:
parent
5f3d5c2bbb
commit
13bc775dc3
@ -1,5 +1,8 @@
|
|||||||
Tue Jan 16 17:37:39 1996 Roland McGrath <roland@churchy.gnu.ai.mit.edu>
|
Tue Jan 16 17:37:39 1996 Roland McGrath <roland@churchy.gnu.ai.mit.edu>
|
||||||
|
|
||||||
|
* sysdeps/m68k/Makefile (crypt): Don't define if building a shared
|
||||||
|
library.
|
||||||
|
|
||||||
* csu/initfini.c (_init): Call __gmon_start__ if defined (weak ref).
|
* csu/initfini.c (_init): Call __gmon_start__ if defined (weak ref).
|
||||||
* csu/gmon-start.c (__gmon_start__): Renamed from gmon_start, made
|
* csu/gmon-start.c (__gmon_start__): Renamed from gmon_start, made
|
||||||
global.
|
global.
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
# Copyright (C) 1993, 1994 Free Software Foundation, Inc.
|
# Copyright (C) 1993, 1994, 1996 Free Software Foundation, Inc.
|
||||||
# This file is part of the GNU C Library.
|
# This file is part of the GNU C Library.
|
||||||
|
|
||||||
# The GNU C Library is free software; you can redistribute it and/or
|
# The GNU C Library is free software; you can redistribute it and/or
|
||||||
@ -20,7 +20,10 @@
|
|||||||
# way to choose a sysdep file based on MIT vs Motorola syntax.
|
# way to choose a sysdep file based on MIT vs Motorola syntax.
|
||||||
# No existing m68k ports use Motorola syntax.
|
# No existing m68k ports use Motorola syntax.
|
||||||
|
|
||||||
crypt := crypt.sun3 # Use crypt/crypt.sun3.S.
|
# Don't use crypt/crypt.sun3.S. It's not pic-clean.
|
||||||
|
ifneq (yes,$(build-shared))
|
||||||
|
crypt := crypt.sun3
|
||||||
|
endif
|
||||||
|
|
||||||
# The mpn functions need this. All existing 68k ports use MIT syntax. If
|
# The mpn functions need this. All existing 68k ports use MIT syntax. If
|
||||||
# a new port wants to use Motorola or Sony syntax, it can redefine this
|
# a new port wants to use Motorola or Sony syntax, it can redefine this
|
||||||
@ -29,4 +32,4 @@ ifndef m68k-syntax-flag
|
|||||||
m68k-syntax-flag = -DMIT_SYNTAX
|
m68k-syntax-flag = -DMIT_SYNTAX
|
||||||
endif
|
endif
|
||||||
|
|
||||||
asm-CPPFLAGS := $(asm-CPPFLAGS) $(m68k-syntax-flag)
|
asm-CPPFLAGS += $(m68k-syntax-flag)
|
||||||
|
Loading…
Reference in New Issue
Block a user