Skip to content

Commit fde724a

Browse files
committed
Release v2.14.0.9
The following are the changes in this release: Due to issues with clang and Apple Silicon, ARCH_CFLAGS is now, by default, empty: ARCH_CFLAGS= If you want to use, say, -march=native, then either change the Makefile or make with: make all ARCH_CFLAGS='-march=native' Added arch and hardware as GNU Makefile computed values. As with ${target}, ${arch} and ${hardware} is computed by uname: target: uname -a arch: uname -p hardware: uname -m Fixed compiling calc on Apple Silicon with homebrew. On Apple Silicon, HomeBrew installs on into a different location. The Makefile checks if ${hardware} is arm64 and adjusts the location of libraries such as readline and history accordingly.
1 parent e411a3e commit fde724a

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

Makefile.ship

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1211,7 +1211,7 @@ EXT=
12111211

12121212
# The default calc versions
12131213
#
1214-
VERSION= 2.14.0.8
1214+
VERSION= 2.14.0.9
12151215

12161216
# Names of shared libraries with versions
12171217
#

custom/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -496,7 +496,7 @@ EXT=
496496

497497
# The default calc versions
498498
#
499-
VERSION= 2.14.0.8
499+
VERSION= 2.14.0.9
500500

501501
# Names of shared libraries with versions
502502
#

custom/Makefile.head

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -496,7 +496,7 @@ EXT=
496496

497497
# The default calc versions
498498
#
499-
VERSION= 2.14.0.8
499+
VERSION= 2.14.0.9
500500

501501
# Names of shared libraries with versions
502502
#

version.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ static char *program;
5454
#define MAJOR_VER 2 /* major library version */
5555
#define MINOR_VER 14 /* minor library version */
5656
#define MAJOR_PATCH 0 /* major software version level */
57-
#define MINOR_PATCH 8 /* minor software version level */
57+
#define MINOR_PATCH 9 /* minor software version level */
5858

5959

6060
/*

0 commit comments

Comments
 (0)