Changeset 98230 in vbox
- Timestamp:
- Jan 23, 2023 11:00:38 AM (2 years ago)
- svn:sync-xref-src-repo-rev:
- 155420
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/libs/libogg-1.3.5/Makefile.kmk
r98103 r98230 29 29 include $(KBUILD_PATH)/subheader.kmk 30 30 31 32 #33 # Need to drop some assembly flags and add some C flags (gcc) present in34 # VBoxR3DllNonPedantic. So, create or own template deriving from it.35 #36 # Note! We ASSUME that see is available here (doesn't build cleanly on 32-bit37 # linux without this assumption). Too bad for anyone with ancient CPUs.38 #39 TEMPLATE_VBOXLIBOGG = Template for adjusting assembler and C compiler flags.40 TEMPLATE_VBOXLIBOGG_EXTENDS = VBoxR3DllNonPedanticFast41 ifeq ($(KBUILD_TARGET),win)42 TEMPLATE_VBOXLIBOGG_ASFLAGS.amd64 = $(filter-out -Worphan-labels -f win64, $(TEMPLATE_VBoxR3DllNonPedanticFast_ASFLAGS.amd64)) \43 -f x6444 else45 TEMPLATE_VBOXLIBOGG_CFLAGS = $(filter-out $(VBOX_GCC_fvisibility-hidden), $(TEMPLATE_VBoxR3DllNonPedanticFast_CFLAGS))46 TEMPLATE_VBOXLIBOGG_CFLAGS.amd64 = $(TEMPLATE_VBoxR3DllNonPedanticFast_CFLAGS.amd64) -msse # Needed?47 TEMPLATE_VBOXLIBOGG_CFLAGS.x86 = $(TEMPLATE_VBoxR3DllNonPedanticFast_CFLAGS.x86) -msse48 TEMPLATE_VBOXLIBOGG_ASFLAGS.amd64 = $(filter-out -Worphan-labels, $(TEMPLATE_VBoxR3DllNonPedanticFast_ASFLAGS.amd64))49 TEMPLATE_VBOXLIBOGG_ASFLAGS.x86 = $(filter-out -Worphan-labels, $(TEMPLATE_VBoxR3DllNonPedanticFast_ASFLAGS.x86))50 endif51 52 53 31 # 54 32 # The VBox Ogg shared library. 55 33 # 56 34 LIBRARIES += VBox-libogg 57 VBox-libogg_TEMPLATE := VBOXLIBOGG 58 35 VBox-libogg_TEMPLATE := VBoxR3DllNonPedanticFast 59 36 VBox-libogg_INCS := \ 60 37 . \ … … 62 39 include/ogg \ 63 40 src 64 65 41 VBox-libogg_SOURCES := \ 66 42 src/bitwise.c \
Note:
See TracChangeset
for help on using the changeset viewer.