Changeset 19062 in vbox
- Timestamp:
- Apr 21, 2009 11:14:03 AM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 46191
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/Makefile.kmk
r19003 r19062 212 212 $(if $(VBOX_WITH_DBUS),VBOX_WITH_DBUS,) \ 213 213 $(if $(VBOX_USB_WITH_SYSFS),VBOX_USB_WITH_SYSFS,) 214 215 VBoxSVC_CXXFLAGS = $(filter-out -Wno-unused,$(TEMPLATE_VBOXMAINEXE_CXXFLAGS))216 217 # XXX:218 # Disable optimizations on FreeBSD. We will get strange linker errors in release219 # builds otherwise.220 # @todo: Investigate221 VBoxSVC_CXXFLAGS.freebsd = -O0222 223 214 ifdef VBOX_WITH_USB 224 215 VBoxSVC_DEFS += \ … … 227 218 $(if $(VBOX_WITH_NEW_USB_CODE_ON_DARWIN),VBOX_WITH_NEW_USB_CODE_ON_DARWIN,) 228 219 endif 229 230 231 220 VBoxSVC_DEFS.win += VBOX_COM_OUTOFPROC_MODULE 232 221 VBoxSVC_DEFS.win.x86 += _WIN32_WINNT=0x0500 … … 238 227 VBoxSVC_DEFS.solaris += VBOX_SOLARIS_NSL_RESOLVED 239 228 endif 229 230 VBoxSVC_CXXFLAGS = $(filter-out -Wno-unused,$(TEMPLATE_VBOXMAINEXE_CXXFLAGS)) 231 ## @todo We're disabling optimizations on FreeBSD to work around strange linker 232 # errors in release builds. Figure out why and how to work around it in a 233 # more optimal fashion. 234 VBoxSVC_CXXFLAGS.freebsd = -O0 240 235 241 236 VBoxSVC_INCS = \
Note:
See TracChangeset
for help on using the changeset viewer.