Changeset 99692 in vbox
- Timestamp:
- May 9, 2023 9:31:21 AM (2 years ago)
- svn:sync-xref-src-repo-rev:
- 157240
- Location:
- trunk/src/VBox
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/Makefile.kmk
r99689 r99692 401 401 endif 402 402 403 # 404 # Parfait fails with an error that ../MacOS can't be accessed while standard clang has no problem with it. 405 # As we don't want to run the output just omit the -rpath arguments to make it build 406 # 403 407 VirtualBox_LDFLAGS.darwin = \ 404 $(if $(VBOX_WITH_HARDENING) ,,-rpath @executable_path/../MacOS -rpath @executable_path/../Frameworks) \408 $(if $(VBOX_WITH_HARDENING) || $(VBOX_WITH_PARFAIT),,-rpath @executable_path/../MacOS -rpath @executable_path/../Frameworks) \ 405 409 -framework AppKit -framework Carbon -framework IOKit 406 410 … … 432 436 endif 433 437 434 VirtualBoxVM_LDFLAGS.darwin = \ 435 $(if $(VBOX_WITH_HARDENING) \ 436 ,-install_name $(VBOX_DYLD_EXECUTABLE_PATH)/VirtualBoxVM.dylib \ 437 ,-rpath @executable_path/../../../../MacOS \ 438 -rpath @executable_path/../../../../Frameworks) \ 439 -framework AppKit -framework Carbon -framework IOKit 438 # 439 # Parfait fails with an error that ../MacOS can't be accessed while standard clang has no problem with it. 440 # As we don't want to run the output just omit the -rpath arguments to make it build 441 # 442 ifndef VBOX_WITH_PARFAIT 443 VirtualBoxVM_LDFLAGS.darwin = \ 444 $(if $(VBOX_WITH_HARDENING)) \ 445 ,-install_name $(VBOX_DYLD_EXECUTABLE_PATH)/VirtualBoxVM.dylib \ 446 ,-rpath @executable_path/../../../../MacOS \ 447 -rpath @executable_path/../../../../Frameworks) \ 448 -framework AppKit -framework Carbon -framework IOKit 449 else 450 VirtualBoxVM_LDFLAGS.darwin = -framework AppKit -framework Carbon -framework IOKit 451 endif 440 452 441 453 ifdef VBOX_GUI_WITH_QTGLFRAMEBUFFER -
trunk/src/VBox/NetworkServices/IntNetSwitch/Makefile.kmk
r98417 r99692 46 46 SrvIntNetWrapper.cpp 47 47 VBoxIntNetSwitch_LIBS = $(LIB_RUNTIME) 48 VBoxIntNetSwitch_LDFLAGS.darwin = \ 49 -rpath @executable_path/../../../../MacOS 48 49 # 50 # Parfait fails with an error that ../../../../MacOS can't be accessed while standard clang has no problem with it. 51 # As we don't want to run the output just omit the -rpath arguments to make it build 52 # 53 ifndef VBOX_WITH_PARFAIT 54 VBoxIntNetSwitch_LDFLAGS.darwin = \ 55 -rpath @executable_path/../../../../MacOS 56 endif 50 57 51 58 ifeq ($(KBUILD_TARGET),darwin)
Note:
See TracChangeset
for help on using the changeset viewer.