免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 3281 | 回复: 2
打印 上一主题 下一主题

makefile shell [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2010-04-23 09:48 |只看该作者 |倒序浏览
makefile 里的shell 到底是如何行为的?

  1. [~/tmp 0]$ cat make.file
  2. CC=arm-linux-gcc
  3. all:
  4.         echo "$(shell  $(CC)"
  5. [O_O~/tmp 1]$ make -f make.file
  6. make: arm-linux-gcc: Command not found
  7. echo ""
复制代码
上述的结果很令人疑惑?????怎么解释呢?
做了如下测试:

  1. [~/tmp 1]$ arm-linux-gcc
  2. .arm-s3c6410-linux-gnueabi-gcc: no input files
  3. [O_O~/tmp 1]$ which !$
  4. which arm-linux-gcc
  5. /home/linyunxian/toolchain/arm-s3c6410-linux-gnueabi/bin/arm-linux-gcc
复制代码
以上说明bash中可以找到这个环境变量。

  1. [O_O~/tmp 1]$ cat make.file

  2. CC=arm-linux-gcc

  3. all:
  4.         echo "$(shell  which $(CC))"
  5. [~/tmp 1]$ make -f make.file
  6. echo "/home/linyunxian/toolchain/arm-s3c6410-linux-gnueabi/bin/arm-linux-gcc"
  7. /home/linyunxian/toolchain/arm-s3c6410-linux-gnueabi/bin/arm-linux-gcc
复制代码
make 似乎也继承了相应的环境变量

  1. [O_O~/tmp 1]$ cat make.file

  2. # CC=arm-linux-gcc
  3. CC="/home/linyunxian/toolchain/arm-s3c6410-linux-gnueabi/bin/arm-linux-gcc"


  4. all:
  5.         echo "$(shell  $(CC))"
  6. [~/tmp 1]$ make -f make.file
  7. .arm-s3c6410-linux-gnueabi-gcc: no input files
  8. echo ""
复制代码
用绝对路径表示似乎又没问题。。

把该工具链扔到/usr/local/bin 下  $(shell arm-linux-gcc) 也是没问题的。
“/home/linyunxian/toolchain/arm-s3c6410-linux-gnueabi/bin” 是在~/.bashrc 加入 $PATH 路径中的。该如何解释这个现象呢?

论坛徽章:
0
2 [报告]
发表于 2010-04-23 12:40 |只看该作者
回复 1# linyunxian


    参见
lhttp://www.mail-archive.com/help-make@gnu.org/msg06714.html

这网站ms被墙了,所以贴一下内容
Re: Regarding running shell script from Makefile

Paul Smith
Fri, 11 May 2007 12:04:22 -0700

On Fri, 2007-05-11 at 07:15 -0700, gshejin wrote:
> I am having a scenerio where in I have to execute a shell script from
> the Makefile. If I am exporting the path where the shell script is
> located in the PATH variable and then run the make the script get's
> executed. But if i am not exporting the path in the shell and then run
> the make it throws an error, some thing like this

First, when in the world is PATH not exported?  I've never run across an
environment where PATH wasn't exported.

Anyway.  When you say "execute a shell script", do you mean using the
$(shell ...) function, or do you mean a normal command script make
invokes to update a rule?

If the latter, then exporting PATH in your makefile will definitely
work.  If the former, then it won't be enough, because variables that
are marked exported inside the makefile are only exported to command
scripts, not $(shell ...) functions.

To work around this you can use:

        $(shell PATH="$(PATH)" <command>



http://www.mail-archive.com/uclinux-dev@uclinux.org/msg01073.html

[uClinux-dev] [OT] PATH used by make $(shell ) function

John Williams
Wed, 16 May 2007 23:37:03 -0700

Hi,


A bit OT but coming in the context of uClinux-dist, so I'll try here first

Is it possible to modify the PATH used by make's $(shell function)?

The obvious construct

PATH=$(PATH):/path/to/add
export PATH
foo=$(shell mytool)

where mytool lives in /path/to/add, doesn't work

The only way I've got this to fly is like so:

PATH=$(PATH):/path/to/add
foo=$(shell PATH=$(PATH) mytool)

but it's a bit ugly.


Reading the ake manual it's clear that 'export' is intended to send environment variables to sub-makes, but it's silent about how to influence the environment of the $(shell) function. All my experiments here suggest that $(shell) executes with the environment of the shell that invoked make, and there's nothing you can do about that.

cheers,

John


结论就是通过shell函数方式调用,PATH变量是不会被继承的

论坛徽章:
0
3 [报告]
发表于 2010-04-23 19:56 |只看该作者
嗯,我也这么怀疑过。

但makefile中

$(shell export) 和 $(shell which $(cc)) 的输出似乎又说明  PATH 传递下去了。  呜呼。。。。
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP