Fix allocator bug

This commit is contained in:
Vitaliy Filippov
2019-11-27 01:12:25 +03:00
parent ff7469ee91
commit 6ac1d5db08
3 changed files with 22 additions and 2 deletions
+2
View File
@@ -11,5 +11,7 @@ test: test.cpp
g++ -g -O3 -o test -luring test.cpp
test_blockstore: $(BLOCKSTORE_OBJS) test_blockstore.cpp
g++ -g -o test_blockstore -luring test_blockstore.cpp $(BLOCKSTORE_OBJS)
test_allocator: test_allocator.cpp allocator.o
g++ -g -o test_allocator test_allocator.cpp allocator.o
libfio_blockstore.so: fio_engine.cpp $(BLOCKSTORE_OBJS)
g++ -g -Wno-pointer-arith -fPIC -shared -luring -o libfio_blockstore.so fio_engine.cpp $(BLOCKSTORE_OBJS)