File tree 3 files changed +5
-4
lines changed
3 files changed +5
-4
lines changed Original file line number Diff line number Diff line change 1
1
2
2
CXX =clang++
3
+ CC =clang
3
4
4
5
CFLAGS = -fsanitize=address -Weverything -Wno-padded -g -O2 -I../../ -I../../deps/miniz
5
6
CXXFLAGS = -std=c++11 -Wno-c++98-compat -Wno-variadic-macros $(CFLAGS )
@@ -12,7 +13,7 @@ LDFLAGS = -fsanitize=address
12
13
13
14
all : exr2fptiff
14
15
15
- exr2fptiff : exr2fptiff.o tinyexr.o
16
+ exr2fptiff : exr2fptiff.o tinyexr.o miniz.o
16
17
$(CXX ) -o $@ $^ $(LDFLAGS )
17
18
18
19
exr2fptiff.o : exr2fptiff.cc tiny_dng_writer.h
Original file line number Diff line number Diff line change 1
1
all :
2
- clang -g -O2 -c -I../../deps/miniz ../../deps/miniz/miniz.c
3
- clang++ -g -fsanitize=address -O2 -o exr2ldr -I../common -I../../ -I../../deps/miniz exr2ldr.cc ../../tinyexr.cc
2
+ clang -g -O2 -c -I../../deps/miniz ../../deps/miniz/miniz.c
3
+ clang++ -g -fsanitize=address -O2 -o exr2ldr -I../common -I../../ -I../../deps/miniz exr2ldr.cc ../../tinyexr.cc miniz.o
Original file line number Diff line number Diff line change 1
1
#ifndef TINYEXR_H_
2
2
#define TINYEXR_H_
3
3
/*
4
- Copyright (c) 2014 - 2020 , Syoyo Fujita and many contributors.
4
+ Copyright (c) 2014 - 2021 , Syoyo Fujita and many contributors.
5
5
All rights reserved.
6
6
7
7
Redistribution and use in source and binary forms, with or without
You can’t perform that action at this time.
0 commit comments