File tree 2 files changed +9
-2
lines changed
2 files changed +9
-2
lines changed Original file line number Diff line number Diff line change @@ -45,6 +45,4 @@ add_executable(
45
45
if (UNIX )
46
46
find_package (Threads)
47
47
target_link_libraries (${RP_PLAT} ${CMAKE_THREAD_LIBS_INIT} )
48
- elseif (WIN32 )
49
- target_link_options (${RP_PLAT} PRIVATE /FORCE:MULTIPLE)
50
48
endif ()
Original file line number Diff line number Diff line change 17
17
#ifndef CS_LLVM_SUPPORT_MATHEXTRAS_H
18
18
#define CS_LLVM_SUPPORT_MATHEXTRAS_H
19
19
20
+ // XXX: On Windows MSVC 19.43.34808 I get those and I don't know how to fix that (other than disabling the below macros):
21
+ // ```
22
+ // 2>AArch64InstPrinter.obj : warning LNK4006: _get_vlen already defined in AArch64Disassembler.obj; second definition ignored
23
+ // 2>AArch64InstPrinter.obj : warning LNK4006: __check_arch_support already defined in AArch64Disassembler.obj; second definition ignored
24
+ // 2>AArch64InstPrinter.obj : warning LNK4006: __check_isa_avx10_512 already defined in AArch64Disassembler.obj; second definition ignored
25
+ // 2>AArch64InstPrinter.obj : warning LNK4006: __check_isa_support already defined in AArch64Disassembler.obj; second definition ignored
26
+ // ```
27
+ #if 0
20
28
#if defined(_WIN32_WCE) && (_WIN32_WCE < 0x800)
21
29
#include "windowsce/intrin.h"
22
30
#elif defined(_MSC_VER)
23
31
#include <intrin.h>
24
32
#endif
33
+ #endif
25
34
26
35
#ifndef __cplusplus
27
36
#if defined (WIN32) || defined (WIN64) || defined (_WIN32) || defined (_WIN64)
You can’t perform that action at this time.
0 commit comments