makefile中 賦值區別

2021-08-19 01:40:36 字數 1353 閱讀 5108

在makefile中我們經常看到 = := ?= +=這幾個賦值運算子,那麼他們有什麼區別呢?我們來做個簡單的實驗

新建乙個makefile,內容為:

ifdef define_vre

vre = 「hello world!」

else

endif

ifeq ($(opt),define)

vre ?= 「hello world! first!」

endif

ifeq ($(opt),add)

vre += 「kelly!」

endif

ifeq ($(opt),recover)

vre := 「hello world! again!」

endif

all:

@echo $(vre)

敲入以下make命令:

make define_vre=true opt=define 輸出:hello world!make define_vre=true opt=add 輸出:hello world! kelly!make define_vre=true opt=recover 輸出:hello world! again!make define_vre= opt=define 輸出:hello world! first!make define_vre= opt=add 輸出:kelly!make define_vre= opt=recover 輸出:hello world! again!從上面的結果中我們可以清楚的看到他們的區別了

=是最基本的賦值

:=是覆蓋之前的值

?=是如果沒有被賦值過就賦予等號後面的值

+=是新增等號後面的值

之前一直糾結makefile中「=」和「:=」的區別到底有什麼區別,因為給變數賦值時,兩個符號都在使用。網上搜了一下,有人給出了解答,但是本人愚鈍,看不懂什麼意思。幾尋無果之下,也就放下了。今天看一篇部落格,無意中發現作者對於這個問題做了很好的解答。解決問題之餘不免感嘆,有時候給個例子不就清楚了嗎?為什麼非要說得那麼學術呢。^_^

1、「=」

make會將整個makefile展開後,再決定變數的值。也就是說,變數的值將會是整個makefile中最後被指定的值。看例子:

x =foo

y =$(x) bar

x =xyz

在上例中,y的值將會是 xyz bar ,而不是 foo bar 。

2、「:=」

「:=」表示變數的值決定於它在makefile中的位置,而不是整個makefile展開後的最終值。

x :=foo

y :=$(x) bar

x :=xyz

在上例中,y的值將會是 foo bar ,而不是 xyz bar 了。

makefile 中各種賦值符號的區別

在makefile中我們經常看到 這幾個賦值運算子,那麼他們有什麼區別呢?我們來做個簡單的實驗 新建乙個makefile,內容為 ifdef define vre vre hello world else endif ifeq opt define vre hello world first end...

Makefile中幾種賦值( )

變數的引用方式 變數名 或者 例如 就是取變數objs的值 注意 當變數名為單字元是可以採用 a 的方式引用,多字元則不行 var a abc var b var a 222 var c var a var a def var b的值會改變為def,而var c的值還是為abc var a var ...

makefile中的變數賦值

在makefile中賦值方式有 和 a a b b b all echo a 執行結果 echo a b a b 這種賦值方式是沒有先後順序的,但是這種賦值方式可能會出現問題,例如遞迴定義時 a a a a b b b all echo a 執行結果 echo a a 這種賦值方式有先後順序,只能使...