citrun

watch C/C++ source code execute
Log | Files | Refs | LICENSE

commit 4f7c82e2596c711ed5780a28a68ee580e8be44cf
parent 49ab982d0938f1b227ff6620b42cb0fbb7929174
Author: Kyle Milz <kyle@windows.krwm.net>
Date:   Sat,  7 Jan 2017 01:17:45 -0800

replace stringize.pl with cmd/shell

Diffstat:
MJamrules.tail | 4+++-
Dstringize.pl | 3---
2 files changed, 3 insertions(+), 4 deletions(-)

diff --git a/Jamrules.tail b/Jamrules.tail @@ -13,5 +13,7 @@ rule Stringize actions Stringize { - perl stringize.pl $(1:B) < $(>) > $(<) + >> $(<) echo static const char *$(1:B) = R"( + >> $(<) type $(>) + >> $(<) echo )"; } diff --git a/stringize.pl b/stringize.pl @@ -1,3 +0,0 @@ -print "static const char *$ARGV[0] = R\"("; -print while (<STDIN>); -print ")\";";