Thu, 15 Jan 2015 21:03:48 +0100
Integrate friendly tips from Tor colleagues to make (or not) 4.5 alpha 3;
This includes removal of overloaded (but unused) methods, and addition of
a overlooked call to DataStruct::SetData(nsISupports, uint32_t, bool.)
michael@0 | 1 | # This file requires the clang build system, at least for now. So to use this |
michael@0 | 2 | # Makefile, you should execute the following commands to copy this directory |
michael@0 | 3 | # into a clang checkout: |
michael@0 | 4 | # |
michael@0 | 5 | # cp -R <this directory> third_party/llvm/tools/clang/tools/chrome-plugin |
michael@0 | 6 | # cd third_party/llvm/tools/clang/tools/chrome-plugin |
michael@0 | 7 | # make |
michael@0 | 8 | |
michael@0 | 9 | CLANG_LEVEL := ../.. |
michael@0 | 10 | LIBRARYNAME = FindBadConstructs |
michael@0 | 11 | |
michael@0 | 12 | LINK_LIBS_IN_SHARED = 0 |
michael@0 | 13 | SHARED_LIBRARY = 1 |
michael@0 | 14 | |
michael@0 | 15 | include $(CLANG_LEVEL)/Makefile |
michael@0 | 16 | |
michael@0 | 17 | ifeq ($(OS),Darwin) |
michael@0 | 18 | LDFLAGS=-Wl,-undefined,dynamic_lookup |
michael@0 | 19 | endif |