bug-make
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[bug #30328] Fast echo (with code proposal)


From: Olexiy Buyanskyy
Subject: [bug #30328] Fast echo (with code proposal)
Date: Sat, 17 Jul 2010 15:45:14 +0000
User-agent: Mozilla/5.0 (Windows; U; Windows NT 6.0; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4

Follow-up Comment #2, bug #30328 (project make):

I am not sure if we really need echo, but it will be good to have command to
output make variables to file. 
Because of shell limitation that is very expensive with echo.

#performance is awful here!!!
all: $(thousands_of_target_files)
  $(foreach file,$^,echo $file >> list.all.targets)

I think that is very good to have additional parameter for existing $(info)
function.

#This should work much faster
all: $(thousands_of_target_files)
  $(info $^,list.all.targets)

    _______________________________________________________

Reply to this item at:

  <http://savannah.gnu.org/bugs/?30328>

_______________________________________________
  Message sent via/by Savannah
  http://savannah.gnu.org/




reply via email to

[Prev in Thread] Current Thread [Next in Thread]