
Raymond Toy pushed to branch issue-425-correctly-rounded-math-functions-single-float at cmucl / cmucl Commits: 8c957e76 by Raymond Toy at 2025-09-03T12:26:49-07:00 Include core-math 32-bit functions in lisp.a When building lisp.a, we were only adding CORE64_OBJS and forgot to include CORE32_OBJS. To do this, lisp.a needs to include CORE_MATH_OBJS. - - - - - 1 changed file: - src/lisp/GNUmakefile Changes: ===================================== src/lisp/GNUmakefile ===================================== @@ -60,7 +60,7 @@ lisp: ${OBJS} ${CORE_MATH_OBJS} version.o # Create a library out of all the object files so we can build an # executable. However, we need to remove exec-init.o from the library lisp.a: version.o ${OBJS} ${CORE_MATH_OBJS} ${EXEC_FINAL_OBJ} - $(AR) crs lisp.a ${OBJS} ${CORE64_OBJS} version.o + $(AR) crs lisp.a ${OBJS} ${CORE_MATH_OBJS} version.o ifneq (${EXEC_FINAL_OBJ},) $(AR) d lisp.a exec-init.o endif View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/-/commit/8c957e766463e0bac0d2d148... -- View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/-/commit/8c957e766463e0bac0d2d148... You're receiving this email because of your account on gitlab.common-lisp.net.
participants (1)
-
Raymond Toy (@rtoy)