⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 280916 in webkit


Ignore:
Timestamp:
Aug 11, 2021, 10:20:07 AM (5 years ago)
Author:
youenn@apple.com
Message:

Remove --no-demangle XLinker option from WebCore
https://bugs.webkit.org/show_bug.cgi?id=228949

Reviewed by Alexey Proskuryakov.

Remove options that were added inadvertently.
No change of behavior as this is changing the linker log only.

  • Configurations/WebCore.xcconfig:
  • Configurations/WebCoreTestSupport.xcconfig:
Location:
trunk/Source/WebCore
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r280913 r280916  
     12021-08-11  Youenn Fablet  <youenn@apple.com>
     2
     3        Remove --no-demangle XLinker option from WebCore
     4        https://bugs.webkit.org/show_bug.cgi?id=228949
     5
     6        Reviewed by Alexey Proskuryakov.
     7
     8        Remove options that were added inadvertently.
     9        No change of behavior as this is changing the linker log only.
     10
     11        * Configurations/WebCore.xcconfig:
     12        * Configurations/WebCoreTestSupport.xcconfig:
     13
    1142021-08-11  Chris Dumez  <cdumez@apple.com>
    215
  • trunk/Source/WebCore/Configurations/WebCore.xcconfig

    r279925 r280916  
    8585
    8686WK_CARBON_LDFLAGS = $(WK_CARBON_LDFLAGS_$(WK_PLATFORM_NAME));
    87 WK_CARBON_LDFLAGS_macosx = -framework Carbon -Xlinker --no-demangle;
     87WK_CARBON_LDFLAGS_macosx = -framework Carbon;
    8888
    8989WK_CORE_UI_LDFLAGS = $(WK_CORE_UI_LDFLAGS_$(WK_PLATFORM_NAME));
  • trunk/Source/WebCore/Configurations/WebCoreTestSupport.xcconfig

    r278701 r280916  
    5151LIBWEBRTC_LDFLAGS = $(LIBWEBRTC_LDFLAGS_$(ENABLE_WEB_RTC));
    5252LIBWEBRTC_LDFLAGS_ = ;
    53 LIBWEBRTC_LDFLAGS_ENABLE_WEB_RTC = -weak-lwebrtc  -Xlinker --no-demangle;
     53LIBWEBRTC_LDFLAGS_ENABLE_WEB_RTC = -weak-lwebrtc;
    5454
    5555ANGLE_LDFLAGS = -weak-lANGLE-shared;
Note: See TracChangeset for help on using the changeset viewer.