Skip to content

Commit

Permalink
Fix cl_load_edit_kernel with build options
Browse files Browse the repository at this point in the history
  • Loading branch information
cancan101 committed Jul 24, 2014
1 parent 7aad056 commit 9e2606e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyopencl/ipython_ext.py
Expand Up @@ -71,7 +71,7 @@ def cl_load_edit_kernel(self, line):
header = "%%cl_kernel"

if build_options:
header = "%s %s" % (header, build_options)
header = '%s -o "%s"' % (header, build_options)

content = "%s\n\n%s" % (header, kernel)

Expand Down

0 comments on commit 9e2606e

Please sign in to comment.