virtualbox
No description set
- Devel package for openSUSE:Factory
-
11
derived packages
- Developed at SCM
- Download package
-
Checkout Package
osc -A https://api.opensuse.org checkout Virtualization/virtualbox && cd $_
- Create Badge
Refresh
Refresh
Source Files
Filename | Size | Changed |
---|---|---|
UserManual.pdf | 0004338868 4.14 MB | |
VirtualBox-5.1.6-patched.tar.bz2 | 0080064621 76.4 MB | |
_constraints | 0000000155 155 Bytes | |
_link | 0000000145 145 Bytes | |
_service | 0000000136 136 Bytes | |
gcc5-real-support.patch | 0000001566 1.53 KB | |
modify_for_4_8_bo_move.patch | 0000001272 1.24 KB | |
smap.diff | 0000000602 602 Bytes | |
vbox-default-os-type.diff | 0000001287 1.26 KB | |
vbox-deprec-gsoap-service-proxies.diff | 0000000963 963 Bytes | |
vbox-disable-updates.diff | 0000002214 2.16 KB | |
vbox-fpie.diff | 0000001533 1.5 KB | |
vbox-gsoapssl-deps.diff | 0000000736 736 Bytes | |
vbox-no-build-dates.diff | 0000006566 6.41 KB | |
vbox-permissions_warning.diff | 0000002624 2.56 KB | |
vbox-python-detection.diff | 0000001673 1.63 KB | |
vbox-smc-napa.diff | 0000000557 557 Bytes | |
vbox-usb-warning.diff | 0000002724 2.66 KB | |
vbox-vboxadd-init-script.diff | 0000005503 5.37 KB | |
vbox-vboxdrv-init-script.diff | 0000002701 2.64 KB | |
vbox-vboxweb-init-script.diff | 0000000520 520 Bytes | |
vbox_prevent_wrong_SONAME.patch | 0000000501 501 Bytes | |
virtualbox-60-vboxguest.rules | 0000000186 186 Bytes | |
virtualbox-LocalConfig.kmk | 0000000498 498 Bytes | |
virtualbox-default.virtualbox | 0000001281 1.25 KB | |
virtualbox-guest-kmp-files | 0000000186 186 Bytes | |
virtualbox-guest-preamble | 0000000355 355 Bytes | |
virtualbox-host-kmp-files | 0000000223 223 Bytes | |
virtualbox-host-preamble | 0000000353 353 Bytes | |
virtualbox-patch-source.sh | 0000001157 1.13 KB | |
virtualbox-rpmlintrc | 0000000172 172 Bytes | |
virtualbox-sed-params.patch | 0000001296 1.27 KB | |
virtualbox-snpritnf-buffer-overflow.patch | 0000000534 534 Bytes | |
virtualbox-sysconfig.vbox | 0000000675 675 Bytes | |
virtualbox-system-x.patch | 0000002083 2.03 KB | |
virtualbox-vboxes | 0000008884 8.68 KB | |
virtualbox-wrapper.sh | 0000000267 267 Bytes | |
virtualbox.changes | 0000277642 271 KB | |
virtualbox.spec | 0000032537 31.8 KB |
Revision 278 (latest revision is 755)
Larry Finger (lwfinger)
committed
(revision 278)
- Builds keep running out of memory when building the web server part of the package. To help the memory pressure, I have forced make to run with "-j2", rather than use the number of processors. Such a change will slow the build, but will result in a higher rate of success.
Comments 5
Virtualbox 7.1.0 Cannot install extension pack.
VBoxManage: error: Failed to install "/home/username/Downloads/virtualbox/Oracle_VirtualBox_Extension_Pack-7.1.0.vbox-extpack" VBoxManage: error: Failed to load the main module ('/usr/lib/virtualbox/ExtensionPacks/Oracle_VirtualBox_Extension_Pack/linux.amd64/VBoxPuelMain.so'): VERR_FILE_NOT_FOUND - /usr/lib/virtualbox/ExtensionPacks/Oracle_VirtualBox_Extension_Pack/linux.amd64/VBoxPuelMain.so: undefined symbol: _ZN21RTCRestBinaryResponse19setConsumerCallbackEPFiPS_PKvmjmmEPv VBoxManage: error: Details: code NS_ERROR_FAILURE (0x80004005), component ExtPackManagerWrap, interface IExtPackManager VBoxManage: error: Context: "RTEXITCODE handleExtPack(HandlerArg*)" at line 2099 of file VBoxManageMisc.cpp
The problem here is that the extension pack was built with -std=c++14 (or earlier), but virtualbox was built with -std=c++17 (or something later), which is a requirement because of the use of the
<filesystem>
header. As per https://en.cppreference.com/w/cpp/language/noexcept_spec , "noexcept" is part of the function signature in C++17, and so that's why virtualbox has—wait for it—..CallbackEPDoFiPS..
instead ofCallbackEPFiPS
(theDo
part is that noexcept specifier). Well, in short, that's the bad part of the ext pack being closed-source.Also how can I submit issues?
https://bugzilla.opensuse.org/ , "File a bug" icon.
Just filed a bug there: https://bugzilla.opensuse.org/show_bug.cgi?id=1231225