Displaying 3 results from an estimated 3 matches for "set_source_files_properti".
Did you mean:
set_source_files_properties
2014 Jul 08
2
[LLVMdev] [compiler-rt] clang_rt.builtins-${arch} library on windows
Is there any specific reason why the clang_rt.builtins-${arch} library is
disabled for windows builds?
if (NOT WIN32)
foreach(arch x86_64 i386 arm)
if(CAN_TARGET_${arch})
set_source_files_properties(${${arch}_SOURCES} PROPERTIES
LANGUAGE C)
add_compiler_rt_runtime(clang_rt.builtins-${arch} ${arch} STATIC
SOURCES ${${arch}_SOURCES}
CFLAGS "-std=c99")
add_dependencies(builtins clang_rt.builtins-${arch})
endif()
endforeach()
endif()...
2011 Feb 13
2
[LLVMdev] Regarding CMake options for LLVM
Figuring out to insert new compiling options or changing some options are
very hard for a CMake newbie. I'm working on Windows (both Visual Studio,
MingW/MSYS) via CMake. In particular, I'd like to do following two things:
(1) I'd like to add "-std=c++0x" for some files in
lib\Transforms\Instrumentation. (I don't think it's good idea to put this
option entirely)
(2)
2019 Aug 14
5
Can I build llvm with only a handful of source files compiled for debug?
In order to minimize edit/compile/debug turn time, is there a way to compile llvm tools so that the majority of the files are compiled as if for release (eg, no debug symbols), and only the handful of files that I have touched are compiled for debugging? This will reduce the load on the file system, linker and gdb tremendously. At present, AFAICT, it's all or nothing.
-------------- next part