Skip to content

Commit

Permalink
Fix compiler option
Browse files Browse the repository at this point in the history
  • Loading branch information
kriw committed Mar 28, 2018
1 parent 9fc8cee commit 4311c8c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ def buildFFI(self):
libPath = 'build/src/python_module/%s' % libName
cores = multiprocessing.cpu_count()
cmd1 = ['pwd']
cmd2 = ['./waf', 'configure', 'build', '-j%d' % (2 * cores), '--rpp', '--mod']
cmd2 = ['./waf', 'configure', 'build', '-j%d' % (2 * cores), '--rp', '--mod']
for cmd in (cmd1, cmd2):
subprocess.Popen(cmd).wait()
os.chdir('../..')
Expand Down

0 comments on commit 4311c8c

Please sign in to comment.