MonkeyDev icon indicating copy to clipboard operation
MonkeyDev copied to clipboard

M1 Mac XCode 14, Monterey Installation Issues

Open Talal916 opened this issue 2 years ago • 23 comments

First I ran into issue with missing IDEiOSSupportCore plugin, so I downloaded Xcode 12 and copied IDEiOSSupportCore.ideplugin into Xcode 14 installation. Then I ran into corrupt identifier, solved it with #297 https://github.com/AloneMonkey/MonkeyDev/issues/297#issuecomment-919684775.

Now I try to run this to install MonkeyDev sudo /bin/sh -c "$(curl -fsSL https://raw.githubusercontent.com/AloneMonkey/MonkeyDev/master/bin/md-install)"

I get this response

Creating symlink to Xcode templates...
Modifying Bash personal initialization file...
2023-02-07 18:58:22.441 xcodebuild[50107:730116] [MT] DVTPlugInManager: Required plug-in compatibility UUID C91F3560-00E7-4749-8E3F-4D83B1496051 for IDEiOSSupportCore.ideplugin (com.apple.dt.IDE.IDEiOSSupportCore) not present
2023-02-07 18:58:22.788 xcodebuild[50110:730129] [MT] DVTPlugInManager: Required plug-in compatibility UUID C91F3560-00E7-4749-8E3F-4D83B1496051 for IDEiOSSupportCore.ideplugin (com.apple.dt.IDE.IDEiOSSupportCore) not present
File /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Xcode/Specifications/MacOSX Package Types.xcspec not found

Any ideas? Seems like the plug in isn't compatible with Xcode 14?

Also where can I get MacOSX Package Types.xcspec?

Edit: I solved MACOSX Package Types.xcspec issue with this https://github.com/AloneMonkey/MonkeyDev/issues/266#issuecomment-1367020981

I still have the required plug in compatibility issue for IDEiOSSupportCore.ideplugin

image

Talal916 avatar Feb 08 '23 03:02 Talal916

open md-install

change

macosxSDKSpecificationsPath=$macosSdkPlatformPath/Developer/Library/Xcode/Specifications
packageTypesForMacOSXPath="$macosxSDKSpecificationsPath/MacOSX Package Types.xcspec"
productTypesForMacOSXPath="$macosxSDKSpecificationsPath/MacOSX Product Types.xcspec"

to

macosxSDKSpecificationsPath=$macosSdkPlatformPath/Developer/Library/Xcode/PrivatePlugIns
packageTypesForMacOSXPath="$macosxSDKSpecificationsPath/IDEOSXSupportCore.ideplugin/Contents/Resources/MacOSX Package Types.xcspec"
productTypesForMacOSXPath="$macosxSDKSpecificationsPath/IDEOSXSupportCore.ideplugin/Contents/Resources/MacOSX Product Types.xcspec"

nanshihui avatar Mar 02 '23 09:03 nanshihui

自己fork了下安装脚本、修改了下、可以用我这个一键安装脚本进行安装 udo /bin/sh -c "$(curl -fsSL https://raw.githubusercontent.com/shadow-boy/MonkeyDev/master/bin/md-install)"

shadow-boy avatar Mar 23 '23 03:03 shadow-boy

自己fork了下安装脚本、修改了下、可以用我这个一键安装脚本进行安装 udo /bin/sh -c "$(curl -fsSL https://raw.githubusercontent.com/shadow-boy/MonkeyDev/master/bin/md-install)"

下载第四个文件的时候速度一直是0

TimeAttack2 avatar May 17 '23 07:05 TimeAttack2

看这里 https://github.com/AloneMonkey/MonkeyDev/issues/336#issuecomment-1563767813

action121 avatar May 26 '23 03:05 action121

看这里 #336 (comment)

Xcode14.3 照抄你这个, xcode直接打不开了..

Haohao5 avatar May 29 '23 14:05 Haohao5

Xcode14.2照抄同直接打不开 崩溃了

Snailovet avatar May 30 '23 00:05 Snailovet

看你提交日期写的是2023年2月8日,可能你的问题早已解决。我近期也遇到此问题,我是这样解决的: 删除md-install中的346行到 exit 0 前面一行的代码,然后重新sudo ./md-install就ok了

image

Build input files cannot be found: '/usr/lib/libc++.dylib', '/usr/lib/libstdc++.dylib'. Did you forget to declare these files as outputs of any script phases or custom build rules which produce them?

这个你解决了吗?

fangmuke avatar Aug 19 '23 12:08 fangmuke

自己fork了下安装脚本、修改了下、可以用我这个一键安装脚本进行安装 udo /bin/sh -c "$(curl -fsSL https://raw.githubusercontent.com/shadow-boy/MonkeyDev/master/bin/md-install)"

xcode 14.3 需要替换 355 和 365 行中间路径为 /Developer/Library/Xcode/Plug-ins/XCBSpecifications.ideplugin

Eric217 avatar Oct 08 '23 13:10 Eric217

看你提交日期写的是2023年2月8日,可能你的问题早已解决。我近期也遇到此问题,我是这样解决的: 删除md-install中的346行到 exit 0 前面一行的代码,然后重新sudo ./md-install就ok了

image

Build input files cannot be found: '/usr/lib/libc++.dylib', '/usr/lib/libstdc++.dylib'. Did you forget to declare these files as outputs of any script phases or custom build rules which produce them?

这个你解决了吗?

xcode 15.0.1 遇到相同问题

AgoniNemo avatar Nov 09 '23 04:11 AgoniNemo

看你提交日期写的是2023年2月8日,可能你的问题早已解决。我近期也遇到此问题,我是这样解决的: 删除md-install中的346行到 exit 0 前面一行的代码,然后重新sudo ./md-install就ok了

image

Build input files cannot be found: '/usr/lib/libc++.dylib', '/usr/lib/libstdc++.dylib'. Did you forget to declare these files as outputs of any script phases or custom build rules which produce them? 这个你解决了吗?

xcode 15.0.1 遇到相同问题

我说的很清楚了,自己删掉那部分得代码,然后重新安装即可

ugly-soul avatar Nov 09 '23 04:11 ugly-soul

看你提交日期写的是2023年2月8日,可能你的问题早已解决。我近期也遇到此问题,我是这样解决的: 删除md-install中的346行到 exit 0 前面一行的代码,然后重新sudo ./md-install就ok了

image

Build input files cannot be found: '/usr/lib/libc++.dylib', '/usr/lib/libstdc++.dylib'. Did you forget to declare these files as outputs of any script phases or custom build rules which produce them? 这个你解决了吗?

xcode 15.0.1 遇到相同问题

我说的很清楚了,自己删掉那部分得代码,然后重新安装即可

试了下, 删除指定行,然后保存, sudo ./md-install后, 之前删除的又自动恢复了。。貌似不行 xcode15.0.1

soober avatar Nov 27 '23 03:11 soober

看你提交日期写的是2023年2月8日,可能你的问题早已解决。我近期也遇到此问题,我是这样解决的: 删除md-install中的346行到 exit 0 前面一行的代码,然后重新sudo ./md-install就ok了

image

Build input files cannot be found: '/usr/lib/libc++.dylib', '/usr/lib/libstdc++.dylib'. Did you forget to declare these files as outputs of any script phases or custom build rules which produce them? 这个你解决了吗?

xcode 15.0.1 遇到相同问题

我说的很清楚了,自己删掉那部分得代码,然后重新安装即可

试了下, 删除指定行,然后保存, sudo ./md-install后, 之前删除的又自动恢复了。。貌似不行 xcode15.0.1

自己想办法吧,不把饭喂到口中,我给别人说的,别人没问题,就说明肯定是你哪弄的不一样。

ugly-soul avatar Nov 27 '23 03:11 ugly-soul

把对应文件复制到报错的路径即可,具体看这里#323 https://github.com/AloneMonkey/MonkeyDev/issues/323#issuecomment-1759101465

soober avatar Nov 27 '23 06:11 soober

看你提交日期写的是2023年2月8日,可能你的问题早已解决。我近期也遇到此问题,我是这样解决的: 删除md-install中的346行到 exit 0 前面一行的代码,然后重新sudo ./md-install就ok了

image

Build input files cannot be found: '/usr/lib/libc++.dylib', '/usr/lib/libstdc++.dylib'. Did you forget to declare these files as outputs of any script phases or custom build rules which produce them? 这个你解决了吗?

xcode 15.0.1 遇到相同问题

我说的很清楚了,自己删掉那部分得代码,然后重新安装即可

试了下, 删除指定行,然后保存, sudo ./md-install后, 之前删除的又自动恢复了。。貌似不行 xcode15.0.1

