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

Enable mingw cross-compilation using wclang #18

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 10 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,14 +42,23 @@ that's it.
If the build system is unable to find your GMP installation, please edit the paths in file makeConstants. In general, the project uses a basic makefile. In the event that you have to do something more complicated to get the library to compile, or if you are unable to get it to compile, please e-mail me or open an issue on GitHub. Doing so is much more effective than cursing at your computer, and will save other users trouble in the future.


Windows
Windows Native
----

Cork uses C++11, so you will need the most recent compiler; Visual Studio 2012 or higher please. You will also need to install the MPIR arithmetic library into your Visual Studio environment.

Once this is done, you can use the solution and project files in the /win/ subdirectory to build the demo program. The solution/project is not currently configured to build a DLL. Please bug me if this is an issue for you.


Cross-Compiling on Unix for Windows
-----------------------------------

Cork can be cross compiled for windows using [mingw-w64](http://mingw-w64.sourceforge.net) and [wclang](https://github.com/tpoechtrager/wclang) which is a clang frontend for mingw. You first need to cross compile the GMP library using mingw-w64 and then:

make CC=w32-clang CXX=w32-clang++ GMP_INC_DIR=/usr/i686-w64-mingw32/include/ GMP_LIB_DIR=/usr/i686-w64-mingw32/lib/

Tune the `GMP_INC_DIR` and `GMP_LIB_DIR` variables according to where gmp was compiled. It should build a Windows executable under `bin/cork`. You can rename it `cork.exe` and you are set.

Licensing
=========

Expand Down
2 changes: 1 addition & 1 deletion src/isct/fixint.h
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@



#ifdef _WIN32
#ifdef _MSC_VER
#include <mpir.h>
#else
#include <gmp.h>
Expand Down
2 changes: 1 addition & 1 deletion src/isct/gmpext4.h
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
// +-------------------------------------------------------------------------
#pragma once

#ifdef _WIN32
#ifdef _MSC_VER
#pragma warning(disable: 4800)
#pragma warning(disable: 4244)
#include <mpirxx.h>
Expand Down
2 changes: 1 addition & 1 deletion src/mesh/mesh.isct.tpp
Original file line number Diff line number Diff line change
Expand Up @@ -632,7 +632,7 @@ public:
quantized_coords.resize(N);
uint write = 0;
TopoCache::verts.for_each([&](Vptr v) {
#ifdef _WIN32
#ifdef _MSC_VER
Vec3d raw = mesh->verts[v->ref].pos;
#else
Vec3d raw = TopoCache::mesh->verts[v->ref].pos;
Expand Down
2 changes: 1 addition & 1 deletion src/mesh/mesh.tpp
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ typename Mesh<VertData,TriData>::NeighborCache
}

// This function signature is an amazing disaster...
#ifdef _WIN32
#ifdef _MSC_VER
template<class VertData, class TriData>
template<class Edata>
typename Mesh<VertData,TriData>::EGraphCache<Edata>
Expand Down
4 changes: 4 additions & 0 deletions src/util/prelude.h
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,10 @@
#include <algorithm>
#include <iostream>

#ifndef M_PI
#define M_PI 3.14159265358979323846
#endif

#ifndef uint
typedef unsigned int uint;
#endif
Expand Down