summaryrefslogtreecommitdiff
path: root/tools/mpy_cross_all.py
diff options
context:
space:
mode:
Diffstat (limited to 'tools/mpy_cross_all.py')
-rwxr-xr-xtools/mpy_cross_all.py5
1 files changed, 1 insertions, 4 deletions
diff --git a/tools/mpy_cross_all.py b/tools/mpy_cross_all.py
index d542bde42..4b1edf9d6 100755
--- a/tools/mpy_cross_all.py
+++ b/tools/mpy_cross_all.py
@@ -6,14 +6,11 @@ import os.path
argparser = argparse.ArgumentParser(description="Compile all .py files to .mpy recursively")
argparser.add_argument("-o", "--out", help="output directory (default: input dir)")
argparser.add_argument("--target", help="select MicroPython target config")
-argparser.add_argument(
- "-mcache-lookup-bc", action="store_true", help="cache map lookups in the bytecode"
-)
argparser.add_argument("dir", help="input directory")
args = argparser.parse_args()
TARGET_OPTS = {
- "unix": "-mcache-lookup-bc",
+ "unix": "",
"baremetal": "",
}