自己想办法吧,不把饭喂到口中,我给别人说的,别人没问题,就说明肯定是你哪弄的不一样。

解决个问题而已 不知道这哥们在秀什么优越感。。。

soober avatar Nov 27 '23 06:11 soober

看你提交日期写的是2023年2月8日,可能你的问题早已解决。我近期也遇到此问题,我是这样解决的: 删除md-install中的346行到 exit 0 前面一行的代码,然后重新sudo ./md-install就ok了

image

Build input files cannot be found: '/usr/lib/libc++.dylib', '/usr/lib/libstdc++.dylib'. Did you forget to declare these files as outputs of any script phases or custom build rules which produce them? 这个你解决了吗?

xcode 15.0.1 遇到相同问题

我说的很清楚了,自己删掉那部分得代码,然后重新安装即可

试了下, 删除指定行,然后保存, sudo ./md-install后, 之前删除的又自动恢复了。。貌似不行 xcode15.0.1

自己想办法吧,不把饭喂到口中,我给别人说的,别人没问题,就说明肯定是你哪弄的不一样。

解决个问题而已 不知道这哥们在秀什么优越感。。。

你有毛病吧?首先我都不知道你是不是执行的本地文件,看你这描述前后矛盾,如果执行的是本地文件,是不会更改掉内容的。you know?你不会把它克隆到本地执行吗。

ugly-soul avatar Nov 27 '23 06:11 ugly-soul

看你提交日期写的是2023年2月8日,可能你的问题早已解决。我近期也遇到此问题,我是这样解决的: 删除md-install中的346行到 exit 0 前面一行的代码,然后重新sudo ./md-install就ok了

image

Build input files cannot be found: '/usr/lib/libc++.dylib', '/usr/lib/libstdc++.dylib'. Did you forget to declare these files as outputs of any script phases or custom build rules which produce them? 这个你解决了吗?

xcode 15.0.1 遇到相同问题

我说的很清楚了,自己删掉那部分得代码,然后重新安装即可

试了下, 删除指定行,然后保存, sudo ./md-install后, 之前删除的又自动恢复了。。貌似不行 xcode15.0.1

自己想办法吧,不把饭喂到口中,我给别人说的,别人没问题,就说明肯定是你哪弄的不一样。

解决个问题而已 不知道这哥们在秀什么优越感。。。

你有毛病吧?首先我都不知道你是不是执行的本地文件,看你这描述前后矛盾,如果执行的是本地文件,是不会更改掉内容的。you know?你不会把它克隆到本地执行吗。

哈哈哈 还you konw? 笑死 你最好把你第一次的回复发出来 让大家看看你是什么高素质人才

soober avatar Nov 27 '23 06:11 soober

看你提交日期写的是2023年2月8日,可能你的问题早已解决。我近期也遇到此问题,我是这样解决的: 删除md-install中的346行到 exit 0 前面一行的代码,然后重新sudo ./md-install就ok了

image

Build input files cannot be found: '/usr/lib/libc++.dylib', '/usr/lib/libstdc++.dylib'. Did you forget to declare these files as outputs of any script phases or custom build rules which produce them? 这个你解决了吗?

xcode 15.0.1 遇到相同问题

我说的很清楚了,自己删掉那部分得代码,然后重新安装即可

试了下, 删除指定行,然后保存, sudo ./md-install后, 之前删除的又自动恢复了。。貌似不行 xcode15.0.1

自己想办法吧,不把饭喂到口中,我给别人说的,别人没问题,就说明肯定是你哪弄的不一样。

解决个问题而已 不知道这哥们在秀什么优越感。。。

你有毛病吧?首先我都不知道你是不是执行的本地文件,看你这描述前后矛盾,如果执行的是本地文件,是不会更改掉内容的。you know?你不会把它克隆到本地执行吗。

哈哈哈 还you konw? 笑死 你最好把你第一次的回复发出来 让大家看看你是什么高素质人才

你要是看不懂截图和说明,就自己翻翻字典。我这人就这样,不把饭喂到你嘴里,我也没这闲工夫。

ugly-soul avatar Nov 27 '23 09:11 ugly-soul

看你提交日期写的是2023年2月8日,可能你的问题早已解决。我近期也遇到此问题,我是这样解决的: 删除md-install中的346行到 exit 0 前面一行的代码,然后重新sudo ./md-install就ok了

image

Build input files cannot be found: '/usr/lib/libc++.dylib', '/usr/lib/libstdc++.dylib'. Did you forget to declare these files as outputs of any script phases or custom build rules which produce them? 这个你解决了吗?

