mirror of
https://github.com/gnustep/tools-make.git
synced 2025-04-23 22:33:28 +00:00
Fix up bundle flags for darwin
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/tools/make/branches/freeze-1_8_0@17717 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
a1c4b02887
commit
b3d1e7f9b1
3 changed files with 26 additions and 2 deletions
|
@ -1,3 +1,7 @@
|
|||
2003-09-25 Adam Fedor <fedor@gnu.org>
|
||||
|
||||
* target.make (darwin): Fix up bundle flags for GNU compiler.
|
||||
|
||||
2003-09-19 Leigh Smith <leigh@leighsmith.com>
|
||||
|
||||
* library.make: Changed the full .inp declaration to $(DLL_DEF_INP).
|
||||
|
|
|
@ -479,5 +479,25 @@ better. When compiling gnustep-back, start with
|
|||
./configure --enable-graphics=art
|
||||
@end example
|
||||
|
||||
@node No Makefile, , Problems with gcc3, Troubleshooting
|
||||
@subsection No Makefile
|
||||
|
||||
I tried to compile something and I get:
|
||||
|
||||
@example
|
||||
GNUmakefile:27: /Makefiles/common.make: No such file or directory
|
||||
GNUmakefile:39: /Makefiles/aggregate.make: No such file or directory
|
||||
gmake: *** No rule to make target `/Makefiles/aggregate.make'. Stop.
|
||||
@end example
|
||||
|
||||
Make sure you have installed the gnustep-make package and also type:
|
||||
|
||||
@example
|
||||
source /usr/GNUstep/System/Library/Makefiles/GNUstep.sh
|
||||
@end example
|
||||
|
||||
You can put this line in your @file{.profile} or @file{.bash_profile} file
|
||||
so that it is done automatically when you log in.
|
||||
|
||||
@bye
|
||||
\bye
|
||||
|
|
|
@ -284,8 +284,8 @@ SHARED_LIB_LINK_CMD = \
|
|||
$(LN_S) $(LIB_LINK_VERSION_FILE) $(LIB_LINK_SONAME_FILE); \
|
||||
$(LN_S) $(LIB_LINK_VERSION_FILE) $(LIB_LINK_FILE))
|
||||
|
||||
BUNDLE_LD = /usr/bin/libtool
|
||||
BUNDLE_LDFLAGS += -dynamic -flat_namespace -undefined warning $(ARCH_FLAGS)
|
||||
BUNDLE_LD = /usr/bin/ld
|
||||
BUNDLE_LDFLAGS += -bundle -flat_namespace -undefined warning /usr/lib/bundle1.o
|
||||
|
||||
else
|
||||
# NeXT Compiler
|
||||
|
|
Loading…
Reference in a new issue