Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Y
ygopro-core
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Packages
Packages
List
Container Registry
Analytics
Analytics
CI / CD
Code Review
Insights
Issues
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nanahira
ygopro-core
Commits
3b7867c1
Commit
3b7867c1
authored
Mar 25, 2025
by
nanahira
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
remove mac-arm
parent
5669c08b
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
10 deletions
+5
-10
.gitlab-ci.yml
.gitlab-ci.yml
+0
-1
premake/dll.lua
premake/dll.lua
+5
-9
No files found.
.gitlab-ci.yml
View file @
3b7867c1
...
@@ -137,7 +137,6 @@ build_macos_m1:
...
@@ -137,7 +137,6 @@ build_macos_m1:
variables
:
variables
:
BUILD_TYPE
:
arm64
BUILD_TYPE
:
arm64
DIST_PATH
:
build/bin/arm64/Release
DIST_PATH
:
build/bin/arm64/Release
MAC_ARM
:
'
1'
build_macos
:
build_macos
:
stage
:
combine
stage
:
combine
...
...
premake/dll.lua
View file @
3b7867c1
newoption
{
trigger
=
"lua-dir"
,
description
=
""
,
value
=
"PATH"
,
default
=
"./lua"
}
newoption
{
trigger
=
"lua-dir"
,
description
=
""
,
value
=
"PATH"
,
default
=
"./lua"
}
newoption
{
trigger
=
"wasm"
,
description
=
""
}
newoption
{
trigger
=
"wasm"
,
description
=
""
}
newoption
{
trigger
=
"mac-arm"
,
description
=
""
}
function
GetParam
(
param
)
function
GetParam
(
param
)
return
_OPTIONS
[
param
]
or
os.getenv
(
string.upper
(
string.gsub
(
param
,
"-"
,
"_"
)))
return
_OPTIONS
[
param
]
or
os.getenv
(
string.upper
(
string.gsub
(
param
,
"-"
,
"_"
)))
...
@@ -21,14 +20,8 @@ workspace "ocgcoredll"
...
@@ -21,14 +20,8 @@ workspace "ocgcoredll"
if
WASM
then
if
WASM
then
toolset
"emcc"
toolset
"emcc"
platforms
{
"wasm"
}
platforms
{
"wasm"
}
elseif
os
.
istarget
(
"macosx"
)
then
else
if
GetParam
(
"mac-arm"
)
then
platforms
{
"x32"
,
"x64"
,
"arm64"
}
platforms
{
"arm64"
}
else
platforms
{
"x64"
}
end
else
platforms
{
"x32"
,
"x64"
}
end
end
filter
"platforms:x32"
filter
"platforms:x32"
...
@@ -37,6 +30,9 @@ workspace "ocgcoredll"
...
@@ -37,6 +30,9 @@ workspace "ocgcoredll"
filter
"platforms:x64"
filter
"platforms:x64"
architecture
"x64"
architecture
"x64"
filter
"platforms:arm64"
architecture
"ARM64"
filter
"configurations:Release"
filter
"configurations:Release"
optimize
"Speed"
optimize
"Speed"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment