Code Monkey home page Code Monkey logo

Comments (59)

andygrundman avatar andygrundman commented on August 29, 2024 35

Rebuilding also worked for me. Here are the rough steps I used to build it, hope it's helpful for someone.

git clone https://github.com/moonlight-stream/moonlight-qt.git
cd moonlight-qt
git submodule update --init --recursive
qmake6 moonlight-qt.pro
make release

If all went well, the newly built app will be at app/Moonlight.app and you can just copy this over the broken one in the Applications folder.

from moonlight-qt.

Virgile-fr avatar Virgile-fr commented on August 29, 2024 5

For those encountering the following error:

/usr/local/lib/QtCore.framework/Headers/qglobal.h:13:12: fatal error: 'type_traits' file not found
   13 | #  include <type_traits>

just uninstall and reinstall Xcode command-line tools.

To do this:
sudo rm -rf /Library/Developer/CommandLineTools
then
xcode-select --install

after that, redo the entire process:

git clone https://github.com/moonlight-stream/moonlight-qt.git
cd moonlight-qt
git submodule update --init --recursive
qmake6 moonlight-qt.pro
make release

from moonlight-qt.

oggysecond avatar oggysecond commented on August 29, 2024 4

If someone needs
Moonlight Fixed.zip
Replace the original one in "Applications" Folder.

I rebulid one on M2 Pro (ARM64)

from moonlight-qt.

SwaMusic avatar SwaMusic commented on August 29, 2024 3

Can confirm. SecPKCS12Import failed: -25300 (Error 99) here as well!

from moonlight-qt.

shinoki77 avatar shinoki77 commented on August 29, 2024 2

thanks for the fix! I had to change qt install to brew install qt --debug

from moonlight-qt.

gkl1368 avatar gkl1368 commented on August 29, 2024 2

Who can upload the new app?

from moonlight-qt.

brandondies avatar brandondies commented on August 29, 2024 2

If someone needs Moonlight Fixed.zip Replace the original one in "Applications" Folder.
I rebulid one on M2 Pro (ARM64)

"“Moonlight” is damaged and can’t be opened. You should move it to the Trash."

You need to remove the attribute by using the below command if you need to use my package. xattr -rc *MOONLIGHT's App PATH*

Crashes immediately after using command.

from moonlight-qt.

Quessso avatar Quessso commented on August 29, 2024 1

It's Working now
Share Mine...
Rebuliding in : M1Pro Macbook Pro
MacOS Version : beta 1 - 5

This is file : Moonlight_Remake.zip

from moonlight-qt.

Juhao73692 avatar Juhao73692 commented on August 29, 2024 1

Rebuilding also worked for me. Here are the rough steps I used to build it, hope it's helpful for someone.

git clone https://github.com/moonlight-stream/moonlight-qt.git
cd moonlight-qt
git submodule update --init --recursive
qmake6 moonlight-qt.pro
make release

If all went well, the newly built app will be at app/Moonlight.app and you can just copy this over the broken one in the Applications folder.

works for me.
here's the executable file, tested on MacBook Pro with M1 Max
Moonlight.zip

from moonlight-qt.

Noire86 avatar Noire86 commented on August 29, 2024 1

we shall all make our own build?

Absolutely correct. Did a clean build on my own, and it works great.

In summary:

EXECUTE THE LINES BELOW ONE BY ONE! If you copypaste all of them as a single cmd run, it will fail.

git clone https://github.com/moonlight-stream/moonlight-qt.git
cd moonlight-qt
git submodule update --init --recursive
qmake6 moonlight-qt.pro
make release

Hope it helps.

from moonlight-qt.

brianbaldock avatar brianbaldock commented on August 29, 2024 1

we shall all make our own build?

Absolutely correct. Did a clean build on my own, and it works great.

In summary:

EXECUTE THE LINES BELOW ONE BY ONE! If you copypaste all of them as a single cmd run, it will fail.

git clone https://github.com/moonlight-stream/moonlight-qt.git cd moonlight-qt git submodule update --init --recursive qmake6 moonlight-qt.pro make release

Hope it helps.

This worked

from moonlight-qt.

cyberkaida avatar cyberkaida commented on August 29, 2024 1

I am running 24A5327a and I did not need to install the beta Xcode (I already have an older Xcode), I just needed to rebuild from the master branch. If you are building a release build the debug QT is not required.

brew install qt
git clone https://github.com/moonlight-stream/moonlight-qt.git
cd moonlight-qt
git submodule update --init --recursive
qmake6 moonlight-qt.pro
make release
open ./app

You can copy the Moonlight.app to /Applications and it should work.

from moonlight-qt.

gkl1368 avatar gkl1368 commented on August 29, 2024 1

I am running 24A5327a and I did not need to install the beta Xcode (I already have an older Xcode), I just needed to rebuild from the master branch. If you are building a release build the debug QT is not required.

brew install qt
git clone https://github.com/moonlight-stream/moonlight-qt.git
cd moonlight-qt
git submodule update --init --recursive
qmake6 moonlight-qt.pro
make release
open ./app

You can copy the Moonlight.app to /Applications and it should work.

Can you update new update app?

from moonlight-qt.

HunterAhlquist avatar HunterAhlquist commented on August 29, 2024

I'm getting this just trying to connect.

from moonlight-qt.

HunterAhlquist avatar HunterAhlquist commented on August 29, 2024

I'm able to fix it by building the program from source.

from moonlight-qt.

frootloop88 avatar frootloop88 commented on August 29, 2024

I'm able to fix it by building the program from source.

How can I do this?

from moonlight-qt.

frootloop88 avatar frootloop88 commented on August 29, 2024

Maybe the dev can fix it and update it?

from moonlight-qt.

clastrum avatar clastrum commented on August 29, 2024

Rebuilding also worked for me. Here are the rough steps I used to build it, hope it's helpful for someone.

git clone https://github.com/moonlight-stream/moonlight-qt.git
cd moonlight-qt
git submodule update --init --recursive
qmake6 moonlight-qt.pro
make release

If all went well, the newly built app will be at app/Moonlight.app and you can just copy this over the broken one in the Applications folder.

As mentioned before from other guys, i encounter same issue after updating sequoia dev beta3.

and I try these codes, and It works!!

Thank you for your kind solution.

from moonlight-qt.

brainvine avatar brainvine commented on August 29, 2024

Thanks for the fix. Can confirm: same issue here.

from moonlight-qt.

brainvine avatar brainvine commented on August 29, 2024

HDR doesn't work though. Will hang on mstc.exe. Noticed HDR will also give problems in GeforeNOW since MacOS15, so I guess it's a bug within MacOS regarding HDR.

from moonlight-qt.

andygrundman avatar andygrundman commented on August 29, 2024

HDR doesn't work though. Will hang on mstc.exe. Noticed HDR will also give problems in GeforeNOW since MacOS15, so I guess it's a bug within MacOS regarding HDR.

HDR is working for me on Sequoia (M1 MBP) to Win11 with latest Sunshine. The only issue I had with beta 3 was this SecPKCS12Import issue.

from moonlight-qt.

frootloop88 avatar frootloop88 commented on August 29, 2024

Rebuilding also worked for me. Here are the rough steps I used to build it, hope it's helpful for someone.

git clone https://github.com/moonlight-stream/moonlight-qt.git
cd moonlight-qt
git submodule update --init --recursive
qmake6 moonlight-qt.pro
make release

If all went well, the newly built app will be at app/Moonlight.app and you can just copy this over the broken one in the Applications folder.

