heyleadro

Results 16 comments of heyleadro

Building relwithdebinfo, repo forked ~after this https://github.com/xianyi/OpenBLAS/pull/4041. I see: libinterface.a libdriver_level2.a libdriver_level3.a libdriver_others.a libkernel.a For example, on android amrv8 its like: Built target interface Built target kernel and so on,...

it is entire cmake command, xcodebuild is invoked by: > cmake --build "./build" --config RelWithDebInfo I tried > cmake --build "./build" --config RelWithDebInfo --target openblas // xcodebuild: error: The project...

@brada4 @martin-frbg Thanks guys, should I close this thread if there are still no ideas?

full log is not reproducable due to machine constraints. Btw building via make is fine (at least errors already solved in issues:))

cmake generation like stated above : cmake -G ""Xcode"" -DCMAKE_TOOLCHAIN_FILE="conan_toolchain.cmake" -DCMAKE_INSTALL_PREFIX="OpenBLAS" -DNOFORTRAN="ON" -DBUILD_WITHOUT_LAPACK="ON" -DBUILD_LAPACK_DEPRECATED="OFF" -DBUILD_TESTING="OFF" -DUSE_THREAD="ON" -DMSVC_STATIC_CRT="OFF" -DBUILD_STATIC_LIBS="ON" -DBUILD_SHARED_LIBS="OFF" -DONLY_CBLAS="1" -DCMAKE_POLICY_DEFAULT_CMP0091="NEW" "OpenBLAS" than https://github.com/xianyi/OpenBLAS/wiki/How-to-build-OpenBLAS-for-iPhone-iOS-(ARMv8) than make TARGET=ARMV8 PREFIX=/path/to/prefix/install install

I'll try to extract them from vm later. But I think it's easy to generate yours with conanfile.py and call conan build tc = CMakeToolchain(self) tc.generate() generates conan_toolchain.cmake in generate()...

from conan import ConanFile from conan.tools.cmake import CMake, CMakeToolchain, CMakeDeps, cmake_layout from conan.tools.files import copy from conan.tools.scm import Version from conan.tools.apple import XcodeBuild from conan import tools from os.path import...

The normal way is not branching inside build method. For example: def build(self): cmake = CMake(self) cmake.configure() cmake.build() The build method is called with conan build command like: conan build...

So conan just invokes cmake -GXcode or something with cmake.configure() inside build() using variables and toolchain generated in generate() and then xcodebuild with cmake.build()

> suspecting this to be a problem in the conan files (maybe somewhat related to [conan-io/conan#13677](https://github.com/conan-io/conan/issues/13677) ) but I cannot get my conanfile.py to work Ok I will check issue...