~louis/ubuntu/trusty/clamav/lp799623_fix_logrotate

« back to all changes in this revision

Viewing changes to libclamav/c++/llvm/lib/Target/X86/CMakeLists.txt

  • Committer: Bazaar Package Importer
  • Author(s): Scott Kitterman
  • Date: 2010-03-12 11:30:04 UTC
  • mfrom: (0.41.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20100312113004-b0fop4bkycszdd0z
Tags: 0.96~rc1+dfsg-0ubuntu1
* New upstream RC - FFE (LP: #537636):
  - Add OfficialDatabaseOnly option to clamav-base.postinst.in
  - Add LocalSocketGroup option to clamav-base.postinst.in
  - Add LocalSocketMode option to clamav-base.postinst.in
  - Add CrossFilesystems option to clamav-base.postinst.in
  - Add ClamukoScannerCount option to clamav-base.postinst.in
  - Add BytecodeSecurity opiton to clamav-base.postinst.in
  - Add DetectionStatsHostID option to clamav-freshclam.postinst.in
  - Add Bytecode option to clamav-freshclam.postinst.in
  - Add MilterSocketGroup option to clamav-milter.postinst.in
  - Add MilterSocketMode option to clamav-milter.postinst.in
  - Add ReportHostname option to clamav-milter.postinst.in
  - Bump libclamav SO version to 6.1.0 in libclamav6.install
  - Drop clamdmon from clamav.examples (no longer shipped by upstream)
  - Drop libclamav.a from libclamav-dev.install (not built by upstream)
  - Update SO version for lintian override for libclamav6
  - Add new Bytecode Testing Tool, usr/bin/clambc, to clamav.install
  - Add build-depends on python and python-setuptools for new test suite
  - Update debian/copyright for the embedded copy of llvm (using the system
    llvm is not currently feasible)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
set(LLVM_TARGET_DEFINITIONS X86.td)
 
2
 
 
3
tablegen(X86GenRegisterInfo.h.inc -gen-register-desc-header)
 
4
tablegen(X86GenRegisterNames.inc -gen-register-enums)
 
5
tablegen(X86GenRegisterInfo.inc -gen-register-desc)
 
6
tablegen(X86GenDisassemblerTables.inc -gen-disassembler)
 
7
tablegen(X86GenInstrNames.inc -gen-instr-enums)
 
8
tablegen(X86GenInstrInfo.inc -gen-instr-desc)
 
9
tablegen(X86GenAsmWriter.inc -gen-asm-writer)
 
10
tablegen(X86GenAsmWriter1.inc -gen-asm-writer -asmwriternum=1)
 
11
tablegen(X86GenAsmMatcher.inc -gen-asm-matcher)
 
12
tablegen(X86GenDAGISel.inc -gen-dag-isel)
 
13
tablegen(X86GenFastISel.inc -gen-fast-isel)
 
14
tablegen(X86GenCallingConv.inc -gen-callingconv)
 
15
tablegen(X86GenSubtarget.inc -gen-subtarget)
 
16
 
 
17
set(sources
 
18
  X86AsmBackend.cpp
 
19
  X86CodeEmitter.cpp
 
20
  X86COFFMachineModuleInfo.cpp
 
21
  X86ELFWriterInfo.cpp
 
22
  X86FloatingPoint.cpp
 
23
  X86FloatingPointRegKill.cpp
 
24
  X86ISelDAGToDAG.cpp
 
25
  X86ISelLowering.cpp
 
26
  X86InstrInfo.cpp
 
27
  X86JITInfo.cpp
 
28
  X86MCAsmInfo.cpp
 
29
  X86MCCodeEmitter.cpp 
 
30
  X86MCTargetExpr.cpp
 
31
  X86RegisterInfo.cpp
 
32
  X86Subtarget.cpp
 
33
  X86TargetMachine.cpp
 
34
  X86TargetObjectFile.cpp
 
35
  X86FastISel.cpp
 
36
  )
 
37
 
 
38
if( CMAKE_CL_64 )
 
39
  enable_language(ASM_MASM)
 
40
  set(sources ${sources} X86CompilationCallback_Win64.asm)
 
41
endif()
 
42
 
 
43
add_llvm_target(X86CodeGen ${sources})
 
44
 
 
45
target_link_libraries (LLVMX86CodeGen LLVMSelectionDAG)