Xcode beta doesn't even launch. Get some plugin error
if I try to build only it says zsh: command not found: qmake6
make: *** No rule to make target `release'. Stop. at the end

from moonlight-qt.

brainvine avatar brainvine commented on August 29, 2024

HDR doesn't work though. Will hang on mstc.exe. Noticed HDR will also give problems in GeforeNOW since MacOS15, so I guess it's a bug within MacOS regarding HDR.

HDR is working for me on Sequoia (M1 MBP) to Win11 with latest Sunshine. The only issue I had with beta 3 was this SecPKCS12Import issue.

Seems switching to SunShine fixed this. I guess the originl GameStream HDR-stuff is broken in MacOS15, which might explain the GeforceNOW issues as well.

from moonlight-qt.

frootloop88 avatar frootloop88 commented on August 29, 2024

brew command not found

from moonlight-qt.

Gigasnow avatar Gigasnow commented on August 29, 2024

The trick work! Many thanks! And for those who failed to launch Xcode 16 beta 3, check this discussion: https://forums.developer.apple.com/forums/thread/759396?answerId=795039022#795039022

from moonlight-qt.

rogerogden avatar rogerogden commented on August 29, 2024

I'm following the steps @andygrundman posted, but I'm getting an error during make:

/opt/homebrew/lib/QtCore.framework/Headers/qglobal.h:13:12: fatal error: 'type_traits' file not found

Checking gcc -v yields:

Apple clang version 16.0.0 (clang-1600.0.22.7)
Target: arm64-apple-darwin24.0.0
Thread model: posix
InstalledDir: /Library/Developer/CommandLineTools/usr/bin

Any ideas what might be going wrong here?

from moonlight-qt.

gkl1368 avatar gkl1368 commented on August 29, 2024

Who can upload self-build application, because I have no more space to build by myself.

from moonlight-qt.

BionicRust avatar BionicRust commented on August 29, 2024

Who can upload self-build application, because I have no more space to build by myself.

not worth it building from source is stupid it will lead to performace and other issues. I would wait for dev to fix it.

from moonlight-qt.

Dataminz avatar Dataminz commented on August 29, 2024

If someone needs Moonlight Fixed.zip Replace the original one in "Applications" Folder.

I rebulid one on M2 Pro (ARM64)

Thank you so much. I have compiled an error for missing SDL2 sometime now. If others want to use this, you have executed this line
xattr -rc *PATH TO NEW MOONLIGHT*

from moonlight-qt.

bAN0NYM0US avatar bAN0NYM0US commented on August 29, 2024

brew command not found

You need to install Brew first from https://brew.sh or just copy and paste the line below.

/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"

from moonlight-qt.

fuzedxb1 avatar fuzedxb1 commented on August 29, 2024

I was having this issue and once I updated to Dev Beta 3 revision that was released today it's working. But I have to start the session 3+ times because it crashes in when entering fullscreen

from moonlight-qt.

VisoTC avatar VisoTC commented on August 29, 2024

I was having this issue and once I updated to Dev Beta 3 revision that was released today it's working. But I have to start the session 3+ times because it crashes in when entering fullscreen

I have updated to the latest beta3, but it still fails

from moonlight-qt.

bAN0NYM0US avatar bAN0NYM0US commented on August 29, 2024

I have updated to the latest beta3, but it still fails

You need to build it as instructed by andygrundman above.

install Brew from my post above, and then follow the steps from andygrundman to build the app yourself and it should work perfectly.

I built it on the first macOS 15b3 release and after updating to the re-release of the beta, it’s still working fine. No crashing, full screen works, it appears to be completely stable and I haven’t been able to create any issues.

from moonlight-qt.

brandondies avatar brandondies commented on August 29, 2024

If someone needs Moonlight Fixed.zip Replace the original one in "Applications" Folder.

I rebulid one on M2 Pro (ARM64)

"“Moonlight” is damaged and can’t be opened. You should move it to the Trash."

from moonlight-qt.

valdan87 avatar valdan87 commented on August 29, 2024

Having issues building on b4. I've followed all the instructions and it errors out after some compiling with the following:

/usr/local/lib/QtCore.framework/Headers/qglobal.h:13:12: fatal error: 'type_traits' file not found
   13 | #  include <type_traits>

from moonlight-qt.

oggysecond avatar oggysecond commented on August 29, 2024

If someone needs Moonlight Fixed.zip Replace the original one in "Applications" Folder.
I rebulid one on M2 Pro (ARM64)

"“Moonlight” is damaged and can’t be opened. You should move it to the Trash."

You need to remove the attribute by using the below command if you need to use my package.
xattr -rc *MOONLIGHT's App PATH*

from moonlight-qt.

alextoddslick avatar alextoddslick commented on August 29, 2024

If someone needs Moonlight Fixed.zip Replace the original one in "Applications" Folder.
I rebulid one on M2 Pro (ARM64)

"“Moonlight” is damaged and can’t be opened. You should move it to the Trash."

You need to remove the attribute by using the below command if you need to use my package. xattr -rc *MOONLIGHT's App PATH*

I am pretty sure you need to build for "Non Development"... Me personally have not been able to have a successful build for that yet though...

from moonlight-qt.

Noire86 avatar Noire86 commented on August 29, 2024

Rebuilding also worked for me. Here are the rough steps I used to build it, hope it's helpful for someone.

git clone https://github.com/moonlight-stream/moonlight-qt.git
cd moonlight-qt
git submodule update --init --recursive
qmake6 moonlight-qt.pro
make release

If all went well, the newly built app will be at app/Moonlight.app and you can just copy this over the broken one in the Applications folder.

works for me. here's the executable file, tested on MacBook Pro with M1 Max Moonlight.zip

Sadly enough, your build is crashing on Sequoia 15.1 dev beta

from moonlight-qt.

Juhao73692 avatar Juhao73692 commented on August 29, 2024

Rebuilding also worked for me. Here are the rough steps I used to build it, hope it's helpful for someone.

git clone https://github.com/moonlight-stream/moonlight-qt.git
cd moonlight-qt
git submodule update --init --recursive
qmake6 moonlight-qt.pro
make release

If all went well, the newly built app will be at app/Moonlight.app and you can just copy this over the broken one in the Applications folder.

works for me. here's the executable file, tested on MacBook Pro with M1 Max Moonlight.zip

Sadly enough, your build is crashing on Sequoia 15.1 dev beta

that's weird. I'm also running macOS sequoia 15.1.
I've also tried builds from others, all said to be working on their machines, but none of them works on mine. I believe maybe we shall all make our own build?

from moonlight-qt.

Auvenell avatar Auvenell commented on August 29, 2024

thanks for the fix! I had to change qt install to brew install qt --debug

this worked for me on MacOS Version 15.1 Beta (24B5024e)

from moonlight-qt.

Murmur2k avatar Murmur2k commented on August 29, 2024

Has anybody been able to get AV1 working on M3 hardware together with the beta?

from moonlight-qt.

jazzguy1984 avatar jazzguy1984 commented on August 29, 2024

Following the guide above, I got the below error:

streaming/video/ffmpeg-renderers/vt_base.mm:61:42: error: use of undeclared
identifier 'kCMVideoCodecType_AV1'
if (!VTIsHardwareDecodeSupported(kCMVideoCodecType_AV1)) {
^
1 error generated.
make[2]: *** [release/vt_base.o] Error 1
make[1]: *** [release] Error 2
make: *** [sub-app-release] Error 2

It could not therefore build the app. Would you mind advising please?

from moonlight-qt.

Abibabodudu avatar Abibabodudu commented on August 29, 2024

Who can upload the new app?

大佬姐,你构建出来这个新app了嘛

from moonlight-qt.

Murmur2k avatar Murmur2k commented on August 29, 2024

from moonlight-qt.

Quessso avatar Quessso commented on August 29, 2024

Who can upload the new app?

大佬姐,你构建出来这个新app了嘛

试试我的

from moonlight-qt.

Abibabodudu avatar Abibabodudu commented on August 29, 2024

Who can upload the new app?

大佬姐,你构建出来这个新app了嘛

试试我的

🥹🥹🥹爱了老哥,哪里有!!!!超级无敌大感谢!!!

from moonlight-qt.

Quessso avatar Quessso commented on August 29, 2024

Following the guide above, I got the below error:

streaming/video/ffmpeg-renderers/vt_base.mm:61:42: error: use of undeclared identifier 'kCMVideoCodecType_AV1' if (!VTIsHardwareDecodeSupported(kCMVideoCodecType_AV1)) { ^ 1 error generated. make[2]: *** [release/vt_base.o] Error 1 make[1]: *** [release] Error 2 make: *** [sub-app-release] Error 2

It could not therefore build the app. Would you mind advising please?

try my building , uploaded

from moonlight-qt.

Quessso avatar Quessso commented on August 29, 2024

Who can upload the new app?

大佬姐,你构建出来这个新app了嘛

试试我的

🥹🥹🥹爱了老哥,哪里有!!!!超级无敌大感谢!!!

你找找前边,我上传了

from moonlight-qt.

Abibabodudu avatar Abibabodudu commented on August 29, 2024

Who can upload the new app?

大佬姐,你构建出来这个新app了嘛

试试我的

🥹🥹🥹爱了老哥,哪里有!!!!超级无敌大感谢!!!

你找找前边,我上传了

老哥貌似出现了文件已经损坏的情况
image
如果强行使用:xattr -cr +APP就会闪退
image

from moonlight-qt.

Quessso avatar Quessso commented on August 29, 2024

谁可以上传新应用程序?

大佬姐,你构建出来这个新app了嘛

试试我的

🥹🥹🥹爱了老哥,哪里有!!!!超级无敌

你找找前边,我上传了

老哥貌似出现了文件已损坏的情况 图像如果强行使用:xattr -cr +APP会闪退 图像
再尝试下,多重套娃了
Moonlight.app.dmg.zip

from moonlight-qt.

jazzguy1984 avatar jazzguy1984 commented on August 29, 2024

thans for your help, but the app states You can’t open the application “Moonlight” because this application is not supported on this Mac. (2019 MacBook pro i9 on latest sequoia beta)

from moonlight-qt.

Abibabodudu avatar Abibabodudu commented on August 29, 2024

谁可以上传新应用程序?

大佬姐,你构建出来这个新app了嘛

试试我的

🥹🥹🥹爱了老哥,哪里有!!!!超级无敌

你找找前边,我上传了

老哥貌似出现了文件已损坏的情况 图像如果强行使用:xattr -cr +APP会闪退 图像
再尝试下,多重套娃了
Moonlight.app.dmg.zip

大佬非常感谢你的耐心回复,可惜还是一样的情况都不太行
image

from moonlight-qt.

Quessso avatar Quessso commented on August 29, 2024

thans for your help, but the app states You can’t open the application “Moonlight” because this application is not supported on this Mac. (2019 MacBook pro i9 on latest sequoia beta)

X86 Dev not in my home, sorry I can’t help you :/

from moonlight-qt.

Abibabodudu avatar Abibabodudu commented on August 29, 2024

情况

你是arm设备吗

M1pro arm设备

from moonlight-qt.

Quessso avatar Quessso commented on August 29, 2024

情况

你是arm设备吗

M1pro arm设备

必须得自己编译,我尝试了别人的也不行

from moonlight-qt.

Abibabodudu avatar Abibabodudu commented on August 29, 2024

情况

你是arm设备吗

M1pro arm设备

必须得自己编译,我尝试了别人的也不行

好呗!!还是非常感谢老哥耐心回复的

from moonlight-qt.

Quessso avatar Quessso commented on August 29, 2024

情况

你是arm设备吗

M1pro arm设备

必须得自己编译,我尝试了别人的也不行

好呗!!还是非常感谢老哥耐心回复的

找到原因了,我是beta3编译的,beta4以上无法使用别人的,如果你是beta3然后升级到beta4或者5都能使用,但是别人无法使用

from moonlight-qt.

gkl1368 avatar gkl1368 commented on August 29, 2024

闪退的 要需要手动安装qt

from moonlight-qt.

gkl1368 avatar gkl1368 commented on August 29, 2024

情况

你是arm设备吗

M1pro arm设备

必须得自己编译,我尝试了别人的也不行

好呗!!还是非常感谢老哥耐心回复的

找到原因了,我是beta3编译的,beta4以上无法使用别人的,如果你是beta3然后升级到beta4或者5都能使用,但是别人无法使用

闪退的 要需要手动安装qt

from moonlight-qt.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.