diff options
author | Donald Stufft <donald@stufft.io> | 2013-05-10 23:11:13 -0400 |
---|---|---|
committer | Donald Stufft <donald@stufft.io> | 2013-05-10 23:11:13 -0400 |
commit | 91fc18b2d40068030491d35530e4d2824a9a3205 (patch) | |
tree | 4a43d875e76f1363abe745b839f717cc2f26523b | |
parent | f260ee6a908a932ebeae14dabaa0a2c08facaa5e (diff) | |
download | py-bcrypt-git-91fc18b2d40068030491d35530e4d2824a9a3205.tar.gz |
Make a note about getting a .S file into distutils
-rw-r--r-- | bcrypt/__init__.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/bcrypt/__init__.py b/bcrypt/__init__.py index bcb6b40..28c0378 100644 --- a/bcrypt/__init__.py +++ b/bcrypt/__init__.py @@ -43,6 +43,8 @@ _bcrypt_lib = _ffi.verify('#include "ow-crypt.h"', os.path.join(_bundled_dir, "crypt_blowfish.c"), os.path.join(_bundled_dir, "crypt_gensalt.c"), os.path.join(_bundled_dir, "wrapper.c"), + # How can we get distutils to work with a .S file? + # os.path.join(_bundled_dir, "x86.S"), ], include_dirs=[_bundled_dir] ) |