mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 13:10:12 +03:00
fix Issue 23545 - export int a; should generate dllexport, not dllimport (#14680)
This commit is contained in:
parent
df03a1797d
commit
f1b70f41f7
4 changed files with 32 additions and 8 deletions
|
@ -6,8 +6,11 @@ int main()
|
|||
return DISABLED;
|
||||
|
||||
version (DigitalMars)
|
||||
version (OSX) // Shared libraries are not yet supported on OSX
|
||||
{
|
||||
// Disable DM Dlls for now, need to redesign it
|
||||
// version (OSX) // Shared libraries are not yet supported on OSX
|
||||
return DISABLED;
|
||||
}
|
||||
|
||||
Vars.set(`SRC`, `$EXTRA_FILES/dll`);
|
||||
Vars.set(`EXE_NAME`, `$OUTPUT_BASE/testdll$EXE`);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue