-
Notifications
You must be signed in to change notification settings - Fork 17.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
cmd/go: -buildmode=c-shared without specifying output file fails does not add .dll extension on Windows and .so extension on linux #38244
Comments
I tested this on linux too. The same behaviour applys to linux. The command generates a extension-less output file. |
@Sebi2020 I think this is working as expected. If you running
command, it creates output file without extension. If you want some particular file name, just use
Alex |
@alexbrainman that was the point of the bug report, because it should output a file with an extension. It's not common for shared objects or dynamic linked libraries to have no extension. On linux the should end with .so and on windows they should (per default) end with .dll. Apart from this, if you don't specify the name with the -o flag, the compiler does not create a valid .dll on windows (Later linkage fails). |
@Sebi2020 I don't disagree with your arguments. But I suggest you use -o flag to solve your problem, instead of letting go command pick file name for your output file. I haven't used Alex |
@alexbrainman What do you mean with you cannot rename output files? I think it's a simple code line of the go tool, which must be changed to get file extensions. -o for example could default to [packagename].so instead of [packagename]. on linux and [packagename].dll on windows. |
Running last command brings this box Alex |
Yes this occures,because as far as I know the file name is encoded in dlls. You have to use the -o option. But I mean, the command should generate the file with a .dll or .so extension by default. |
What version of Go are you using (
go version
)?Does this issue reproduce with the latest release?
Yes
What operating system and processor architecture are you using (
go env
)?go env
OutputWhat did you do?
I tried to build a c-shared library
The archive is linked against a C which just calls
test()
with:Executing
test.exe
does not produce any output.What did you expect to see?
A valid dll file (standard dynamic library format on windows)
What did you see instead?
The call
go build -buildmode=c-shared
does not yield a valid dll (I think; it does not have any extension by default). It produces a[folder name]
file without any extension.I'm not sure what happens, but if you try to link it against a C
main
themain
function does not get executed. The linker does not produce any warnings or errors about the file (after renaming [name] to [name].dll).If you produce the archive with
go build -buildmode=c-shared -o <name>.dll
everything works as expected, butgo build -buildmode=c-shared
should be sufficient, but it isn't.The text was updated successfully, but these errors were encountered: