<div dir="ltr">Hi,<div><br></div><div>I noticed (twice) recently that when building node addons - and even node itself,</div><div>some "-lxxx" flags where no longer in the right options group during linking.</div><div><br></div><div>This had to change:</div><div><br>         ["OS==\"linux\"", {<br>+          "ldflags": [<br>+            "-lre2"<br>+          ],<br>           "cflags": [<br>             "-pthread"<br>           ],</div><div><br></div><div>to become:</div><div><br></div><div>         ["OS==\"linux\"", {<br>+          "libraries": [<br>+            "-lre2"<br>+          ],<br>           "cflags": [<br>             "-pthread"<br>           ],<br></div><div><br></div><div>This is mysterious to me, maybe to others too.</div><div><br></div><div>Jérémy</div></div>