We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e1fdad0 commit f981f04Copy full SHA for f981f04
bench/Makefile
@@ -5,10 +5,10 @@ CFLAGS = -O2 -std=c99 -pedantic -Wall
5
6
all: bench
7
8
-LIBMOJIBAKE = ../libmojibake.a
+LIBUTF8PROC = ../libutf8proc.a
9
10
-bench: bench.o util.o $(LIBMOJIBAKE)
11
- $(CC) $(CFLAGS) $(LDFLAGS) -o $@ bench.o util.o $(LIBMOJIBAKE)
+bench: bench.o util.o $(LIBUTF8PROC)
+ $(CC) $(CFLAGS) $(LDFLAGS) -o $@ bench.o util.o $(LIBUTF8PROC)
12
13
DATAURL = https://raw.githubusercontent.com/duerst/eprun/master/benchmark
14
DATAFILES = Deutsch_.txt Japanese_.txt Korean_.txt Vietnamese_.txt
bench/bench.c
@@ -2,7 +2,7 @@
2
#include <stdlib.h>
3
#include <string.h>
4
-#include "mojibake.h"
+#include "utf8proc.h"
#include "util.h"
int main(int argc, char **argv)
0 commit comments