mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-01-13 19:33:13 +01:00
18 lines
414 B
Bash
Executable File
18 lines
414 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# I'm no good bash scripter ...
|
|
|
|
# copy imports
|
|
cp -u internal/llvmdc/bitmanip.d ../import/llvmdc/bitmanip.di
|
|
cp -u internal/llvmdc/vararg.d ../import/llvmdc/vararg.di
|
|
|
|
# make the runtime
|
|
cp -Ru lib ../tango
|
|
cd ../tango/lib
|
|
make -f llvmdc-posix.mak clean
|
|
make -f llvmdc-posix.mak
|
|
|
|
# install the runtime
|
|
rm -f ../../lib/libtango-base-llvmdc-native.a
|
|
cp -s `pwd`/libtango-base-llvmdc-native.a ../../lib
|