Changeset 13548 in vbox for trunk/src/VBox/Installer/solaris
- Timestamp:
- Oct 24, 2008 11:31:17 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Installer/solaris/Makefile.kmk
r13498 r13548 34 34 SOLARIS_DBG_DIR := $(PATH_TARGET)/Installer/solaris/installdbg 35 35 SOLARIS_VBI_DIR := $(PATH_TARGET)/Installer/solaris/installvbi 36 SOL_DBG_OBJCOPY := $(CP) -p # Solaris ld/gobjcopy(2.15) don't get along on x86, works only on amd64. So just using cp for now. 36 ifeq ($(KBUILD_TARGET_ARCH),amd64) 37 SOL_DBG_OBJCOPY := /usr/sfw/bin/gobjcopy --only-keep-debug 38 else 39 SOL_DBG_OBJCOPY := $(CP) -p # Solaris ld/gobjcopy(2.15) don't get along on x86, works only on amd64. So just using cp for now. 40 endif 37 41 SOL_OBJCOPY := /usr/sfw/bin/gobjcopy --strip-unneeded -R .comment 38 42
Note:
See TracChangeset
for help on using the changeset viewer.