aboutsummaryrefslogtreecommitdiff
path: root/tools/makefile.go
diff options
context:
space:
mode:
Diffstat (limited to 'tools/makefile.go')
-rw-r--r--tools/makefile.go4
1 files changed, 3 insertions, 1 deletions
diff --git a/tools/makefile.go b/tools/makefile.go
index 1e005d5..255bbcf 100644
--- a/tools/makefile.go
+++ b/tools/makefile.go
@@ -21,11 +21,13 @@ var (
"-Wno-unused-parameter",
"-Wno-format-truncation",
"-std=c++11",
+ "-pthread",
"-DOS_LINUX=1",
"-DARCH_X64=1",
}
linkerOptions = []string{
"-Wl,-t",
+ "-lcrypto",
}
)
@@ -93,7 +95,7 @@ func main() {
fmt.Fprintf(&output, " $(BUILDDIR)/%v", object.obj)
}
fmt.Fprint(&output, "\n")
- fmt.Fprint(&output, "\t$(CC) $(CFLAGS) $(LFLAGS) -o $@ $^\n\n")
+ fmt.Fprint(&output, "\t$(CC) $(CFLAGS) -o $@ $^ $(LFLAGS)\n\n")
// OBJECTS
for _, object := range objectFiles {