-
Notifications
You must be signed in to change notification settings - Fork 9
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
compilation terminated during make #37
Comments
Unless you have a specific reason to compile, try using one of the precompiled releases. Otherwise, you'll need to configure your system to have the C standard library files available to the compiler. |
Hi, I tried to use the precompiled abra2 version to run the data as the following command in my Macbook Pro And, here is what I got; I did not the output bam file. Sorry for keepoing bothering you, I am trying to use your program to analyze my NGs data for my cripr -edited lines. INFO Mon Jul 22 15:23:51 CST 2019 ABRA version: 2.19 INFO Mon Jul 22 15:23:51 CST 2019 paired end: true |
Ah, yes. The precompiled versions will not work on Mac. A quick Google search suggests to install xcode. I have not attempted to run on Mac myself. |
Hi,
I keep facing this issue when making the Makefile
rm -rf target
mvn clean
[INFO] Scanning for projects...
[INFO]
[INFO] ----------------------------< abra2:abra2 >-----------------------------
[INFO] Building abra 2.19
[INFO] --------------------------------[ jar ]---------------------------------
[INFO]
[INFO] --- maven-clean-plugin:2.5:clean (default-clean) @ abra2 ---
[INFO] ------------------------------------------------------------------------
[INFO] BUILD SUCCESS
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 0.197 s
[INFO] Finished at: 2019-07-20T23:40:00-06:00
[INFO] ------------------------------------------------------------------------
mkdir target
g++ -g -O2 -Isrc/main/c -I/Users/tzhou_admin/anaconda3/include -I/Users/tzhou_admin/anaconda3/include/linux -shared -fPIC src/main/c/assembler.cpp src/main/c/sg_aligner.cpp -o target/libAbra.so
src/main/c/assembler.cpp:1:19: fatal error: stdio.h: No such file or directory
#include <stdio.h>
^
compilation terminated.
src/main/c/sg_aligner.cpp:1:19: fatal error: stdio.h: No such file or directory
#include <stdio.h>
^
compilation terminated.
Could you please help figure out what is problem during the installation?
Thanks very much!
The text was updated successfully, but these errors were encountered: