Changeset 99040 in vbox for trunk/src/VBox/Runtime/Makefile.kmk
- Timestamp:
- Mar 18, 2023 9:03:42 PM (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/Makefile.kmk
r98753 r99040 1804 1804 include $($(target)_2_VBOX_NOCRT_ALIAS_KMK_FILE) 1805 1805 $(target)_2_VBOX_NOCRT_ALIAS_FILES := $(foreach alias,$($(target)_2_VBOX_NOCRT_ALIASES) \ 1806 $($(target)_VBOX_NOCRT_ALIASES) \1807 $($(target)_VBOX_NOCRT_ALIASES.$(bld_trg)) \1808 $($(target)_VBOX_NOCRT_ALIASES.$(bld_trg).$(bld_type)) \1809 $($(target)_VBOX_NOCRT_ALIASES.$(bld_trg).$(bld_trg_arch)) \1810 $($(target)_VBOX_NOCRT_ALIASES.$(bld_trg).$(bld_trg_arch).$(bld_type)) \1811 $($(target)_VBOX_NOCRT_ALIASES.$(bld_trg_arch)) \1812 $($(target)_VBOX_NOCRT_ALIASES.$(bld_trg_cpu)) \1813 $($(target)_VBOX_NOCRT_ALIASES.$(bld_type)) \1814 , $($(target)_0_OUTDIR)/genalias/$(firstword $(subst =, $(SPACE),$(alias))).o)1806 $($(target)_VBOX_NOCRT_ALIASES) \ 1807 $($(target)_VBOX_NOCRT_ALIASES.$(bld_trg)) \ 1808 $($(target)_VBOX_NOCRT_ALIASES.$(bld_trg).$(bld_type)) \ 1809 $($(target)_VBOX_NOCRT_ALIASES.$(bld_trg).$(bld_trg_arch)) \ 1810 $($(target)_VBOX_NOCRT_ALIASES.$(bld_trg).$(bld_trg_arch).$(bld_type)) \ 1811 $($(target)_VBOX_NOCRT_ALIASES.$(bld_trg_arch)) \ 1812 $($(target)_VBOX_NOCRT_ALIASES.$(bld_trg_cpu)) \ 1813 $($(target)_VBOX_NOCRT_ALIASES.$(bld_type)) \ 1814 , $($(target)_0_OUTDIR)/genalias/$(firstword $(subst =, $(SPACE),$(alias))).o) 1815 1815 $(eval $(def_unit_VBoxNoCrtAliases_double_expansion)) 1816 1816 endif … … 1837 1837 1838 1838 RuntimeR3_SOURCES = $(filter-out \ 1839 r3/alloc.cpp \1840 r3/alloc-ef.cpp \1841 r3/xml.cpp \1842 common/zip/xarvfs.cpp \1843 common/misc/json.cpp \1844 generic/RTLogWriteStdErr-generic.cpp \1845 generic/RTLogWriteStdOut-generic.cpp \1846 ,$(RuntimeBaseR3_SOURCES)) \1839 r3/alloc.cpp \ 1840 r3/alloc-ef.cpp \ 1841 r3/xml.cpp \ 1842 common/zip/xarvfs.cpp \ 1843 common/misc/json.cpp \ 1844 generic/RTLogWriteStdErr-generic.cpp \ 1845 generic/RTLogWriteStdOut-generic.cpp \ 1846 ,$(RuntimeBaseR3_SOURCES)) \ 1847 1847 \ 1848 1848 common/err/nocrt-strerror.cpp \ … … 2107 2107 2108 2108 RuntimeR3_SOURCES.win = $(filter-out \ 2109 r3/generic/RTLocaleQueryLocaleName-r3-generic.cpp \2110 ,$(RuntimeBaseR3_SOURCES.win)) \2109 r3/generic/RTLocaleQueryLocaleName-r3-generic.cpp \ 2110 ,$(RuntimeBaseR3_SOURCES.win)) \ 2111 2111 \ 2112 2112 common/compiler/vcc/atexit-vcc.cpp \ … … 2159 2159 strtok_s=nocrt_strtok_r _strtok_s=nocrt_strtok_r nocrt_strtok_s=nocrt_strtok_r \ 2160 2160 $(foreach fn, atan atan2 cos ceil exp fabs floor ldexp log lrint llrint remainder sin tan \ 2161 ,$(fn)l=nocrt_$(fn) _$(fn)l=nocrt_$(fn))2161 ,$(fn)l=nocrt_$(fn) _$(fn)l=nocrt_$(fn)) 2162 2162 endif 2163 2163 endif … … 2176 2176 BLDDIRS += $(IPRT_OUT_DIR)/man/ 2177 2177 OTHER_CLEAN += $(foreach xml,$(basename $(notdir $(IPRT_XML_REFENTRY_FILES))), \ 2178 $(IPRT_OUT_DIR)/man/$(xml).xml $(IPRT_OUT_DIR)/man/$(xml).h $(IPRT_OUT_DIR)/man/$(xml).h.ts)2178 $(IPRT_OUT_DIR)/man/$(xml).xml $(IPRT_OUT_DIR)/man/$(xml).h $(IPRT_OUT_DIR)/man/$(xml).h.ts) 2179 2179 2180 2180 … … 2533 2533 2534 2534 RuntimeBldProg_SOURCES.darwin = $(filter-out \ 2535 generic/cdrom-generic.cpp \2536 generic/RTFileMove-generic.cpp \2537 generic/RTProcDaemonize-generic.cpp \2538 generic/RTThreadGetAffinity-stub-generic.cpp \2539 generic/RTThreadSetAffinity-stub-generic.cpp \2540 generic/RTThreadSetAffinityToCpu-generic.cpp \2541 generic/RTTimerCreate-generic.cpp \2542 generic/mppresent-generic.cpp \2543 generic/RTSystemShutdown-generic.cpp \2544 generic/timer-generic.cpp \2545 generic/utf16locale-generic.cpp \2546 generic/RTProcIsRunningByName-generic.cpp \2547 generic/RTThreadGetNativeState-generic.cpp \2548 r3/darwin/filelock-darwin.cpp \2549 r3/darwin/systemmem-darwin.cpp \2550 r3/darwin/krnlmod-darwin.cpp \2551 r3/darwin/filelock-darwin.cpp \2552 r3/darwin/RTSystemQueryDmiString-darwin.cpp \2553 r3/darwin/RTPathUserDocuments-darwin.cpp \2554 r3/posix/RTTimeSet-posix.cpp \2555 r3/posix/serialport-posix.cpp \2556 r3/posix/localipc-posix.cpp \2557 r3/generic/allocex-r3-generic.cpp \2558 r3/generic/RTLocaleQueryLocaleName-r3-generic.cpp \2559 r3/generic/RTLocaleQueryNormalizedBaseLocaleName-r3-generic.cpp \2560 r3/generic/RTLocaleQueryUserCountryCode-r3-generic.cpp \2561 , $(RuntimeBaseR3_SOURCES.darwin))2535 generic/cdrom-generic.cpp \ 2536 generic/RTFileMove-generic.cpp \ 2537 generic/RTProcDaemonize-generic.cpp \ 2538 generic/RTThreadGetAffinity-stub-generic.cpp \ 2539 generic/RTThreadSetAffinity-stub-generic.cpp \ 2540 generic/RTThreadSetAffinityToCpu-generic.cpp \ 2541 generic/RTTimerCreate-generic.cpp \ 2542 generic/mppresent-generic.cpp \ 2543 generic/RTSystemShutdown-generic.cpp \ 2544 generic/timer-generic.cpp \ 2545 generic/utf16locale-generic.cpp \ 2546 generic/RTProcIsRunningByName-generic.cpp \ 2547 generic/RTThreadGetNativeState-generic.cpp \ 2548 r3/darwin/filelock-darwin.cpp \ 2549 r3/darwin/systemmem-darwin.cpp \ 2550 r3/darwin/krnlmod-darwin.cpp \ 2551 r3/darwin/filelock-darwin.cpp \ 2552 r3/darwin/RTSystemQueryDmiString-darwin.cpp \ 2553 r3/darwin/RTPathUserDocuments-darwin.cpp \ 2554 r3/posix/RTTimeSet-posix.cpp \ 2555 r3/posix/serialport-posix.cpp \ 2556 r3/posix/localipc-posix.cpp \ 2557 r3/generic/allocex-r3-generic.cpp \ 2558 r3/generic/RTLocaleQueryLocaleName-r3-generic.cpp \ 2559 r3/generic/RTLocaleQueryNormalizedBaseLocaleName-r3-generic.cpp \ 2560 r3/generic/RTLocaleQueryUserCountryCode-r3-generic.cpp \ 2561 , $(RuntimeBaseR3_SOURCES.darwin)) 2562 2562 2563 2563 RuntimeBldProg_SOURCES.win = \ … … 2630 2630 2631 2631 RuntimeBldProg_SOURCES.amd64 = $(filter-out \ 2632 VBox/RTLogWriteVmm-amd64-x86.asm \2633 , $(RuntimeBaseR3_SOURCES.amd64))2632 VBox/RTLogWriteVmm-amd64-x86.asm \ 2633 , $(RuntimeBaseR3_SOURCES.amd64)) 2634 2634 2635 2635 RuntimeBldProg_SOURCES.x86 = $(filter-out \ 2636 VBox/RTLogWriteVmm-amd64-x86.asm \2637 , $(RuntimeBaseR3_SOURCES.x86))2636 VBox/RTLogWriteVmm-amd64-x86.asm \ 2637 , $(RuntimeBaseR3_SOURCES.x86)) 2638 2638 2639 2639 RuntimeBldProg_SOURCES.win.amd64 := \ … … 2721 2721 RuntimeGuestR3_DEFS = $(filter-out RTCRITSECT_STRICT RT_NO_GIP IN_SUP_R3 IPRT_WITH_LZMA, $(RuntimeR3_DEFS)) 2722 2722 RuntimeGuestR3_SOURCES = $(filter-out \ 2723 common/time/timesupref.cpp \2724 common/time/timesupA.asm \2725 common/time/timesup.cpp \2726 common/zip/xarvfs.cpp \2727 common/zip/lzmavfs.cpp \2728 r3/xml.cpp \2729 generic/RTLogWriteUser-generic.cpp \2730 , $(RuntimeR3_SOURCES)) \2723 common/time/timesupref.cpp \ 2724 common/time/timesupA.asm \ 2725 common/time/timesup.cpp \ 2726 common/zip/xarvfs.cpp \ 2727 common/zip/lzmavfs.cpp \ 2728 r3/xml.cpp \ 2729 generic/RTLogWriteUser-generic.cpp \ 2730 , $(RuntimeR3_SOURCES)) \ 2731 2731 \ 2732 2732 common/time/timesysalias.cpp \ … … 2829 2829 VBox/VBoxRTDeps.cpp \ 2830 2830 $(filter-out common/checksum/crc32.cpp, \ 2831 $(if-expr defined(VBOX_WITH_ALT_HASH_CODE), $(RuntimeBaseR3_SOURCES), \2832 $(patsubst common/checksum/alt-%,common/checksum/openssl-%,$(RuntimeBaseR3_SOURCES)) ) ) \2831 $(if-expr defined(VBOX_WITH_ALT_HASH_CODE), $(RuntimeBaseR3_SOURCES), \ 2832 $(patsubst common/checksum/alt-%,common/checksum/openssl-%,$(RuntimeBaseR3_SOURCES)) ) ) \ 2833 2833 common/checksum/crc32-zlib.cpp \ 2834 2834 common/dbg/dbgmodghidra.cpp \ … … 4611 4611 $(VBOX_PATH_RUNTIME_SRC)/VBox \ 4612 4612 $(foreach dir, $(VBOX_PATH_RUNTIME_SRC) $(VBOX_PATH_RUNTIME_SRC)/r3 $(VBOX_PATH_RUNTIME_SRC)/r0drv, \ 4613 $(dir) \4614 $(dir)/darwin \4615 $(dir)/haiku \4616 $(dir)/linux \4617 $(dir)/nt \4618 $(dir)/os2 \4619 $(dir)/solaris \4620 $(dir)/win \4621 $(dir)/win32 \4622 $(dir)/win64 \4623 $(dir)/generic \4624 )4613 $(dir) \ 4614 $(dir)/darwin \ 4615 $(dir)/haiku \ 4616 $(dir)/linux \ 4617 $(dir)/nt \ 4618 $(dir)/os2 \ 4619 $(dir)/solaris \ 4620 $(dir)/win \ 4621 $(dir)/win32 \ 4622 $(dir)/win64 \ 4623 $(dir)/generic \ 4624 ) 4625 4625 4626 4626 # These must come first in order to make things look nice.
Note:
See TracChangeset
for help on using the changeset viewer.