summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorJoshua Haberman <jhaberman@gmail.com>2019-01-15 04:21:56 -0800
committerJoshua Haberman <jhaberman@gmail.com>2019-01-15 04:21:56 -0800
commit1508648f30cbaf5a3590572b2313fb5b595a7946 (patch)
treec153db730ec3571981c7b1630ac724a5fef59b70 /tools
parent754b9f1cfdf59104fa62cfaf99f21e5a817d281b (diff)
Build & fix the JIT.
Diffstat (limited to 'tools')
-rwxr-xr-xtools/amalgamate.py4
-rwxr-xr-xtools/make_cmakelists.py6
2 files changed, 10 insertions, 0 deletions
diff --git a/tools/amalgamate.py b/tools/amalgamate.py
index 4739a94..9ad0286 100755
--- a/tools/amalgamate.py
+++ b/tools/amalgamate.py
@@ -51,6 +51,10 @@ output_path = sys.argv[2]
amalgamator = Amalgamator(include_path, output_path)
for filename in sys.argv[3:]:
+ # Leave JIT out of the amalgamation.
+ if "x64" in filename or "dynasm" in filename:
+ continue
+
amalgamator.add_src(filename.strip())
amalgamator.finish()
diff --git a/tools/make_cmakelists.py b/tools/make_cmakelists.py
index 0d5640d..c2700b6 100755
--- a/tools/make_cmakelists.py
+++ b/tools/make_cmakelists.py
@@ -128,6 +128,12 @@ class BuildFileFunctions(object):
def genrule(self, **kwargs):
pass
+ def config_setting(self, **kwargs):
+ pass
+
+ def select(self, arg_dict):
+ return []
+
def glob(*args):
return []
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback