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
tools/or-tools/build/RELEASE/lib/libortools.9.7.dylib
2023-09-04T15:27:59.6971070Z clang: error: no such file or directory: '/Users/runner/work/or-tools/or-tools/build/build/ortools_proto.build/Release/Objects-normal/x86_64/parameters.pb.o'
2023-09-04T15:27:59.7093790Z clang: error: no such file or directory: '/Users/runner/work/or-tools/or-tools/build/build/ortools_math_opt.build/Release/Objects-normal/x86_64/storage.o'
2023-09-04T15:27:59.7213560Z clang: error: no such file or directory: '/Users/runner/work/or-tools/or-tools/build/build/ortools_math_opt.build/Release/Objects-normal/x86_64/validator.o'
2023-09-04T15:27:59.7260130Z Command Ld failed with a nonzero exit code
Please notice xcode don't add directory path to compiled file and since we have:
XCode do not support object library with several file with the same name
since it use a flat directory, Xcode "fix" using a UID but CMake can't catch it.
math_opt also use a parameters.proto which conflict with the
glop/parameters.proto -> need to split the proto to .cc generation in
two libraries
Relevant trace
Please notice xcode don't add directory path to compiled file and since we have:
[0]─[~/work/main]-[mizux/dev] [^u^]─mizux@nuc10i7 %find ortools -type f -iname "storage*" ortools/math_opt/constraints/sos/storage.h ortools/math_opt/constraints/indicator/storage.cc ortools/math_opt/constraints/indicator/storage.h ortools/math_opt/constraints/quadratic/storage.cc ortools/math_opt/constraints/quadratic/storage.h ortools/math_opt/constraints/second_order_cone/storage.cc ortools/math_opt/constraints/second_order_cone/storage.h
note:
To compare to Unix Makefile generator
The text was updated successfully, but these errors were encountered: