dlfcn_nocgo_linux.go 749 B

12345678910111213141516171819
  1. // SPDX-License-Identifier: Apache-2.0
  2. // SPDX-FileCopyrightText: 2022 The Ebitengine Authors
  3. //go:build !cgo && !faketime
  4. package purego
  5. // if there is no Cgo we must link to each of the functions from dlfcn.h
  6. // then the functions are called inside dlfcn_stubs.s
  7. //go:cgo_import_dynamic purego_dlopen dlopen "libdl.so.2"
  8. //go:cgo_import_dynamic purego_dlsym dlsym "libdl.so.2"
  9. //go:cgo_import_dynamic purego_dlerror dlerror "libdl.so.2"
  10. //go:cgo_import_dynamic purego_dlclose dlclose "libdl.so.2"
  11. // on amd64 we don't need the following line - on 386 we do...
  12. // anyway - with those lines the output is better (but doesn't matter) - without it on amd64 we get multiple DT_NEEDED with "libc.so.6" etc
  13. //go:cgo_import_dynamic _ _ "libdl.so.2"