Skip to content

Commit dc35477

Browse files
authored
Merge pull request #2942 from martin-frbg/makebuildtypes
Comment out BUILD_SINGLE etc. in Makefile.rule and add a short explanation
2 parents 2f2e9dd + 365f287 commit dc35477

File tree

1 file changed

+8
-5
lines changed

1 file changed

+8
-5
lines changed

Makefile.rule

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -295,10 +295,13 @@ COMMON_PROF = -pg
295295

296296

297297

298-
# the below is not yet configurable, use cmake if you need to build only select types
299-
BUILD_SINGLE = 1
300-
BUILD_DOUBLE = 1
301-
BUILD_COMPLEX = 1
302-
BUILD_COMPLEX16 = 1
298+
# By default the library contains BLAS functions (and LAPACK if selected) for all input types.
299+
# To build a smaller library supporting e.g. only single precision real (SGEMM etc.) or only
300+
# the functions for complex numbers, uncomment the desired type(s) below
301+
# BUILD_SINGLE = 1
302+
# BUILD_DOUBLE = 1
303+
# BUILD_COMPLEX = 1
304+
# BUILD_COMPLEX16 = 1
305+
#
303306
# End of user configuration
304307
#

0 commit comments

Comments
 (0)