diff options
author | Oliver Reiche <oliver.reiche@huawei.com> | 2022-11-30 18:33:29 +0100 |
---|---|---|
committer | Oliver Reiche <oliver.reiche@huawei.com> | 2022-12-16 17:18:01 +0100 |
commit | 606575738c3489fb9a23b772bfe8f9d29236c96b (patch) | |
tree | 10cc621e4a139831179955f38ae94646aae790e6 /CC/test | |
parent | 0712694ea67f84a30058109d41f37ff96c37558d (diff) | |
download | rules-cc-606575738c3489fb9a23b772bfe8f9d29236c96b.tar.gz |
rules: Add support for "LDFLAGS" and "ADD_LDFLAGS"
Diffstat (limited to 'CC/test')
-rw-r--r-- | CC/test/RULES | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/CC/test/RULES b/CC/test/RULES index 3821339..8269b9f 100644 --- a/CC/test/RULES +++ b/CC/test/RULES @@ -18,8 +18,10 @@ , "CXX" , "CFLAGS" , "CXXFLAGS" + , "LDFLAGS" , "ADD_CFLAGS" , "ADD_CXXFLAGS" + , "ADD_LDFLAGS" , "ENV" , "TEST_ENV" , "CC_TEST_LAUNCHER" @@ -65,6 +67,10 @@ [ "The flags for CXX to be used instead of the default ones" , "taken from the [\"CC\", \"defaults\"] target" ] + , "LDFLAGS": + [ "The linker flags do be used instead of the default ones" + , "taken from the [\"CC\", \"defaults\"] target" + ] , "ADD_CFLAGS": [ "The flags to add to the default ones for CC" , "taken from the [\"CC\", \"defaults\"] target" @@ -73,6 +79,10 @@ [ "The flags to add to the default ones for CXX" , "taken from the [\"CC\", \"defaults\"] target" ] + , "ADD_LDFLAGS": + [ "The linker flags to add to the default ones" + , "taken from the [\"CC\", \"defaults\"] target" + ] , "ENV": ["The environment for any action generated."] , "TEST_ENV": ["The environment for executing the test runner."] , "CC_TEST_LAUNCHER": |