具有运行脚本构建阶段的 xcode 模板需要 root

发布于 2024-09-11 05:11:27 字数 482 浏览 4 评论 0原文

我正在尝试配置自定义 xcode 模板以在 xcode 中构建 Apache 2.2 模块。到目前为止,一切似乎都工作正常,除了最重要的一点:自定义构建设置。

我目前已配置模板,以便我的目标有一个执行 apxs(Apache 模块构建工具)的运行脚本阶段,如下所示:

Shell: /bin/bash

脚本: /usr/sbin/apxs -c -i $PROJECT_NAME.c

唯一的问题是,-i 标志将编译后的模块安装到 Apache 的模块目录中,需要 root 或管理员权限才能访问该文件夹。现在我尝试在脚本前面添加 su,希望 xcode 会要求输入密码来安装模块,但没有成功。有谁知道我可以做到这一点的方法吗?我是否错过了一些非常明显的东西,因为到目前为止我向谷歌提供的唯一建议建议使用分布式构建选项以不同用户身份登录我的机器并以这种方式执行构建,但这对于简单的事情来说似乎非常复杂需要安装编译模块的权限。

任何建议将不胜感激。

干杯!

I'm trying to configure a custom xcode template for building Apache 2.2 modules in xcode. Everything seems to be working okay so far, except the most important bit: the custom build settings.

I currently have my template configured so that my target has a run script phase that executes apxs, the Apache module build tool, like so:

Shell: /bin/bash

Script: /usr/sbin/apxs -c -i $PROJECT_NAME.c

The only problem is, the -i flag, which installs the compiled module into the modules directory of Apache, requires root or administrator privileges to access that folder. Now I've tried prepending su in front of by script in the hopes that xcode would ask for the password to install the module, but to no avail. Does anyone know of a way that I can do this? Have I missed something really obvious, as the only advice I've been ale to google so far suggests logging into my machine as a different user using distributed build options and having the build execute that way, but this seems incredibly complicated for something that simply requires permissions to install the compiled module.

Any advice would be appreciated.

Cheers!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

佼人 2024-09-18 05:11:27

sudo visudo

omarshariffdontlikeit  ALL=(ALL) NOPASSWD: /usr/bin/the_script.sh

在脚本阶段调用中:

sudo /usr/bin/the_script.sh

不需要密码。

sudo visudo

omarshariffdontlikeit  ALL=(ALL) NOPASSWD: /usr/bin/the_script.sh

Within your script phase invoke:

sudo /usr/bin/the_script.sh

No password needed.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文