Giter Club home page Giter Club logo

Comments (4)

Kojoley avatar Kojoley commented on June 15, 2024

I bet appveyor updated its image and the problem is in new Windows SDK path

from b2.

pdimov avatar pdimov commented on June 15, 2024

My local machine definitely didn't update its image, but I did update boostorg/build and b2 toolset=clang immediately started failing.

from b2.

pdimov avatar pdimov commented on June 15, 2024

The regression has been introduced by boostorg/build@320c2b2. The original clang-win.jam uses clang-cl.exe to link, whereas this commit changes it to use link.exe to link, which doesn't work.

Reverting this change by means of

diff --git a/src/tools/clang-win.jam b/src/tools/clang-win.jam
index f3301831e..826f06bda 100644
--- a/src/tools/clang-win.jam
+++ b/src/tools/clang-win.jam
@@ -217,9 +217,9 @@ rule init ( version ? : command * : options * )
             }

             toolset.flags clang-win.compile .CC $(cond) : $(compiler) --target=$(clang-arch)-pc-windows-msvc ;
-            toolset.flags clang-win.link .LD $(cond) : $(linker) /nologo "/machine:$(linker-arch)" ;
-            toolset.flags clang-win.link LINKOPT $(cond) : ;
-            toolset.flags clang-win.link LINKFLAGS $(cond) : "/incremental:no" "/manifest" ;
+            toolset.flags clang-win.link .LD $(cond) : $(compiler) --target=$(clang-arch)-pc-windows-msvc ;
+            toolset.flags clang-win.link LINKOPT $(cond) : /link ;
+            toolset.flags clang-win.link LINKFLAGS $(cond) : "/incremental:no" "/manifest" "/machine:$(linker-arch)" ;
             if $(arch) = x86
             {
                 toolset.flags clang-win.compile .ASM $(cond) : $(assembler) -nologo -c -Zp4 -Cp -Cx ;

fixes the issue.

from b2.

pdimov avatar pdimov commented on June 15, 2024

May this please be fixed? The PR is here: boostorg/build#741

from b2.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.