Skip to content

Commit cc3e1af

Browse files
Merge pull request #273 from DrTimothyAldenDavis/v9.0.0.branch
Makefile: "make static" revised to match recent cmake changes
2 parents a5b7d1e + 4be9bf4 commit cc3e1af

File tree

8 files changed

+19
-9
lines changed

8 files changed

+19
-9
lines changed

Doc/ChangeLog

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
Feb 26, 2024: version 9.0.2
2+
3+
* (51) bug fix: GraphBLAS/Makefile "make static" was incorrect.
4+
15
Jan 20, 2024: version 9.0.1
26

37
* minor updates to build system

Doc/GraphBLAS_UserGuide.pdf

583 Bytes
Binary file not shown.

Doc/GraphBLAS_UserGuide.tex

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14768,6 +14768,12 @@ \section{Release Notes}
1476814768

1476914769
\begin{itemize}
1477014770

14771+
\item Feb 26, 2024: version 9.0.2
14772+
14773+
\begin{itemize}
14774+
\item GraphBLAS/Makefile \verb"make static" was incorrect.
14775+
\end{itemize}
14776+
1477114777
\item Jan 20, 2024: version 9.0.1
1477214778

1477314779
\begin{itemize}

Doc/GraphBLAS_version.tex

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
% version of SuiteSparse:GraphBLAS
22
\date{VERSION
3-
9.0.1,
4-
Jan 20, 2024}
3+
9.0.2,
4+
Feb 26, 2024}
55

Include/GraphBLAS.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// SuiteSparse:GraphBLAS 9.0.1
1+
// SuiteSparse:GraphBLAS 9.0.2
22
//------------------------------------------------------------------------------
33
// GraphBLAS.h: definitions for the GraphBLAS package
44
//------------------------------------------------------------------------------
@@ -226,10 +226,10 @@
226226

227227
// The version of this implementation, and the GraphBLAS API version:
228228
#define GxB_IMPLEMENTATION_NAME "SuiteSparse:GraphBLAS"
229-
#define GxB_IMPLEMENTATION_DATE "Jan 20, 2024"
229+
#define GxB_IMPLEMENTATION_DATE "Feb 26, 2024"
230230
#define GxB_IMPLEMENTATION_MAJOR 9
231231
#define GxB_IMPLEMENTATION_MINOR 0
232-
#define GxB_IMPLEMENTATION_SUB 1
232+
#define GxB_IMPLEMENTATION_SUB 2
233233
#define GxB_SPEC_DATE "Dec 22, 2023"
234234
#define GxB_SPEC_MAJOR 2
235235
#define GxB_SPEC_MINOR 1

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ setup:
8080

8181
# build the static library
8282
static:
83-
( cd build && cmake $(CMAKE_OPTIONS) -DNSTATIC=0 .. && cmake --build . --config Release -j$(JOBS) )
83+
( cd build && cmake $(CMAKE_OPTIONS) -DBUILD_STATIC_LIBS=ON -DBUILD_SHARED_LIBS=OFF .. && cmake --build . --config Release -j$(JOBS) )
8484

8585
# installs GraphBLAS to the install location defined by cmake, usually
8686
# /usr/local/lib and /usr/local/include

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2024, All Rights Reserved.
44

55
SPDX-License-Identifier: Apache-2.0
66

7-
VERSION 9.0.1, Jan 20, 2024
7+
VERSION 9.0.2, Feb 26, 2024
88

99
SuiteSparse:GraphBLAS is a complete implementation of the GraphBLAS standard,
1010
which defines a set of sparse matrix operations on an extended algebra of

cmake_modules/GraphBLAS_version.cmake

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@
88
#-------------------------------------------------------------------------------
99

1010
# version of SuiteSparse:GraphBLAS
11-
set ( GraphBLAS_DATE "Jan 20, 2024" )
11+
set ( GraphBLAS_DATE "Feb 26, 2024" )
1212
set ( GraphBLAS_VERSION_MAJOR 9 CACHE STRING "" FORCE )
1313
set ( GraphBLAS_VERSION_MINOR 0 CACHE STRING "" FORCE )
14-
set ( GraphBLAS_VERSION_SUB 1 CACHE STRING "" FORCE )
14+
set ( GraphBLAS_VERSION_SUB 2 CACHE STRING "" FORCE )
1515

1616
# GraphBLAS C API Specification version, at graphblas.org
1717
set ( GraphBLAS_API_DATE "Dec 22, 2023" )

0 commit comments

Comments
 (0)