Re: [PATCH v1 2/2] wscript: Allow substitution outside values

2022-04-13 Thread Kinsey Moore
On 4/13/2022 00:48, Sebastian Huber wrote: On 12/04/2022 20:55, Kinsey Moore wrote: diff --git a/wscript b/wscript index 9de9d67b91..e2fc047ea8 100755 --- a/wscript +++ b/wscript @@ -276,10 +276,10 @@ class Item(object):   if target is None:   target = os.path.splitext(source

Re: [PATCH v1 2/2] wscript: Allow substitution outside values

2022-04-12 Thread Sebastian Huber
On 12/04/2022 20:55, Kinsey Moore wrote: diff --git a/wscript b/wscript index 9de9d67b91..e2fc047ea8 100755 --- a/wscript +++ b/wscript @@ -276,10 +276,10 @@ class Item(object): if target is None: target = os.path.splitext(source)[0] + ".o" bld( -as

[PATCH v1 2/2] wscript: Allow substitution outside values

2022-04-12 Thread Kinsey Moore
This expands the ability to substitute variables outside the current limitation of values in options to asflags, cflags, cppflags, cxxflags, ldflags, and includes. It is possible for all of these flags to utilize user-defined information in config.ini, especially for paths to external resources. --