summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/buildtools/configure.json10
-rw-r--r--src/core/configure.json10
2 files changed, 10 insertions, 10 deletions
diff --git a/src/buildtools/configure.json b/src/buildtools/configure.json
index a4c9b1776..1ca6214a0 100644
--- a/src/buildtools/configure.json
+++ b/src/buildtools/configure.json
@@ -352,6 +352,11 @@
"webengine-sanitizer": {
"label" : "sanitizer support",
"type": "isSanitizerSupported"
+ },
+ "webengine-noexecstack" : {
+ "label": "linker supports -z noexecstack",
+ "type": "linkerSupportsFlag",
+ "flag": "-z,noexecstack"
}
},
"features": {
@@ -671,6 +676,11 @@
"autoDetect": "config.sanitizer && tests.webengine-sanitizer",
"condition": "config.sanitizer",
"output": [ "privateFeature" ]
+ },
+ "webengine-noexecstack": {
+ "label": "linker supports -z noexecstack",
+ "condition": "config.unix && tests.webengine-noexecstack",
+ "output": [ "privateFeature" ]
}
},
"report": [
diff --git a/src/core/configure.json b/src/core/configure.json
index 7ba4a94c7..4cd6174fc 100644
--- a/src/core/configure.json
+++ b/src/core/configure.json
@@ -92,11 +92,6 @@
"label": "embedded build",
"type": "detectEmbedded"
},
- "webengine-noexecstack" : {
- "label": "linker supports -z noexecstack",
- "type": "linkerSupportsFlag",
- "flag": "-z,noexecstack"
- },
"webengine-nodejs": {
"label": "node.js",
"type": "detectNodeJS"
@@ -218,11 +213,6 @@
{ "type": "privateConfig", "name": "webcore_debug" }
]
},
- "webengine-noexecstack": {
- "label": "linker supports -z noexecstack",
- "condition": "config.unix && tests.webengine-noexecstack",
- "output": [ "privateFeature" ]
- },
"webengine-nodejs": {
"label": "Node.js",
"condition": "tests.webengine-nodejs",