Skip to content

Commit 7f5101a

Browse files
committed
delete:unused build flags
1 parent 9f3918b commit 7f5101a

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

.github/workflows/macbuild.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ jobs:
1818
matrix:
1919
include:
2020
- os: macos-13
21+
- os: macos-14
2122
runs-on: ${{ matrix.os }}
2223

2324
steps:
@@ -81,7 +82,12 @@ jobs:
8182
- name: test
8283
run: |
8384
cd XEngine_Release
84-
./XEngine_StreamMediaApp -t
85+
sudo launchctl limit core unlimited
86+
sudo sysctl -w kern.corefile=coredump
87+
./XEngine_StreamMediaApp -t
88+
ls -al
89+
lldb ./XEngine_StreamMediaApp ./coredump
90+
continue-on-error: true
8591

8692
- name: Upload folder as artifact with mac x64
8793
if: matrix.os == 'macos-13'

XEngine_Source/XEngine_ServiceApp/XEngine_StreamMediaApp/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
CC = g++ -Wall -std=c++17 -Wno-format-overflow
1+
CC = g++ -Wall -std=c++17
22
PLATFORM = linux
33
PLATVER =
44
PLATDIR =

0 commit comments

Comments
 (0)