We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 241fc8d commit 1d1b346Copy full SHA for 1d1b346
pygccxml/parser/directory_cache.py
@@ -379,13 +379,13 @@ def _create_config_signature(config):
379
m = hashlib.sha1()
380
m.update(config.working_directory.encode("utf-8"))
381
for p in config.include_paths:
382
- m.update(p)
+ m.update(p.encode("utf-8"))
383
for p in config.define_symbols:
384
385
for p in config.undefine_symbols:
386
387
for p in config.cflags:
388
389
return m.digest()
390
391
0 commit comments