mirror of
https://github.com/gnustep/tools-make.git
synced 2025-04-23 22:33:28 +00:00
Version 2.4.0
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/tools/make/trunk@30323 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
7ad56c712e
commit
3b6cd98f5c
8 changed files with 47 additions and 8 deletions
33
ANNOUNCE
33
ANNOUNCE
|
@ -1,7 +1,7 @@
|
|||
1 Announcement
|
||||
**************
|
||||
|
||||
The GNUstep Makefile Package version 2.2.0 is now available.
|
||||
The GNUstep Makefile Package version 2.4.0 is now available.
|
||||
|
||||
1.1 What is the GNUstep makefile package?
|
||||
=========================================
|
||||
|
@ -12,7 +12,32 @@ project without having to deal with the complex issues associated with
|
|||
configuration, building, installation, and packaging. It also allows
|
||||
the user to easily create cross-compiled binaries.
|
||||
|
||||
1.2 Changes in version `2.2.0'
|
||||
1.2 Changes in version `2.4.0'
|
||||
==============================
|
||||
|
||||
* Add -enable-objc-nonfragile-abi flag
|
||||
|
||||
* New serial-subdirectories.make and parallel-subdirectories.make.
|
||||
|
||||
* Support for parallel building of subdirectories.
|
||||
|
||||
* Support for parallel building of different instances.
|
||||
|
||||
* Support source files in subdirectories without using a subproject.
|
||||
|
||||
* Support header files in sub-subdirectories.
|
||||
|
||||
* Batch-compile Java files (much faster).
|
||||
|
||||
* Changed default compilation flags to -O2 -g.
|
||||
|
||||
* Fixes for building documentation.
|
||||
|
||||
* Renamed info files to prevent conflicts.
|
||||
|
||||
* Updated cygwin support.
|
||||
|
||||
1.3 Changes in version `2.2.0'
|
||||
==============================
|
||||
|
||||
* New -with-objc-lib-flag for specifying libobjc.
|
||||
|
@ -26,10 +51,10 @@ the user to easily create cross-compiled binaries.
|
|||
|
||||
* make uninstall works better now.
|
||||
|
||||
1.3 Obtaining gnustep-make
|
||||
1.4 Obtaining gnustep-make
|
||||
==========================
|
||||
|
||||
You can get the gstep-make-2.2.0.tar.gz distribution file at
|
||||
You can get the gstep-make-2.4.0.tar.gz distribution file at
|
||||
`ftp://ftp.gnustep.org/pub/gnustep/core'
|
||||
|
||||
Please log bug reports on the GNUstep project page
|
||||
|
|
|
@ -1,3 +1,7 @@
|
|||
2010-05-08 Adam Fedor <fedor@gnu.org>
|
||||
|
||||
* Version 2.4.0
|
||||
|
||||
2010-04-24 Nicola Pero <nicola.pero@meta-innovation.com>
|
||||
|
||||
Fixed problem reported by Chris Corbyn <chris@w3style.co.uk> where
|
||||
|
|
|
@ -69,9 +69,9 @@ include $(GNUSTEP_MAKEFILES)/common.make
|
|||
DOCUMENT_NAME = gnustep-howto gnustep-faq gnustep-filesystem gnustep-internals gnustep-make gnustep-userfaq
|
||||
|
||||
# The text documents to be generated
|
||||
DOCUMENT_TEXT_NAME = FAQ INSTALL README NEWS RELEASENOTES GNUstep-HOWTO ANNOUNCE
|
||||
DOCUMENT_TEXT_NAME = INSTALL README NEWS RELEASENOTES ANNOUNCE
|
||||
|
||||
TOP_DOC_FILES = FAQ INSTALL README NEWS RELEASENOTES GNUstep-HOWTO ANNOUNCE
|
||||
TOP_DOC_FILES = INSTALL README NEWS RELEASENOTES ANNOUNCE
|
||||
README_FILES = README.Darwin README.MinGWOnCygwin README.Cygwin \
|
||||
README.MinGW
|
||||
|
||||
|
|
|
@ -12,6 +12,7 @@ The currently released version is @samp{@value{GNUSTEP-MAKE-VERSION}}.
|
|||
@section Changes in version @samp{2.4.0}
|
||||
|
||||
@itemize @bullet
|
||||
@item Add --enable-objc-nonfragile-abi flag
|
||||
@item New serial-subdirectories.make and parallel-subdirectories.make.
|
||||
@item Support for parallel building of subdirectories.
|
||||
@item Support for parallel building of different instances.
|
||||
|
|
|
@ -7,6 +7,9 @@ migrate to using a newer version of the make system.
|
|||
@section Version 2.4.0
|
||||
@table @samp
|
||||
|
||||
@item You can enable the use of the non-fragile ivar ABI (for compilers
|
||||
like clang that support it) using the --enable-objc-nonfragile-abi flag.
|
||||
|
||||
@item -Wall is now used by default unless 'make warn=no' is specified
|
||||
Before version 2.4.0, 'make debug=yes' would not only build object
|
||||
files particularly suited for debugging, but would also add the -Wall
|
||||
|
|
4
NEWS
4
NEWS
|
@ -1,11 +1,13 @@
|
|||
1 NEWS
|
||||
******
|
||||
|
||||
The currently released version is `2.2.0'.
|
||||
The currently released version is `2.4.0'.
|
||||
|
||||
1.1 Changes in version `2.4.0'
|
||||
==============================
|
||||
|
||||
* Add -enable-objc-nonfragile-abi flag
|
||||
|
||||
* New serial-subdirectories.make and parallel-subdirectories.make.
|
||||
|
||||
* Support for parallel building of subdirectories.
|
||||
|
|
|
@ -8,6 +8,10 @@ using a newer version of the make system.
|
|||
1.1 Version 2.4.0
|
||||
=================
|
||||
|
||||
`You can enable the use of the non-fragile ivar ABI (for compilers'
|
||||
like clang that support it) using the -enable-objc-nonfragile-abi
|
||||
flag.
|
||||
|
||||
`-Wall is now used by default unless 'make warn=no' is specified'
|
||||
Before version 2.4.0, 'make debug=yes' would not only build object
|
||||
files particularly suited for debugging, but would also add the
|
||||
|
|
2
Version
2
Version
|
@ -3,7 +3,7 @@
|
|||
|
||||
# The version number of this release.
|
||||
GNUSTEP_MAKE_MAJOR_VERSION=2
|
||||
GNUSTEP_MAKE_MINOR_VERSION=2
|
||||
GNUSTEP_MAKE_MINOR_VERSION=4
|
||||
GNUSTEP_MAKE_SUBMINOR_VERSION=0
|
||||
GNUSTEP_MAKE_VERSION=${GNUSTEP_MAKE_MAJOR_VERSION}.${GNUSTEP_MAKE_MINOR_VERSION}.${GNUSTEP_MAKE_SUBMINOR_VERSION}
|
||||
|
||||
|
|
Loading…
Reference in a new issue