we have to use c++14 now for llvm10
This commit is contained in:
parent
6f10e3fda6
commit
ce56ae8afe
@ -498,7 +498,7 @@ include_directories(
|
|||||||
)
|
)
|
||||||
|
|
||||||
# These have to go before the -Wno- flags
|
# These have to go before the -Wno- flags
|
||||||
set(EXE_CFLAGS "-std=c++11")
|
set(EXE_CFLAGS "-std=c++14")
|
||||||
if("${CMAKE_BUILD_TYPE}" STREQUAL "Debug")
|
if("${CMAKE_BUILD_TYPE}" STREQUAL "Debug")
|
||||||
if(MSVC)
|
if(MSVC)
|
||||||
set(EXE_CFLAGS "${EXE_CFLAGS} /w")
|
set(EXE_CFLAGS "${EXE_CFLAGS} /w")
|
||||||
|
@ -150,7 +150,7 @@ LLVMTargetMachineRef ZigLLVMCreateTargetMachine(LLVMTargetRef T, const char *Tri
|
|||||||
}
|
}
|
||||||
|
|
||||||
unsigned ZigLLVMDataLayoutGetStackAlignment(LLVMTargetDataRef TD) {
|
unsigned ZigLLVMDataLayoutGetStackAlignment(LLVMTargetDataRef TD) {
|
||||||
return unwrap(TD)->getStackAlignment();
|
return unwrap(TD)->getStackAlignment().value();
|
||||||
}
|
}
|
||||||
|
|
||||||
bool ZigLLVMTargetMachineEmitToFile(LLVMTargetMachineRef targ_machine_ref, LLVMModuleRef module_ref,
|
bool ZigLLVMTargetMachineEmitToFile(LLVMTargetMachineRef targ_machine_ref, LLVMModuleRef module_ref,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user