Changeset 5597 in vbox
- Timestamp:
- Nov 1, 2007 12:48:28 AM (17 years ago)
- Location:
- trunk/src/VBox/VMM
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/Makefile.kmk
r5033 r5597 174 174 VMMGCBuiltin_SOURCES = $(PATH_TARGET)/VMMGCBuiltin.def 175 175 $(PATH_TARGET)/VMMGCBuiltin.def: VMMGC/VMMGCBuiltin.def | $(call DIRDEP,$(PATH_TARGET)) 176 $(SED) -e ' s/^[ \t][ \t]*\([a-zA-Z]\)/ _\1/' -e 's/[ \t]DATA[ \t]*/ /' $< > [email protected]176 $(SED) -e '/not-os2/d' -e 's/^[ \t][ \t]*\([a-zA-Z]\)/ _\1/' -e 's/[ \t]DATA[ \t]*/ /' $< > [email protected] 177 177 $(MV) -f [email protected] $@ 178 178 endif … … 190 190 VMMGCImp_SOURCES = $(PATH_TARGET)/VMMGC.def 191 191 $(PATH_TARGET)/VMMGC.def: VMMGC/VMMGC.def | $(call DIRDEP,$(PATH_TARGET)) 192 $(SED) -e ' s/^[ \t][ \t]*\([a-zA-Z]\)/ _\1/' -e 's/[ \t]DATA[ \t]*/ /' $< > [email protected]192 $(SED) -e '/not-os2/d' -e 's/^[ \t][ \t]*\([a-zA-Z]\)/ _\1/' -e 's/[ \t]DATA[ \t]*/ /' $< > [email protected] 193 193 $(APPEND) "[email protected]" "" 194 194 $(APPEND) "[email protected]" " ___ehInit" … … 211 211 VMMR0Imp_SOURCES = $(PATH_TARGET)/VMMR0.def 212 212 $(PATH_TARGET)/VMMR0.def: VMMR0/VMMR0.def | $(call DIRDEP,$(PATH_TARGET)) 213 $(SED) -e ' s/^[ \t][ \t]*\([a-zA-Z]\)/ _\1/' -e 's/[ \t]DATA[ \t]*/ /' $< > [email protected]213 $(SED) -e '/not-os2/d' -e 's/^[ \t][ \t]*\([a-zA-Z]\)/ _\1/' -e 's/[ \t]DATA[ \t]*/ /' $< > [email protected] 214 214 $(APPEND) "[email protected]" "" 215 215 $(APPEND) "[email protected]" " ___ehInit" -
trunk/src/VBox/VMM/VMMGC/VMMGC.def
r5492 r5597 65 65 RTTimeNanoTSLFenceSync 66 66 RTTimeNanoTSLFenceAsync 67 ASMMultU64ByU32DivByU32 67 ASMMultU64ByU32DivByU32 ; not-os2 -
trunk/src/VBox/VMM/VMMR0/VMMR0.def
r5492 r5597 50 50 RTTimeNanoTSLFenceSync 51 51 RTTimeNanoTSLFenceAsync 52 ASMMultU64ByU32DivByU32 52 ASMMultU64ByU32DivByU32 ; not-os2 53 53
Note:
See TracChangeset
for help on using the changeset viewer.