This Trac instance is not used for development anymore!

We migrated our development workflow to git and Gitea.
To test the future redirection, replace trac by ariadne in the page URL.

Changeset 9607 for ps


Ignore:
Timestamp:
06/10/11 01:16:27 (14 years ago)
Author:
philip
Message:

Attempt to fix manifest problems in autobuild.

Location:
ps/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • ps/trunk/build/premake/premake.lua

    r9574 r9607  
    672672           
    673673            -- allow manual unload of delay-loaded DLLs
    674             "/DELAY:UNLOAD"
     674            "/DELAY:UNLOAD",
     675
     676            -- see manifest.cpp
     677            -- (we need to use " because Premake emits this string directly
     678            -- into a double-quoted attribute value in the project XML files
     679            -- with no automatic escaping)
     680            ""/manifestdependency:type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' processorArchitecture='X86' publicKeyToken='6595b64144ccf1df'"",
     681        }
     682
     683        -- see manifest.cpp
     684        package.config["Debug"].linkoptions = {
     685            ""/manifestdependency:type='win32' name='Microsoft.VC80.DebugCRT' version='8.0.50727.4053' processorArchitecture='x86' publicKeyToken='1fc8b3b9a1e18e3b'"",
     686        }
     687        package.config["Release"].linkoptions = {
     688            ""/manifestdependency:type='win32' name='Microsoft.VC80.CRT' version='8.0.50727.4053' processorArchitecture='x86' publicKeyToken='1fc8b3b9a1e18e3b'"",
    675689        }
    676690
  • ps/trunk/source/lib/sysdep/os/win/manifest.cpp

    r9576 r9607  
    5656#endif
    5757
     58/*
     59NOTE: vcbuild.exe (as used by the autobuilder) seems to ignore these linker
     60comments, so we have to duplicate these commands into premake.lua too.
     61Remember to keep them in sync with this file.
     62(Duplicate entries appear to get omitted from the .manifest file so there
     63should be no harmful effects.)
     64*/
     65
    5866#endif
Note: See TracChangeset for help on using the changeset viewer.