- Timestamp:
- Oct 17, 2023 10:33:37 AM (12 months ago)
- File:
-
- 1 edited
-
trunk/src/VBox/Main/src-server/VirtualBoxImpl.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-server/VirtualBoxImpl.cpp
r101461 r101471 2236 2236 ComPtr<IMachine> &aMachine) 2237 2237 { 2238 if (aArchitecture == PlatformArchitecture_None) 2239 return setError(E_INVALIDARG, tr("'Must specify a valid platform architecture")); 2240 2238 2241 LogFlowThisFuncEnter(); 2239 2242 LogFlowThisFunc(("aSettingsFile=\"%s\", aName=\"%s\", aArchitecture=%#x, aOsTypeId =\"%s\", aCreateFlags=\"%s\"\n", 2240 2243 aSettingsFile.c_str(), aName.c_str(), aArchitecture, aOsTypeId.c_str(), aFlags.c_str())); 2244 2245 #if defined(RT_ARCH_X86) || defined(RT_ARCH_AMD64) 2246 if (aArchitecture != PlatformArchitecture_x86)/* x86 hosts only allows creating x86 VMs for now. */ 2247 return setError(VBOX_E_PLATFORM_ARCH_NOT_SUPPORTED, tr("'Creating VMs for platform architecture %s not supported on %s"), 2248 Global::stringifyPlatformArchitecture(aArchitecture), 2249 Global::stringifyPlatformArchitecture(PlatformArchitecture_x86)); 2250 #endif 2241 2251 2242 2252 StringsList llGroups;
Note:
See TracChangeset
for help on using the changeset viewer.

