diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2019-02-25 06:34:49 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-02-25 06:34:49 -0700 |
commit | 7aebced7e5ac26ba0ab2171b24991350523e9aa3 (patch) | |
tree | 18cf296fe515fb911f852f46bdc7b62a2f38418e /site.cfg.example | |
parent | 8d95cc1caa65d8d379f3c4f7e1885eb41e9ab226 (diff) | |
parent | 00ccdfc1c5a0602de60010ca61b7dc7f019f1e9a (diff) | |
download | numpy-7aebced7e5ac26ba0ab2171b24991350523e9aa3.tar.gz |
Merge pull request #12925 from eric-wieser/distutils-shlex-split
BUG: parse shell escaping in extra_compile_args and extra_link_args
Diffstat (limited to 'site.cfg.example')
-rw-r--r-- | site.cfg.example | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/site.cfg.example b/site.cfg.example index da8fb379c..c3169f3be 100644 --- a/site.cfg.example +++ b/site.cfg.example @@ -64,14 +64,14 @@ # # extra_compile_args # Add additional arguments to the compilation of sources. -# Simple variable with no parsing done. +# Split into arguments in a platform-appropriate way. # Provide a single line with all complete flags. # extra_compile_args = -g -ftree-vectorize # # extra_link_args # Add additional arguments when libraries/executables # are linked. -# Simple variable with no parsing done. +# Split into arguments in a platform-appropriate way. # Provide a single line with all complete flags. # extra_link_args = -lgfortran # |