(self)
| 5764 | |
| 5765 | class browser64_2gb(browser): |
| 5766 | def setUp(self): |
| 5767 | super().setUp() |
| 5768 | self.cflags += ['-m64'] |
| 5769 | self.set_setting('INITIAL_MEMORY', '2200mb') |
| 5770 | self.set_setting('GLOBAL_BASE', '2gb') |
| 5771 | # Without this we get a warning about GLOBAL_BASE being ignored when used with SIDE_MODULE |
| 5772 | self.cflags.append('-Wno-unused-command-line-argument') |
| 5773 | self.require_wasm64() |
| 5774 | |
| 5775 | |
| 5776 | class browser_2gb(browser): |
nothing calls this directly
no test coverage detected