Arthur

Results 13 comments of Arthur

I have rm `.xmake` and `build` then, `xmake -f --toolchain=clang`, and finally `xmake`, but I got the same errors [xmake -vD](https://pastebin.com/3vQgSyjF)

For `-lstdc++` I have forgot to remove it from xmake.lua, I re-run xmake and I have the same output. I have update xmake to `2.2.6`, and I have the same...

Ok, I have fix some errors, in my xmake.lua I've added `add_syslinks("c++")` But I've some error related to the math library I think ? https://github.com/google/filament/issues/2146 My clang version is 14,...

I have tried your solutions, it throw me the same errors. xmake.lua ```lua add_rules("mode.debug", "mode.release") add_requires("filament") target("test") set_kind("binary") add_syslinks("c++") add_syslinks("m") add_cxflags("-fno-builtin") -- add_cxflags("-ffast-math") set_languages("cxx17") add_files("main.cpp") add_packages("filament") add_links("filament") ``` For `add_cxflags("-ffast-math")`...

I also tried on a fresh docker container (ubuntu:22.04), then I ran these commands : ```sh bash -c "$(wget -O - https://apt.llvm.org/llvm.sh)" ln -s /bin/clang-14 /bin/clang ln -s /bin/clang++-14 /bin/clang++...

The `-s` came from the add_rules("mode.release")`, I remove it and I got the same output. [xmake -rvD](https://pastebin.com/cZEsPpua)

I've already done that https://github.com/xmake-io/xmake-repo/issues/1239#issuecomment-1138340188

It doesn't work, same output :|

Same output again.. [xmake -rvD](https://pastebin.com/C5bAnBBz)

So, if the user wants the package `ConcertoEngine` he should be aware that it depends on the `nazaraengine` package, which is contained in a private repository. I find it very...