Changeset 96182 in vbox
- Timestamp:
- Aug 13, 2022 12:53:43 AM (3 years ago)
- svn:sync-xref-src-repo-rev:
- 152990
- Location:
- trunk/src/VBox/Runtime
- Files:
-
- 2 added
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/Makefile.kmk
r96167 r96182 1905 1905 common/math/ceil.asm \ 1906 1906 common/math/ceilf.asm \ 1907 common/math/exp2.asm \ 1908 common/math/exp2f.asm \ 1907 1909 common/math/fabs.asm \ 1908 1910 common/math/fabsf.asm \ … … 1957 1959 common/math/ceil.asm \ 1958 1960 common/math/ceilf.asm \ 1961 common/math/exp2.asm \ 1962 common/math/exp2f.asm \ 1959 1963 common/math/fabs.asm \ 1960 1964 common/math/fabsf.asm \ … … 2031 2035 common/compiler/vcc/guard-vcc.asm \ 2032 2036 common/compiler/vcc/stack-vcc.asm 2033 RuntimeR3_VBOX_NOCRT_ALIASES.win = strtok_s=nocrt_strtok_r _strtok_s=nocrt_strtok_r nocrt_strtok_s=nocrt_strtok_r \ 2034 cosl=nocrt_cos _cosl=nocrt_cos \ 2035 ceill=nocrt_ceil _ceill=nocrt_ceil \ 2036 fabsl=nocrt_fabs _fabsl=nocrt_fabs \ 2037 floorl=nocrt_floor _floorl=nocrt_floor \ 2038 ldexpl=nocrt_ldexp _ldexpl=nocrt_ldexp \ 2039 logl=nocrt_log _logl=nocrt_log \ 2040 lrintl=nocrt_lrint _lrintl=nocrt_lrint \ 2041 llrintl=nocrt_llrint _llrintl=nocrt_llrint \ 2042 remainderl=nocrt_remainder _remainderl=nocrt_remainder \ 2043 sinl=nocrt_sin _sinl=nocrt_sin \ 2044 tanl=nocrt_tan _tanl=nocrt_tan 2037 RuntimeR3_VBOX_NOCRT_ALIASES.win := \ 2038 strtok_s=nocrt_strtok_r _strtok_s=nocrt_strtok_r nocrt_strtok_s=nocrt_strtok_r \ 2039 $(foreach fn, atan atan2 cos ceil exp fabs floor ldexp log lrint llrint remainder sin tan \ 2040 ,$(fn)l=nocrt_$(fn) _$(fn)l=nocrt_$(fn)) 2045 2041 endif 2046 2042 endif
Note:
See TracChangeset
for help on using the changeset viewer.