You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Doing an ARCH=arm build, I suspect the interactive kconfig prompt is coming up.
Perhaps I need to manually set ARCH=arm in the env before running reduce.py?
/android2/reduce/reduce.py prep drivers/gpu/drm/amd/amdgpu/../display/dc/dml/calcs/dce_calcs
[INFO] Using CC=clang
[INFO] Making drivers/gpu/drm/amd/amdgpu/../display/dc/dml/calcs/dce_calcs.i...
^CTraceback (most recent call last):
File "/android2/reduce/reduce.py", line 62, in <module>
args.func(args)
File "/android2/reduce/src/prep.py", line 339, in main
path_to_dot_i_file, make_stdout = make_dot_i_file(
^^^^^^^^^^^^^^^^
File "/android2/reduce/src/prep.py", line 60, in make_dot_i_file
make_output = subprocess.run(
^^^^^^^^^^^^^^^
File "/usr/lib/python3.11/subprocess.py", line 550, in run
stdout, stderr = process.communicate(input, timeout=timeout)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/lib/python3.11/subprocess.py", line 1209, in communicate
stdout, stderr = self._communicate(input, endtime, timeout)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/lib/python3.11/subprocess.py", line 2108, in _communicate
ready = selector.select(timeout)
^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/lib/python3.11/selectors.py", line 415, in select
fd_event_list = self._selector.poll(timeout)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
KeyboardInterrupt
The text was updated successfully, but these errors were encountered:
Perhaps I need to manually set ARCH=arm in the env before running reduce.py?
That may work, although I think the real solution is either using the existing build_command customization to supply something like make -j$(nproc) ARCH=arm LLVM=1 V=1 or refactoring build_command to allow specifying or modifying the variables, rather than the whole command.
Doing an ARCH=arm build, I suspect the interactive kconfig prompt is coming up.
Perhaps I need to manually set
ARCH=arm
in the env before running reduce.py?The text was updated successfully, but these errors were encountered: