wingfancy

Results 9 comments of wingfancy

You can download bpftrace source code and compile it in adeb, then you can use it.

Thanks for your supporting! I've tried to disable the 'XNNPACK_ENABLE_ASSEMBLY' and it works. But if we disabled this feature, it will impact the performance, right? Is that possible to enable...

[PyArrow.compile.fail.zip](https://github.com/user-attachments/files/17268950/PyArrow.compile.fail.zip) Thanks @kou ! I've attached the PyArrow compiling log together with the x64 & arm64 'arrow.lib' dump log. It seems many functions haven't been compiled into arm64 version 'arrow.lib'.

Thanks for your suggestion. After modify the code as below and compile again: ``` diff --git a/python/setup.py b/python/setup.py index 60b9a696d..b75adb0fa 100755 --- a/python/setup.py +++ b/python/setup.py @@ -165,7 +165,7 @@ class...

@kou I can compile it successfully by below steps. Need modify the code to disable '**ARROW_BUILD_BUNDLED_DEPENDENCIES**'. And also need to add a PyArror version information **'version="17.0.0"**' in '**setup.py**': If not...

Without the third diff, I'll get 'pyarrow-**0**-cp312-cp312-win_arm64.whl'. With the change, I'll get 'pyarrow-**17.0.0**-cp312-cp312-win_arm64.whl'.

I've created new ticket for building 'arrow_bundled_dependencies.lib' issue: https://github.com/apache/arrow/issues/44368

@kou I can't find file 'pyarrow/_generated_version.py' from build: ``` version_file = 'pyarrow/_generated_version.py' ``` And it seems no code is using "fallback_version" in ARM64 windows: https://github.com/search?q=repo%3Aapache%2Farrow+fallback_version&type=code

> I think that `pyarrow/_generated_version.py` is generated automatically. > > I think that `fallback_version` is used by "setuptools" not PyArrow. > > Could you try `python -m pip install .`...