xcode 15.0.1 遇到相同问题

我说的很清楚了,自己删掉那部分得代码,然后重新安装即可

试了下, 删除指定行,然后保存, sudo ./md-install后, 之前删除的又自动恢复了。。貌似不行 xcode15.0.1

自己想办法吧,不把饭喂到口中,我给别人说的,别人没问题,就说明肯定是你哪弄的不一样。

解决个问题而已 不知道这哥们在秀什么优越感。。。

你有毛病吧?首先我都不知道你是不是执行的本地文件,看你这描述前后矛盾,如果执行的是本地文件,是不会更改掉内容的。you know?你不会把它克隆到本地执行吗。

哈哈哈 还you konw? 笑死 你最好把你第一次的回复发出来 让大家看看你是什么高素质人才

你要是看不懂截图和说明,就自己翻翻字典。我这人就这样,不把饭喂到你嘴里,我也没这闲工夫。

你真高贵 网络慈善家🐶

soober avatar Nov 30 '23 02:11 soober

看你提交日期写的是2023年2月8日,可能你的问题早已解决。我近期也遇到此问题,我是这样解决的: 删除md-install中的346行到 exit 0 前面一行的代码,然后重新sudo ./md-install就ok了

image

Build input files cannot be found: '/usr/lib/libc++.dylib', '/usr/lib/libstdc++.dylib'. Did you forget to declare these files as outputs of any script phases or custom build rules which produce them? 这个你解决了吗?

xcode 15.0.1 遇到相同问题

我说的很清楚了,自己删掉那部分得代码,然后重新安装即可

试了下, 删除指定行,然后保存, sudo ./md-install后, 之前删除的又自动恢复了。。貌似不行 xcode15.0.1

自己想办法吧,不把饭喂到口中,我给别人说的,别人没问题,就说明肯定是你哪弄的不一样。

解决个问题而已 不知道这哥们在秀什么优越感。。。

你有毛病吧?首先我都不知道你是不是执行的本地文件,看你这描述前后矛盾,如果执行的是本地文件,是不会更改掉内容的。you know?你不会把它克隆到本地执行吗。

哈哈哈 还you konw? 笑死 你最好把你第一次的回复发出来 让大家看看你是什么高素质人才

你要是看不懂截图和说明,就自己翻翻字典。我这人就这样,不把饭喂到你嘴里,我也没这闲工夫。

你真高贵 网络慈善家🐶

你不觉得你很傻吗?首先碰见问题不会自己思考,其次就是看不懂说明。有了问题就问,难道不是低人一等?给了图,给了思路,都看不懂?有空多认字!

ugly-soul avatar Nov 30 '23 02:11 ugly-soul

看你提交日期写的是2023年2月8日,可能你的问题早已解决。我近期也遇到此问题,我是这样解决的: 删除md-install中的346行到 exit 0 前面一行的代码,然后重新sudo ./md-install就ok了

image

Build input files cannot be found: '/usr/lib/libc++.dylib', '/usr/lib/libstdc++.dylib'. Did you forget to declare these files as outputs of any script phases or custom build rules which produce them? 这个你解决了吗?

xcode 15.0.1 遇到相同问题

我说的很清楚了,自己删掉那部分得代码,然后重新安装即可

试了下, 删除指定行,然后保存, sudo ./md-install后, 之前删除的又自动恢复了。。貌似不行 xcode15.0.1

自己想办法吧,不把饭喂到口中,我给别人说的,别人没问题,就说明肯定是你哪弄的不一样。

解决个问题而已 不知道这哥们在秀什么优越感。。。

你有毛病吧?首先我都不知道你是不是执行的本地文件,看你这描述前后矛盾,如果执行的是本地文件,是不会更改掉内容的。you know?你不会把它克隆到本地执行吗。

哈哈哈 还you konw? 笑死 你最好把你第一次的回复发出来 让大家看看你是什么高素质人才

你要是看不懂截图和说明,就自己翻翻字典。我这人就这样,不把饭喂到你嘴里,我也没这闲工夫。

你真高贵 网络慈善家🐶

你不觉得你很傻吗?首先碰见问题不会自己思考,其次就是看不懂说明。有了问题就问,难道不是低人一等?给了图,给了思路,都看不懂?有空多认字!

你叫你妈呢,死吗玩意,你不是很忙吗?有完没完了?再叫两声一脚把你个婊子养的踹河里去

TimeAttack2 avatar Nov 30 '23 02:11 TimeAttack2

看你提交日期写的是2023年2月8日,可能你的问题早已解决。我近期也遇到此问题,我是这样解决的: 删除md-install中的346行到 exit 0 前面一行的代码,然后重新sudo ./md-install就ok了

image

Build input files cannot be found: '/usr/lib/libc++.dylib', '/usr/lib/libstdc++.dylib'. Did you forget to declare these files as outputs of any script phases or custom build rules which produce them? 这个你解决了吗?

xcode 15.0.1 遇到相同问题

我说的很清楚了,自己删掉那部分得代码,然后重新安装即可

试了下, 删除指定行,然后保存, sudo ./md-install后, 之前删除的又自动恢复了。。貌似不行 xcode15.0.1

自己想办法吧,不把饭喂到口中,我给别人说的,别人没问题,就说明肯定是你哪弄的不一样。

解决个问题而已 不知道这哥们在秀什么优越感。。。

你有毛病吧?首先我都不知道你是不是执行的本地文件,看你这描述前后矛盾,如果执行的是本地文件,是不会更改掉内容的。you know?你不会把它克隆到本地执行吗。

哈哈哈 还you konw? 笑死 你最好把你第一次的回复发出来 让大家看看你是什么高素质人才

你要是看不懂截图和说明,就自己翻翻字典。我这人就这样,不把饭喂到你嘴里,我也没这闲工夫。

你真高贵 网络慈善家🐶

你不觉得你很傻吗?首先碰见问题不会自己思考,其次就是看不懂说明。有了问题就问,难道不是低人一等?给了图,给了思路,都看不懂?有空多认字!

你叫你妈呢,死吗玩意,你不是很忙吗?有完没完了?再叫两声一脚把你个婊子养的踹河里去

急了?哟,多吠叫几声,我要听小苹果的旋律。

ugly-soul avatar Nov 30 '23 02:11 ugly-soul

看你提交日期写的是2023年2月8日,可能你的问题早已解决。我近期也遇到此问题,我是这样解决的: 删除md-install中的346行到 exit 0 前面一行的代码,然后重新sudo ./md-install就ok了

image

Build input files cannot be found: '/usr/lib/libc++.dylib', '/usr/lib/libstdc++.dylib'. Did you forget to declare these files as outputs of any script phases or custom build rules which produce them? 这个你解决了吗?

xcode 15.0.1 遇到相同问题

我说的很清楚了,自己删掉那部分得代码,然后重新安装即可

试了下, 删除指定行,然后保存, sudo ./md-install后, 之前删除的又自动恢复了。。貌似不行 xcode15.0.1

自己想办法吧,不把饭喂到口中,我给别人说的,别人没问题,就说明肯定是你哪弄的不一样。

解决个问题而已 不知道这哥们在秀什么优越感。。。

你有毛病吧?首先我都不知道你是不是执行的本地文件,看你这描述前后矛盾,如果执行的是本地文件,是不会更改掉内容的。you know?你不会把它克隆到本地执行吗。

哈哈哈 还you konw? 笑死 你最好把你第一次的回复发出来 让大家看看你是什么高素质人才

你要是看不懂截图和说明,就自己翻翻字典。我这人就这样,不把饭喂到你嘴里,我也没这闲工夫。

你真高贵 网络慈善家🐶

你不觉得你很傻吗?首先碰见问题不会自己思考,其次就是看不懂说明。有了问题就问,难道不是低人一等?给了图,给了思路,都看不懂?有空多认字!

你叫你妈呢,死吗玩意,你不是很忙吗?有完没完了?再叫两声一脚把你个婊子养的踹河里去

急了?哟,多吠叫几声,我要听小苹果的旋律。

我看了一下,人家问的是另外一个问题。

tianxiawoyougood avatar Feb 17 '24 08:02 tianxiawoyougood

自己fork了下安装脚本、修改了下、可以用我这个一键安装脚本进行安装 udo /bin/sh -c "$(curl -fsSL https://raw.githubusercontent.com/shadow-boy/MonkeyDev/master/bin/md-install)"

xcode 14.3 需要替换 355 和 365 行中间路径为 /Developer/Library/Xcode/Plug-ins/XCBSpecifications.ideplugin

image 这样即可成功

Rem1L avatar Apr 09 '24 14:04 Rem1L