Skip to content

Commit a280fea

Browse files
authored
Move math source files. (#151)
This is split out from the LTO change. It's needed by the LTO build so that we can easily build these files in non-LTO mode, since they satisfy calls emitted by LLVM codegen after LTO.
1 parent dd010be commit a280fea

File tree

3 files changed

+3
-1
lines changed

3 files changed

+3
-1
lines changed

Makefile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,9 @@ endif
3434
BASICS_DIR = $(CURDIR)/basics
3535
BASICS_INC = $(BASICS_DIR)/include
3636
BASICS_CRT_SOURCES = $(wildcard $(BASICS_DIR)/crt/*.c)
37-
BASICS_SOURCES = $(wildcard $(BASICS_DIR)/sources/*.c)
37+
BASICS_SOURCES = \
38+
$(wildcard $(BASICS_DIR)/sources/*.c) \
39+
$(wildcard $(BASICS_DIR)/sources/math/*.c)
3840
DLMALLOC_DIR = $(CURDIR)/dlmalloc
3941
DLMALLOC_SRC_DIR = $(DLMALLOC_DIR)/src
4042
DLMALLOC_SOURCES = $(DLMALLOC_SRC_DIR)/dlmalloc.c
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)