Skip to content

Commit 50b4425

Browse files
authored
xcode4 premake support (shader-slang#2300)
* #include an absolute path didn't work - because paths were taken to always be relative. * Attempt to make premake work for xcode4. * Make architecture ARM64. * Using ARM64 didn't make any difference.
1 parent f1b41a7 commit 50b4425

File tree

1 file changed

+24
-2
lines changed

1 file changed

+24
-2
lines changed

premake5.lua

+24-2
Original file line numberDiff line numberDiff line change
@@ -246,10 +246,30 @@ newoption {
246246
buildoptions { "-D_GNU_SOURCE" }
247247
end
248248

249+
function getPlatforms(targetInfo)
250+
if _ACTION == "xcode4" then
251+
local arch = targetInfo.arch
252+
local valueMap =
253+
{
254+
x86_64 = "x64",
255+
arm = "aarch64",
256+
}
257+
258+
local value = valueMap[arch:lower()]
259+
if value == nil then
260+
return { arch }
261+
else
262+
return { value }
263+
end
264+
else
265+
return { "x86", "x64", "aarch64" }
266+
end
267+
end
268+
249269
workspace "slang"
250270
-- We will support debug/release configuration and x86/x64 builds.
251271
configurations { "Debug", "Release" }
252-
platforms { "x86", "x64", "aarch64" }
272+
platforms(getPlatforms(targetInfo))
253273

254274
if buildLocation then
255275
location(buildLocation)
@@ -281,14 +301,16 @@ newoption {
281301

282302
-- Our `x64` platform should (obviously) target the x64
283303
-- architecture and similarly for x86.
304+
--
305+
-- https://premake.github.io/docs/architecture/
306+
--
284307
filter { "platforms:x64" }
285308
architecture "x64"
286309
filter { "platforms:x86" }
287310
architecture "x86"
288311
filter { "platforms:aarch64"}
289312
architecture "ARM"
290313

291-
292314
filter { "toolset:clang or gcc*" }
293315
-- Makes all symbols hidden by default unless explicitly 'exported'
294316
buildoptions { "-fvisibility=hidden" }

0 commit comments

Comments
 (0)