-
Notifications
You must be signed in to change notification settings - Fork 464
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
win: VS to emit DLL which exports symbols.
At present if we run `dumpbin /exports win/bin/libsass.dll`, we get: ```ps C:\Users\Adeel\source\repos\libsass> dumpbin.exe /exports win/bin/libsass.dll Microsoft (R) COFF/PE Dumper Version 14.00.23506.0 Copyright (C) Microsoft Corporation. All rights reserved. Dump of file win/bin/libsass.dll File Type: DLL Summary 7000 .data 1000 .gfids 5000 .rdata 3000 .reloc 1000 .rsrc 13000 .text ``` No exported functions. With this change, we get the entire set of exported functions. Note that it only affects the the `DLL` and not shared `LIB` which we can build as: `msbuild win/libsass.sln /p:LIBSASS_STATIC_LIB=1`.
- Loading branch information
Showing
2 changed files
with
8 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters