Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Feature Request] A short description of the feature #6

Open
ConYel opened this issue Aug 26, 2024 · 2 comments
Open

[Feature Request] A short description of the feature #6

ConYel opened this issue Aug 26, 2024 · 2 comments

Comments

@ConYel
Copy link

ConYel commented Aug 26, 2024

I am trying to build megadepth on alpine container in order to have a "slimmer" image in the end.
I get various issues from compiling.
the image currently:
```Dockerfile
FROM docker.io/rhub/r-minimal:4.4.1-patched as builder

RUN apk update
RUN apk add --no-cache --update-cache \
    --repository http://nl.alpinelinux.org/alpine/v3.20/main \
    autoconf=2.72-r0 \
    automake=1.16.5-r2 \
    bash tzdata libcurl git zlib gcc musl-dev xz-dev gcompat

RUN echo "America/Edmonton" > /etc/timezone
WORKDIR /home/hello
RUN git clone https://github.com/ChristopherWilks/megadepth.git
WORKDIR /home/hello/megadepth

CMD [ /bin/sh ]

Then I run inside the container :

 ./build_megadepth.sh
.
.
.
.
/home/hello/megadepth/htslib /home/hello/megadepth
+ autoheader
+ autoconf
+ make clean
expr: warning: '^\([0-9.]*\)$': using '^' as the first character
of a basic regular expression is not portable; it is ignored
rm -f test/*.tmp test/*.tmp.* test/longrefs/*.tmp.* test/tabix/*.tmp.* test/tabix/FAIL* header-exports.txt shlib-exports-so.txt
rm -f *.o *.pico cram/*.o cram/*.pico test/*.o test/*.dSYM version.h
rm -f hts-object-files
rm -f libhts.so libhts.so.*
rm -f libhts.a bgzip htsfile tabix  test/hts_endian test/fieldarith test/hfile test/pileup test/plugins-dlhts test/sam test/test_bgzf test/test_kfunc test/test_kstring test/test_realn test/test-regidx test/test_str2int test/test_view test/test_index test/test-vcf-api test/test-vcf-sweep test/test-bcf-sr test/fuzz/hts_open_fuzzer.o test/test-bcf-translate test/test-parse-reg test/thrash_threads1 test/thrash_threads2 test/thrash_threads3 test/thrash_threads4 test/thrash_threads5 test/thrash_threads6 test/thrash_threads7
+ [[ linux == \l\i\n\u\x ]]
+ [[ '' == \h\b\b ]]
+ ./configure --disable-libcurl --disable-bz2 --disable-lzma --with-libdeflate
configure: error: cannot find required auxiliary files: config.guess config.sub

Then I use

cd htslib
autoreconf --install
cd ..
./build_megadepth.sh
+ build_type=
++ perl -e '$bt=""; if($bt=~/static/i) { print "megadepth_static"; } else { print "megadepth_dynamic"; }'
+ bc=megadepth_dynamic
+ git submodule update --init --recursive
+ export SUBMODULE=1
+ SUBMODULE=1
+ ln -fs CMakeLists.txt.ci CMakeLists.txt
+ rm -rf zlib htslib libBigWig libdeflate build-release-temp
+ [[ -n '' ]]
+ [[ ! -s libdeflate_ci/libdeflate.a ]]
+ ln -fs libdeflate_ci libdeflate
+ htslib_to_link=htslib_ci
+ [[ -n '' ]]
+ [[ ! -s htslib_ci/libhts.so ]]
+ [[ htslib_ci != \h\t\s\l\i\b\_\s\t\a\t\i\c ]]
+ export CPPFLAGS=-I../libdeflate
+ CPPFLAGS=-I../libdeflate
+ export 'LDFLAGS=-L../libdeflate -ldeflate'
+ LDFLAGS='-L../libdeflate -ldeflate'
+ [[ htslib_ci == \h\t\s\l\i\b\_\s\t\a\t\i\c ]]
+ [[ -n 1 ]]
+ ln -fs htslib_ci htslib
+ ./get_htslib.sh linux
+ compiler=linux
+ platform=
+ target_dir=htslib
+ [[ -n '' ]]
+ VER=1.11
+ [[ -z 1 ]]
+ pushd htslib
/home/hello/megadepth/htslib /home/hello/megadepth
+ autoheader
+ autoconf
+ make clean
expr: warning: '^\([0-9.]*\)$': using '^' as the first character
of a basic regular expression is not portable; it is ignored
rm -f test/*.tmp test/*.tmp.* test/longrefs/*.tmp.* test/tabix/*.tmp.* test/tabix/FAIL* header-exports.txt shlib-exports-so.txt
rm -f *.o *.pico cram/*.o cram/*.pico test/*.o test/*.dSYM version.h
rm -f hts-object-files
rm -f libhts.so libhts.so.*
rm -f libhts.a bgzip htsfile tabix  test/hts_endian test/fieldarith test/hfile test/pileup test/plugins-dlhts test/sam test/test_bgzf test/test_kfunc test/test_kstring test/test_realn test/test-regidx test/test_str2int test/test_view test/test_index test/test-vcf-api test/test-vcf-sweep test/test-bcf-sr test/fuzz/hts_open_fuzzer.o test/test-bcf-translate test/test-parse-reg test/thrash_threads1 test/thrash_threads2 test/thrash_threads3 test/thrash_threads4 test/thrash_threads5 test/thrash_threads6 test/thrash_threads7
+ [[ linux == \l\i\n\u\x ]]
+ [[ '' == \h\b\b ]]
+ ./configure --disable-libcurl --disable-bz2 --disable-lzma --with-libdeflate
checking for gcc... gcc
checking whether the C compiler works... yes
checking for C compiler default output file name... a.out
checking for suffix of executables...
checking whether we are cross compiling... no
checking for suffix of object files... o
checking whether the compiler supports GNU C... yes
checking whether gcc accepts -g... yes
checking for gcc option to enable C11 features... none needed
checking for ranlib... ranlib
checking for grep that handles long lines and -e... /bin/grep
checking for C compiler warning flags... -Wall
checking for pkg-config... /usr/bin/pkg-config
checking pkg-config is at least version 0.9.0... yes
checking for gcc option to enable large file support... none needed
checking shared library type for unknown-Linux... plain .so
checking whether the compiler accepts -fvisibility=hidden... yes
checking build system type... x86_64-pc-linux-musl
checking host system type... Invalid configuration 'unknown-Linux': machine 'unknown-unknown' not recognized
configure: error: /bin/sh ./config.sub unknown-Linux failed

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

5 participants
@ConYel and others