Merge pull request #1266 from KomodoPlatform/rogue_multiOS
rogue multi OS
This commit is contained in:
38
src/cc/Makefile_rogue
Normal file
38
src/cc/Makefile_rogue
Normal file
@@ -0,0 +1,38 @@
|
|||||||
|
SHELL = /bin/sh
|
||||||
|
CC = gcc
|
||||||
|
CC_DARWIN = g++-6
|
||||||
|
CC_WIN = x86_64-w64-mingw32-gcc-posix
|
||||||
|
CFLAGS_DARWIN = -DBUILD_ROGUE -std=c++11 -arch x86_64 -I../../depends/$(shell echo `../..//depends/config.guess`/include) -I../univalue/include -I../cryptoconditions/include -I../cryptoconditions/src -I../cryptoconditions/src/asn -I.. -I. -fPIC -Wl,-undefined -Wl,dynamic_lookup -Wno-write-strings -shared -dynamiclib
|
||||||
|
CFLAGS = -Wno-write-strings -DBUILD_ROGUE -std=c++11 -I../../depends/$(shell echo `../..//depends/config.guess`/include) -I../univalue/include -I../cryptoconditions/include -I../cryptoconditions/src -I../cryptoconditions/src/asn -I.. -I. -fPIC -shared
|
||||||
|
CFLAGS_WIN = -Wno-write-strings -DBUILD_ROGUE -std=c++11 -I../../depends/x86_64-w64-mingw32/include -I../univalue/include -I../cryptoconditions/include -I../cryptoconditions/src -I../cryptoconditions/src/asn -I.. -I. -fPIC -shared
|
||||||
|
DEBUGFLAGS = -O0 -D _DEBUG
|
||||||
|
RELEASEFLAGS = -O2 -D NDEBUG -combine -fwhole-program
|
||||||
|
$(info $(OS))
|
||||||
|
OS := $(shell uname -s)
|
||||||
|
$(info $(OS))
|
||||||
|
TARGET = librogue.so
|
||||||
|
TARGET_DARWIN = librogue.dylib
|
||||||
|
TARGET_WIN = librogue.dll
|
||||||
|
SOURCES = cclib.cpp
|
||||||
|
#HEADERS = $(shell echo ../cryptoconditions/include/*.h) -I/usr/local/Cellar/gcc\@6/6.4.0_2/include/c++/6.4.0/
|
||||||
|
|
||||||
|
all: $(TARGET)
|
||||||
|
|
||||||
|
$(TARGET): $(SOURCES)
|
||||||
|
$(info Building cclib to src/)
|
||||||
|
ifeq ($(OS),Darwin)
|
||||||
|
$(CC_DARWIN) $(CFLAGS_DARWIN) $(DEBUGFLAGS) -o $(TARGET_DARWIN) -c $(SOURCES) -lncurses
|
||||||
|
cp $(TARGET_DARWIN) ../libcc.dylib
|
||||||
|
else ifeq ($(HOST),x86_64-w64-mingw32)
|
||||||
|
$(info WINDOWS)
|
||||||
|
$(CC_WIN) $(CFLAGS_WIN) $(DEBUGFLAGS) -o $(TARGET_WIN) -c $(SOURCES) -lncurses
|
||||||
|
cp $(TARGET_WIN) ../libcc.dll
|
||||||
|
#else ifeq ($(WIN_HOST),True) - todo: pass ENV var from build.sh if WIN host
|
||||||
|
else
|
||||||
|
$(info LINUX)
|
||||||
|
$(CC) $(CFLAGS) $(DEBUGFLAGS) -o $(TARGET) -c $(SOURCES) -lncurses
|
||||||
|
cp $(TARGET) ../libcc.so
|
||||||
|
endif
|
||||||
|
|
||||||
|
clean:
|
||||||
|
rm -rf $(TARGET)
|
||||||
@@ -33,14 +33,14 @@
|
|||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
|
||||||
#if defined(_WIN32)
|
#if defined(_WIN32)
|
||||||
#include <Windows.h>
|
#include <windows.h>
|
||||||
#include <Lmcons.h>
|
#include <lmcons.h>
|
||||||
#include <io.h>
|
#include <io.h>
|
||||||
#include <conio.h>
|
#include <conio.h>
|
||||||
#pragma warning( disable: 4201 )
|
#pragma warning( disable: 4201 )
|
||||||
#include <shlobj.h>
|
#include <shlobj.h>
|
||||||
#pragma warning( default: 4201 )
|
#pragma warning( default: 4201 )
|
||||||
#include <Shlwapi.h>
|
#include <shlwapi.h>
|
||||||
#undef MOUSE_MOVED
|
#undef MOUSE_MOVED
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|||||||
@@ -47,14 +47,7 @@ make "$@" -C ./depends/ V=1 NO_QT=1 NO_PROTON=1
|
|||||||
WD=$PWD
|
WD=$PWD
|
||||||
cd src/cc
|
cd src/cc
|
||||||
echo $PWD
|
echo $PWD
|
||||||
|
./makerogue
|
||||||
if make "$@"; then
|
|
||||||
echo CCLIB BUILD SUCCESSFUL
|
|
||||||
else
|
|
||||||
echo CCLIB BUILD FAILED
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
|
|
||||||
cd $WD
|
cd $WD
|
||||||
|
|
||||||
./autogen.sh
|
./autogen.sh
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
HOST=x86_64-w64-mingw32
|
export HOST=x86_64-w64-mingw32
|
||||||
CXX=x86_64-w64-mingw32-g++-posix
|
CXX=x86_64-w64-mingw32-g++-posix
|
||||||
CC=x86_64-w64-mingw32-gcc-posix
|
CC=x86_64-w64-mingw32-gcc-posix
|
||||||
PREFIX="$(pwd)/depends/$HOST"
|
PREFIX="$(pwd)/depends/$HOST"
|
||||||
@@ -11,6 +11,12 @@ cd "$(dirname "$(readlink -f "$0")")/.."
|
|||||||
|
|
||||||
cd depends/ && make HOST=$HOST V=1 NO_QT=1
|
cd depends/ && make HOST=$HOST V=1 NO_QT=1
|
||||||
cd ../
|
cd ../
|
||||||
|
WD=$PWD
|
||||||
|
cd src/cc
|
||||||
|
echo $PWD
|
||||||
|
./makerogue
|
||||||
|
cd $WD
|
||||||
|
|
||||||
./autogen.sh
|
./autogen.sh
|
||||||
CONFIG_SITE=$PWD/depends/x86_64-w64-mingw32/share/config.site CXXFLAGS="-DPTW32_STATIC_LIB -DCURL_STATICLIB -DCURVE_ALT_BN128 -fopenmp -pthread" ./configure --prefix="${PREFIX}" --host=x86_64-w64-mingw32 --enable-static --disable-shared
|
CONFIG_SITE=$PWD/depends/x86_64-w64-mingw32/share/config.site CXXFLAGS="-DPTW32_STATIC_LIB -DCURL_STATICLIB -DCURVE_ALT_BN128 -fopenmp -pthread" ./configure --prefix="${PREFIX}" --host=x86_64-w64-mingw32 --enable-static --disable-shared
|
||||||
sed -i 's/-lboost_system-mt /-lboost_system-mt-s /' configure
|
sed -i 's/-lboost_system-mt /-lboost_system-mt-s /' configure
|
||||||
|
|||||||
@@ -103,20 +103,12 @@ ld -v
|
|||||||
|
|
||||||
|
|
||||||
HOST="$HOST" BUILD="$BUILD" NO_PROTON="$PROTON_ARG" "$MAKE" "$@" -C ./depends/ V=1
|
HOST="$HOST" BUILD="$BUILD" NO_PROTON="$PROTON_ARG" "$MAKE" "$@" -C ./depends/ V=1
|
||||||
|
|
||||||
#BUILD CCLIB
|
#BUILD CCLIB
|
||||||
|
|
||||||
WD=$PWD
|
WD=$PWD
|
||||||
cd src/cc
|
cd src/cc
|
||||||
echo $PWD
|
echo $PWD
|
||||||
|
./makerogue
|
||||||
if make "$@"; then
|
|
||||||
echo CCLIB BUILD SUCCESSFUL
|
|
||||||
else
|
|
||||||
echo CCLIB BUILD FAILED
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
|
|
||||||
cd $WD
|
cd $WD
|
||||||
|
|
||||||
./autogen.sh
|
./autogen.sh
|
||||||
|
|||||||
Reference in New Issue
Block a user