diff options
Diffstat (limited to 'TARGETS')
-rw-r--r-- | TARGETS | 10 |
1 files changed, 9 insertions, 1 deletions
@@ -22,9 +22,17 @@ } , "just": { "type": ["@", "rules", "CC", "configure"] - , "arguments_config": ["OS", "ARCH"] + , "arguments_config": ["OS", "ARCH", "TARGET_ARCH", "COMPILER_FAMILY"] , "os": [{"type": "var", "name": "OS", "default": "linux"}] , "arch": [{"type": "var", "name": "ARCH", "default": "x86_64"}] + , "target_arch": + [ { "type": "var" + , "name": "TARGET_ARCH" + , "default": {"type": "var", "name": "ARCH", "default": "x86_64"} + } + ] + , "compiler_family": + [{"type": "var", "name": "COMPILER_FAMILY", "default": "clang"}] , "target": ["exported-just"] } , "libgit2": |