Changeset 98924 in vbox
- Timestamp:
- Mar 12, 2023 6:03:45 PM (21 months ago)
- Location:
- trunk/src/VBox/ValidationKit
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/Makefile.kmk
r98923 r98924 51 51 include $(PATH_SUB_CURRENT)/tests/Makefile.kmk 52 52 ifneq ($(KBUILD_HOST),os2) # needs yasm 53 if1of ($(KBUILD_TARGET_ARCH), amd64 x86 ) # needs yasm53 if1of ($(KBUILD_TARGET_ARCH), amd64 x86 arm64) # needs yasm 54 54 include $(PATH_SUB_CURRENT)/bootsectors/Makefile.kmk 55 55 endif … … 207 207 $$(VBOX_PATH_VALIDATIONKIT.$(os).$(arch))/loadgeneratorR0.r0 208 208 endif 209 ifn1of ($(os) .$(arch), os2.x86 os2.amd64 darwin.arm64) ## not compiling bootsectors, no yasm. could fix this better.209 ifn1of ($(os), os2) ## not compiling bootsectors, no yasm. could fix this better. 210 210 VBOX_VALIDATIONKIT_FILESPEC += \ 211 211 $$(VBOX_PATH_VALIDATIONKIT.$(os).$(arch))/bs3-timing-1$(TMP_SUFF_EXE) -
trunk/src/VBox/ValidationKit/bootsectors/bs3-timing-1-32.c32
r98103 r98924 42 42 # include <bs3kit.h> 43 43 #endif 44 #include <iprt/asm-amd64-x86.h> 44 #if defined(RT_ARcH_ARM) || defined(RT_ARCH_ARM64) 45 # include <iprt/asm-arm.h> 46 #else 47 # include <iprt/asm-amd64-x86.h> 48 #endif 45 49 #include <iprt/asm-math.h> 46 50 #include <iprt/asm.h>
Note:
See TracChangeset
for help on using the changeset viewer.