Skip to content

Commit 9a99035

Browse files
committed
Fixing warning + adding static build in makefile
1 parent ab39d72 commit 9a99035

File tree

1 file changed

+44
-0
lines changed

1 file changed

+44
-0
lines changed

extensions/bytecoin-v2/bug-fixes.json

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -512,6 +512,50 @@
512512
}
513513
}
514514
]
515+
},
516+
{
517+
"path": "/src/Rpc/RpcServer.cpp",
518+
"changes": [
519+
{
520+
"description": "https://github.com/amjuarez/bytecoin/pull/197",
521+
"action": "replace",
522+
"marker": "logger(INFO) << \"[on_send_raw_tx]: tx verification failed\";",
523+
"parameters": {
524+
"text": [
525+
" logger(DEBUGGING) << \"[on_send_raw_tx]: tx verification failed\";"
526+
]
527+
}
528+
}
529+
]
530+
},
531+
{
532+
"path": "/Makefile",
533+
"changes": [
534+
{
535+
"action": "add_above",
536+
"marker": "cmake-release:",
537+
"parameters": {
538+
"text": [
539+
"cmake-release-static:",
540+
"\tmkdir -p build/release",
541+
"\tcd build/release && cmake -D STATIC=ON -D CMAKE_BUILD_TYPE=Release ../..",
542+
"",
543+
"build-release-static: cmake-release-static",
544+
"\tcd build/release && $(MAKE)",
545+
""
546+
]
547+
}
548+
},
549+
{
550+
"action": "replace",
551+
"marker": ".PHONY: all cmake-debug build-debug test-debug all-debug cmake-release build-release test-release all-release clean tags",
552+
"parameters": {
553+
"text": [
554+
".PHONY: all cmake-debug build-debug test-debug all-debug cmake-release-static build-release-static cmake-release build-release test-release all-release clean tags"
555+
]
556+
}
557+
}
558+
]
515559
}
516560
]
517561
}

0 commit comments

Comments
 (0)