mirror of
https://github.com/intel/llvm.git
synced 2026-01-16 05:32:28 +08:00
- remove unused members - add NO_PEDANTIC to selected Makefiles - fix return values (removed NULL as needed) - disable warning about four-char-constants - remove unneeded const from operator*() declaration - add missing lambda function return types - fix printf() with no format string - change sizeof to use a type name instead of variable name - fix Linux ProcessMonitor.cpp to be 32/64 bit friendly - disable warnings emitted by swig-generated C++ code Patch by Matt Kopec! llvm-svn: 169645
16 lines
478 B
Makefile
16 lines
478 B
Makefile
##===- source/Commands/Makefile ----------------------------*- Makefile -*-===##
|
|
#
|
|
# The LLVM Compiler Infrastructure
|
|
#
|
|
# This file is distributed under the University of Illinois Open Source
|
|
# License. See LICENSE.TXT for details.
|
|
#
|
|
##===----------------------------------------------------------------------===##
|
|
|
|
LLDB_LEVEL := ../..
|
|
LIBRARYNAME := lldbCommands
|
|
BUILD_ARCHIVE = 1
|
|
|
|
include $(LLDB_LEVEL)/Makefile
|
|
|
|
EXTRA_OPTIONS += -Wno-four-char-constants
|