Yue Yang
Yue Yang
@akeep Does it mean that you cannot use the compiled binary in a REAL Windows system (not a guest OS) now? Can we figure out a way to compile without...
The following packages depend on `libflang` 5.0.0 - scip-8.0.0-h6aab56e_0 - ipopt-3.14.4-hf6be2e5_0 - casadi-3.5.5-py39h654df56_7 `libflang` 5.0.0 depends on `openmp` 5.0.0. `pytorch` depends on `intel-openmp`. If I install `ipopt` and `pytorch` in...
Can conda forge packages compiled by Intel fortran or gfortran on Windows? Flang 5.0.0 is quite old. This PR will upgrade flang version but is still open. https://github.com/conda-forge/conda-forge-pinning-feedstock/pull/1359
I find that `libiomp5md.dll` from `llvm-openmp` 12.0.1 is still incompatible with the one provided by `intel-openmp`, so upgrading flang will not solve this problem. Two URLs: - https://conda.anaconda.org/conda-forge/win-64/intel-openmp-2022.0.0-h57928b3_3663.tar.bz2 - https://conda.anaconda.org/conda-forge/win-64/llvm-openmp-12.0.1-h2d74725_1.tar.bz2...
Sadly many deps are not configured correctly to invoke correct cross compiler.
@inkydragon `libssh2` name issue can be fixed by https://github.com/libssh2/libssh2/pull/711
In order to correctly cross compile, we need to ensure all deps invoke the correct cross compiler: 1. Makefile based dep: use `MAKE_COMMON` (we need to add `CC CXX FC...
adding `-lm` in `Makefile` items using `kmath.c` will solve the problem
I agree. `view` for `DenseAxisArray` is sufficient for most use cases.
You can also change the `RPATH` for the highs executable like https://github.com/metab0t/highsbox/blob/edd84ac1767b9df82fba2cb635ea34ef87d95ab9/setup.py#L93 Ensure `libhighs.so` is in the `/../lib` folder. Run the following commands on Linux: ``` patchelf --set-rpath '$ORIGIN/../lib' ```...