diff options
author | Suren A. Chilingaryan <csa@suren.me> | 2019-08-31 23:35:11 +0200 |
---|---|---|
committer | Suren A. Chilingaryan <csa@suren.me> | 2019-08-31 23:35:11 +0200 |
commit | 5670a7670bf07de2d0362f28349a9b455afbf4f3 (patch) | |
tree | 268e1ce40ed9aaebfdf0a6183047797ae7795895 /env | |
download | gentoo-5670a7670bf07de2d0362f28349a9b455afbf4f3.tar.gz gentoo-5670a7670bf07de2d0362f28349a9b455afbf4f3.tar.bz2 gentoo-5670a7670bf07de2d0362f28349a9b455afbf4f3.tar.xz gentoo-5670a7670bf07de2d0362f28349a9b455afbf4f3.zip |
Gentoo 17.1 / Major clean-up
Diffstat (limited to 'env')
-rw-r--r-- | env/cuda.conf | 2 | ||||
-rw-r--r-- | env/fpic.conf | 1 | ||||
-rw-r--r-- | env/nonparallel.conf | 1 | ||||
-rw-r--r-- | env/nosplitdebug.conf | 1 | ||||
-rw-r--r-- | env/python27.conf | 2 | ||||
-rw-r--r-- | env/python36.conf | 2 |
6 files changed, 9 insertions, 0 deletions
diff --git a/env/cuda.conf b/env/cuda.conf new file mode 100644 index 0000000..85f5a7d --- /dev/null +++ b/env/cuda.conf @@ -0,0 +1,2 @@ +CPPFLAGS="${CPPFLAGS} -I/usr/local/cuda/include" +LDFLAGS="${LDFLAGS} -L/usr/local/cuda/lib64" diff --git a/env/fpic.conf b/env/fpic.conf new file mode 100644 index 0000000..0f9fcd2 --- /dev/null +++ b/env/fpic.conf @@ -0,0 +1 @@ +CFLAGS="${CFLAGS} -fPIC" diff --git a/env/nonparallel.conf b/env/nonparallel.conf new file mode 100644 index 0000000..1b43095 --- /dev/null +++ b/env/nonparallel.conf @@ -0,0 +1 @@ +MAKEOPTS="-j1" diff --git a/env/nosplitdebug.conf b/env/nosplitdebug.conf new file mode 100644 index 0000000..ef92ba5 --- /dev/null +++ b/env/nosplitdebug.conf @@ -0,0 +1 @@ +FEATURES="-splitdebug -test" diff --git a/env/python27.conf b/env/python27.conf new file mode 100644 index 0000000..a10f836 --- /dev/null +++ b/env/python27.conf @@ -0,0 +1,2 @@ +PYTHON_TARGETS="python2_7" +PYTHON_SINGLE_TARGET="python2_7" diff --git a/env/python36.conf b/env/python36.conf new file mode 100644 index 0000000..f0191fe --- /dev/null +++ b/env/python36.conf @@ -0,0 +1,2 @@ +PYTHON_TARGETS="python3_6" +PYTHON_SINGLE_TARGET="python3_6" |