Browse Source

Update build scripts to build LLVM debug config

pull/1906/head
duckdoom5 5 months ago
parent
commit
9f0d98a9e8
  1. 33
      build/LLVM.lua
  2. 2
      build/llvm/LLVM.lua

33
build/LLVM.lua

@ -5,18 +5,21 @@ LLVMRootDir = builddir .. "/llvm/llvm-project" @@ -5,18 +5,21 @@ LLVMRootDir = builddir .. "/llvm/llvm-project"
local LLVMDirPerConfiguration = false
local LLVMRootDirDebug = ""
local LLVMRootDirRelWithDebInfo = ""
local LLVMRootDirRelease = ""
require "llvm/LLVM"
function SearchLLVM()
LLVMRootDirDebug = builddir .. "/llvm/" .. get_llvm_package_name(nil, "Debug")
LLVMRootDirRelWithDebInfo = builddir .. "/llvm/" .. get_llvm_package_name(nil, "RelWithDebInfo")
LLVMRootDirRelease = builddir .. "/llvm/" .. get_llvm_package_name()
if os.isdir(LLVMRootDirDebug) or os.isdir(LLVMRootDirRelease) then
if os.isdir(LLVMRootDirDebug) or os.isdir(LLVMRootDirRelWithDebInfo) or os.isdir(LLVMRootDirRelease) then
LLVMDirPerConfiguration = true
print("Using debug LLVM build: " .. LLVMRootDirDebug)
print("Using release LLVM build: " .. LLVMRootDirRelease)
print("Using cached LLVM 'Debug' build: " .. LLVMRootDirDebug)
print("Using cached LLVM 'RelWithDebInfo' build: " .. LLVMRootDirRelWithDebInfo)
print("Using cached LLVM 'Release' build: " .. LLVMRootDirRelease)
elseif os.isdir(LLVMRootDir) then
print("Using LLVM build: " .. LLVMRootDir)
else
@ -41,13 +44,13 @@ function SetupLLVMIncludes() @@ -41,13 +44,13 @@ function SetupLLVMIncludes()
filter { "configurations:DebugOpt" }
includedirs
{
path.join(LLVMRootDirRelease, "include"),
path.join(LLVMRootDirRelease, "llvm/include"),
path.join(LLVMRootDirRelease, "lld/include"),
path.join(LLVMRootDirRelease, "clang/include"),
path.join(LLVMRootDirRelease, "clang/lib"),
path.join(LLVMRootDirRelease, "build/include"),
path.join(LLVMRootDirRelease, "build/clang/include"),
path.join(LLVMRootDirRelWithDebInfo, "include"),
path.join(LLVMRootDirRelWithDebInfo, "llvm/include"),
path.join(LLVMRootDirRelWithDebInfo, "lld/include"),
path.join(LLVMRootDirRelWithDebInfo, "clang/include"),
path.join(LLVMRootDirRelWithDebInfo, "clang/lib"),
path.join(LLVMRootDirRelWithDebInfo, "build/include"),
path.join(LLVMRootDirRelWithDebInfo, "build/clang/include"),
}
filter { "configurations:Debug" }
@ -95,12 +98,17 @@ function CopyClangIncludes() @@ -95,12 +98,17 @@ function CopyClangIncludes()
if LLVMDirPerConfiguration then
local clangBuiltinDebug = path.join(LLVMRootDirDebug, "lib")
local clangBuiltinRelWithDebInfo = path.join(LLVMRootDirRelWithDebInfo, "lib")
local clangBuiltinRelease = path.join(LLVMRootDirRelease, "lib")
if os.isdir(path.join(clangBuiltinDebug, "clang")) then
clangBuiltinIncludeDir = clangBuiltinDebug
end
if os.isdir(path.join(clangBuiltinRelWithDebInfo, "clang")) then
clangBuiltinIncludeDir = clangBuiltinRelWithDebInfo
end
if os.isdir(path.join(clangBuiltinRelease, "clang")) then
clangBuiltinIncludeDir = clangBuiltinRelease
end
@ -134,7 +142,7 @@ function SetupLLVMLibs() @@ -134,7 +142,7 @@ function SetupLLVMLibs()
if LLVMDirPerConfiguration then
filter { "configurations:DebugOpt" }
libdirs { path.join(LLVMRootDirRelease, "build/lib") }
libdirs { path.join(LLVMRootDirRelWithDebInfo, "build/lib") }
filter { "configurations:Debug" }
libdirs { path.join(LLVMRootDirDebug, "build/lib") }
@ -150,9 +158,6 @@ function SetupLLVMLibs() @@ -150,9 +158,6 @@ function SetupLLVMLibs()
filter { "configurations:Debug", "toolset:msc*" }
libdirs { path.join(LLVMBuildDir, "Debug/lib") }
filter { "configurations:Release", "toolset:msc*" }
libdirs { path.join(LLVMBuildDir, "RelWithDebInfo/lib") }
end
filter {}

2
build/llvm/LLVM.lua

@ -143,7 +143,7 @@ function get_llvm_configuration_name(debug) @@ -143,7 +143,7 @@ function get_llvm_configuration_name(debug)
if string.find(_OPTIONS["configuration"], "Debug") then
return "Debug"
end
return os.istarget("windows") and "RelWithDebInfo" or "Release"
return "Release"
end
function get_7z_path()

Loading…
Cancel
Save