commit cd83797ba9d187d873d9627c86709f3f81007e1a
parent d3d7be52df76c5ce830cea1300254d7fbf20ea0a
Author: [email protected] <[email protected]>
Date: Tue, 20 Nov 2018 05:56:19 +0000
Change README.md
Diffstat:
M | README.md | | | 2 | +- |
D | build-all-archs.py | | | 73 | ------------------------------------------------------------------------- |
D | build-cl.py | | | 43 | ------------------------------------------- |
D | build.py | | | 55 | ------------------------------------------------------- |
4 files changed, 1 insertion(+), 172 deletions(-)
diff --git a/README.md b/README.md
@@ -18,7 +18,7 @@ KFR is a header-only library (except DFT) and has no external dependencies.
* Non-power of two DFT (coming soon)
* TruePeak (coming soon)
* Number of automatic tests has been increased
-* GPL version changed from 3 to 2
+* GPL version changed from 3 to 2+
## All features
diff --git a/build-all-archs.py b/build-all-archs.py
@@ -1,73 +0,0 @@
-#!/usr/bin/env python
-
-# Copyright (C) 2016 D Levin (http://www.kfrlib.com)
-# This file is part of KFR
-#
-# KFR is free software: you can redistribute it and/or modify
-# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation, either version 3 of the License, or
-# (at your option) any later version.
-#
-# KFR is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with KFR.
-
-
-from __future__ import print_function
-
-import os
-import subprocess
-import sys
-
-archs = [
- ('32bit_x87', ['-DARCH_FLAGS=-m32 -mno-sse -mno-sse2 -static']),
- ('32bit_SSE2', ['-DARCH_FLAGS=-m32 -msse2 -static']),
- ('32bit_SSE41', ['-DARCH_FLAGS=-m32 -msse4.1 -static']),
- ('32bit_AVX', ['-DARCH_FLAGS=-m32 -mavx -static']),
- ('32bit_AVX2', ['-DARCH_FLAGS=-m32 -mavx2 -static']),
- ('64bit_SSE2', ['-DARCH_FLAGS=-m64 -msse2 -static']),
- ('64bit_SSE41', ['-DARCH_FLAGS=-m64 -msse4.1 -static']),
- ('64bit_AVX', ['-DARCH_FLAGS=-m64 -mavx -static']),
- ('64bit_AVX2', ['-DARCH_FLAGS=-m64 -mavx2 -static'])
- ]
-
-path = os.path.dirname(os.path.realpath(__file__))
-
-build_dir = os.path.join(path, 'build')
-
-
-print('Checking clang...', end=' ')
-if subprocess.call(['clang', '--version'], stdout=subprocess.PIPE):
- raise Exception('clang is not on your PATH')
-print('ok')
-print('Checking clang++...', end=' ')
-if subprocess.call(['clang++', '--version'], stdout=subprocess.PIPE):
- raise Exception('clang++ is not on your PATH')
-print('ok')
-
-if sys.platform.startswith('win32'):
- generator = 'MinGW Makefiles'
-else:
- generator = 'Unix Makefiles'
-
-options = [
- '-DCMAKE_BUILD_TYPE=Release',
- ]
-
-for arch, flags in archs:
- print(arch, ' ', flags,'...')
-
- arch_build_dir = os.path.join(build_dir, arch)
-
- try:
- os.makedirs(arch_build_dir)
- except:
- pass
-
- if subprocess.call(['cmake', '-G', generator, '../..'] + flags + options, cwd=arch_build_dir): raise Exception('Can\'t make project')
- if subprocess.call(['cmake', '--build', '.', '--', '-j12'], cwd=arch_build_dir): raise Exception('Can\'t build project')
- if subprocess.call(['ctest'], cwd=os.path.join(arch_build_dir, 'tests')): raise Exception('Can\'t test project')
diff --git a/build-cl.py b/build-cl.py
@@ -1,43 +0,0 @@
-#!/usr/bin/env python
-
-# Copyright (C) 2016 D Levin (http://www.kfrlib.com)
-# This file is part of KFR
-#
-# KFR is free software: you can redistribute it and/or modify
-# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation, either version 3 of the License, or
-# (at your option) any later version.
-#
-# KFR is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with KFR.
-
-
-from __future__ import print_function
-
-import os
-import subprocess
-import sys
-
-path = os.path.dirname(os.path.realpath(__file__))
-build_dir = os.path.join(path, 'build')
-
-try:
- os.makedirs(build_dir)
-except:
- pass
-
-if not sys.platform.startswith('win32'):
- raise Exception('This file is for Windows only. Run build.py')
-
-options = [
- '-DCMAKE_BUILD_TYPE=Release',
- ] + sys.argv[1:]
-
-if subprocess.call(['cmake', '-G', 'Visual Studio 14 2015 Win64', '..'] + options, cwd=build_dir): raise Exception('Can\'t make project')
-if subprocess.call(['cmake', '--build', '.', '--config', 'Release'], cwd=build_dir): raise Exception('Can\'t build project')
-if subprocess.call(['ctest', '-C', 'Release'], cwd=os.path.join(build_dir, 'tests')): raise Exception('Can\'t test project')
diff --git a/build.py b/build.py
@@ -1,55 +0,0 @@
-#!/usr/bin/env python
-
-# Copyright (C) 2016 D Levin (http://www.kfrlib.com)
-# This file is part of KFR
-#
-# KFR is free software: you can redistribute it and/or modify
-# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation, either version 3 of the License, or
-# (at your option) any later version.
-#
-# KFR is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with KFR.
-
-
-from __future__ import print_function
-
-import os
-import multiprocessing
-import subprocess
-import sys
-from timeit import default_timer as timer
-
-path = os.path.dirname(os.path.realpath(__file__))
-build_dir = os.path.join(path, 'build')
-
-try:
- os.makedirs(build_dir)
-except:
- pass
-
-options = [
- '-DCMAKE_BUILD_TYPE=Release',
- ] + sys.argv[1:]
-
-if sys.platform.startswith('win32'):
- generator = 'MinGW Makefiles'
-else:
- generator = 'Unix Makefiles'
-
-threads = int(multiprocessing.cpu_count() * 1.2)
-
-print('threads = ', threads)
-threads = str(threads)
-
-if subprocess.call(['cmake', '-G', generator, '..'] + options, cwd=build_dir): raise Exception('Can\'t make project')
-start = timer()
-if subprocess.call(['cmake', '--build', '.', '--', '-j' + threads], cwd=build_dir): raise Exception('Can\'t build project')
-end = timer()
-print('Project building time: ', end - start)
-if subprocess.call(['ctest'], cwd=os.path.join(build_dir, 'tests')): raise Exception('Can\'t test project')