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

Build fails: don't know how to make install/strip. Stop #109

Open
yurivict opened this issue Nov 28, 2017 · 2 comments
Open

Build fails: don't know how to make install/strip. Stop #109

yurivict opened this issue Nov 28, 2017 · 2 comments

Comments

@yurivict
Copy link

Both 1.0 and current revisions fail:

make[1]: don't know how to make install/strip. Stop

I'm pretty sure something's wrong with your cmake makefiles.

On FreeBSD.

@horde3d
Copy link
Owner

horde3d commented Nov 29, 2017

Well depends on what you define with "wrong".
I guess CMAKE_SYSTEM_NAME is FreeBSD on your system, while we only support Linux.
So maybe you can fix it by extending all comparison of CMAKE_SYSTEM_NAME with Linux with an OR ${CMAKE_SYSTEM_NAME} MATCHES "FreeBSD"
Unfortunately I don't have a FreeBSD system available so I can not test it myself

@yurivict
Copy link
Author

You are right. For compatibility with BSDs, you need to change them all to ${CMAKE_SYSTEM_NAME} MATCHES "Linux|.*BSD".

Besides this, it failed because -fPIC was missing. It succeeded after I added -fPIC.

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

2 participants