Changeset e9dba436 in mainline for uspace/lib/posix/Makefile
- Timestamp:
- 2018-01-26T23:50:30Z (7 years ago)
- Children:
- 663b26ec
- Parents:
- 03cfe2ec
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/posix/Makefile
r03cfe2ec re9dba436 45 45 $(LIBSOFTINT_PREFIX)/libsoftint.a 46 46 47 SPECS = gcc.specs 48 LIBC_LINKER_SCRIPT = $(LIBC_PREFIX)/arch/$(UARCH)/_link.ld 49 LIBC_STARTUP_FILE = $(shell sed -n -e 's/^.*STARTUP(\(.*\)).*$$/\1/p' $(LIBC_LINKER_SCRIPT)) 50 EXPORT_LINKER_SCRIPT = link.ld 51 EXPORT_STARTUP_FILE = crt0.o 52 53 EXPORT_FILES = \ 54 ../math/libmath.a \ 55 ../clui/libclui.a \ 56 $(MERGED_C_LIBRARY) \ 57 $(EXPORT_STARTUP_FILE) \ 58 $(EXPORT_LINKER_SCRIPT) \ 59 $(SPECS) 60 47 61 REDEFS_HIDE_LIBC = redefs-hide-libc-symbols.list 48 62 … … 53 67 libc.o 54 68 55 EXTRA_OUTPUT = $(FIXED_C_LIBRARY) $(FIXED_POSIX_LIBRARY) $(MERGED_C_LIBRARY) 69 EXTRA_OUTPUT = $(FIXED_C_LIBRARY) $(FIXED_POSIX_LIBRARY) $(MERGED_C_LIBRARY) $(SPECS) $(EXPORT_LINKER_SCRIPT) $(EXPORT_STARTUP_FILE) 56 70 57 71 SOURCES = \ … … 83 97 test/scanf.c 84 98 99 EXPORT_CPPFLAGS = \ 100 -specs $(EXPORT_DIR)/lib/gcc.specs \ 101 -isystem $(EXPORT_DIR)/include 102 103 EXPORT_LDFLAGS = \ 104 -L$(EXPORT_DIR)/lib \ 105 --whole-archive -lc -lmath --no-whole-archive \ 106 -T link.ld 107 108 EXPORT_CFLAGS = \ 109 $(EXPORT_CPPFLAGS) \ 110 $(addprefix -Xlinker , $(EXPORT_LDFLAGS)) 111 85 112 include $(USPACE_PREFIX)/Makefile.common 86 113 87 $(INCLUDE_LIBC): ../c/include 88 ln -s -f -n ../$^ $@ 114 $(SPECS): $(CONFIG_MAKEFILE) 115 echo '*self_spec:' > $@.new 116 echo '+ $(COMMON_CFLAGS)' >> $@.new 117 echo >> $@.new 118 echo '*lib:' >> $@.new 119 echo '--whole-archive -lc -lmath --no-whole-archive' >> $@.new 120 echo >> $@.new 121 mv $@.new $@ 122 123 $(EXPORT_LINKER_SCRIPT): $(LIBC_LINKER_SCRIPT) 124 sed 's/STARTUP(.*)/STARTUP(crt0.o)/' $< > $@ 125 126 $(EXPORT_STARTUP_FILE): $(LIBC_STARTUP_FILE) 127 cp $< $@ 128 129 $(INCLUDE_LIBC): $(shell find ../c/include -name '*.h') 130 cp -r -L --remove-destination -T ../c/include $@ 131 find ../c/include -type f -and -not -name '*.h' -delete 132 133 export: $(EXPORT_DIR)/config 134 135 $(EXPORT_DIR)/config: export-libs export-includes 136 echo '# Generated file, do not modify.' >> $@.new 137 echo 'HELENOS_CROSS_PATH="$(shell dirname $(CC))"' >> $@.new 138 echo 'HELENOS_TARGET="$(TARGET)"' >> $@.new 139 echo 'HELENOS_CPPFLAGS="$(EXPORT_CPPFLAGS)"' >> $@.new 140 echo 'HELENOS_CFLAGS="$(EXPORT_CFLAGS)"' >> $@.new 141 echo 'HELENOS_LDFLAGS="$(EXPORT_LDFLAGS)"' >> $@.new 142 mv $@.new $@ 143 144 export-libs: $(EXPORT_FILES) export-includes 145 mkdir -p $(EXPORT_DIR)/lib 146 cp -L $(EXPORT_FILES) $(EXPORT_DIR)/lib 147 148 export-includes: $(INCLUDE_LIBC) $(shell find ./include ../c/arch/$(UARCH)/include $(ROOT_PATH)/abi/include -name '*.h') 149 mkdir -p $(EXPORT_DIR)/include 150 rm -rf $(EXPORT_DIR)/include.new 151 cp -r -L -T ./include/posix $(EXPORT_DIR)/include.new 152 cp -r -L -T ./include/libc $(EXPORT_DIR)/include.new/libc 153 cp -r -L ../c/arch/$(UARCH)/include/* $(EXPORT_DIR)/include.new/libc 154 cp -r -L $(ROOT_PATH)/abi/include/* $(EXPORT_DIR)/include.new 155 mkdir -p $(EXPORT_DIR)/include.new/libclui 156 cp -L ../clui/tinput.h $(EXPORT_DIR)/include.new/libclui 157 158 find "$(EXPORT_DIR)/include.new/libc" "$(EXPORT_DIR)/include.new/libclui" -name '*.h' -exec sed \ 159 -e 's:#include <:#include <libc/:' \ 160 -e 's:#include <libc/abi/:#include <abi/:' \ 161 -e 's:#include <libc/_bits/:#include <_bits/:' \ 162 -e 's:#include <libc/libc/:#include <libc/:' \ 163 -i {} \; 164 find "$(EXPORT_DIR)/include.new" -name '*.h' -exec sed \ 165 -e 's:#include "posix/:#include ":' \ 166 -e 's:#include <posix/:#include <:' \ 167 -i {} \; 168 169 rm -rf $(EXPORT_DIR)/include 170 mv $(EXPORT_DIR)/include.new $(EXPORT_DIR)/include 89 171 90 172 $(FIXED_C_LIBRARY): $(LIBC_FILE) $(REDEFS_HIDE_LIBC) … … 97 179 $(REDEFS_HIDE_LIBC): $(SOURCES) 98 180 sed -n -e 's/_HIDE_LIBC_SYMBOL(\(.*\))/\1 __helenos_libc_\1/p' $(SOURCES) >$@ 99
Note:
See TracChangeset
for help on using the changeset viewer.