Skip to content

Commit

Permalink
Do not build in debug mode.
Browse files Browse the repository at this point in the history
  • Loading branch information
Ivan (egorich) Egorov committed Jun 6, 2010
1 parent 73d29f9 commit 1cbed2c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion wscript
Expand Up @@ -37,7 +37,7 @@ def configure(conf):

def build(bld):
obj = bld.new_task_gen("cxx", "shlib", "node_addon")
obj.cxxflags = ["-g", "-D_FILE_OFFSET_BITS=64", "-D_LARGEFILE_SOURCE", "-Wall"]
obj.cxxflags = ["-D_FILE_OFFSET_BITS=64", "-D_LARGEFILE_SOURCE", "-Wall"]
obj.target = "compress-bindings"
obj.source = "src/compress.cc"
obj.defines = bld.env.DEFINES
Expand Down

0 comments on commit 1cbed2c

Please sign in to comment.