mirror of https://gitlab.com/nakst/essence
fix building on other systems
This commit is contained in:
parent
3ad305c4fd
commit
f53bb37c84
|
@ -34,7 +34,7 @@ cp ports/gcc/changes/gcc_gcc_config_host_darwin.c bin/gcc-src/gcc/config/host-da
|
||||||
cp ports/gcc/changes/gcc_libgcc_config.host bin/gcc-src/libgcc/config.host
|
cp ports/gcc/changes/gcc_libgcc_config.host bin/gcc-src/libgcc/config.host
|
||||||
cp ports/gcc/changes/gcc_libstdc++-v3_configure bin/gcc-src/libstdc++-v3/configure
|
cp ports/gcc/changes/gcc_libstdc++-v3_configure bin/gcc-src/libstdc++-v3/configure
|
||||||
|
|
||||||
if [ "$1" == "download-only" ]; then
|
if [ "$1" = "download-only" ]; then
|
||||||
exit 0
|
exit 0
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
Binary file not shown.
18
start.sh
18
start.sh
|
@ -6,7 +6,16 @@ cd "$(dirname "$0")"
|
||||||
# Create the bin directory.
|
# Create the bin directory.
|
||||||
mkdir -p bin
|
mkdir -p bin
|
||||||
|
|
||||||
if [[ "$OSTYPE" == "darwin"* ]]; then
|
# Check that we are running on a sensible platform.
|
||||||
|
uname -o | grep Cygwin > /dev/null
|
||||||
|
if [ $? -ne 1 ]; then
|
||||||
|
echo Cygwin is not supported. Please install a modern GNU/Linux distro.
|
||||||
|
exit
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Setup for Darwin.
|
||||||
|
uname -o | grep Darwin > /dev/null
|
||||||
|
if [ $? -ne 1 ]; then
|
||||||
export CC=gcc-11
|
export CC=gcc-11
|
||||||
export CXX=g++-11
|
export CXX=g++-11
|
||||||
export CPPFLAGS=-I/opt/homebrew/include
|
export CPPFLAGS=-I/opt/homebrew/include
|
||||||
|
@ -15,13 +24,6 @@ if [[ "$OSTYPE" == "darwin"* ]]; then
|
||||||
alias gcc="gcc-11"
|
alias gcc="gcc-11"
|
||||||
alias g++="g++-11"
|
alias g++="g++-11"
|
||||||
alias sed="gsed"
|
alias sed="gsed"
|
||||||
else
|
|
||||||
# Check that we are running on a sensible platform.
|
|
||||||
uname -o | grep Cygwin > /dev/null
|
|
||||||
if [ $? -ne 1 ]; then
|
|
||||||
echo Cygwin is not supported. Please install a modern GNU/Linux distro.
|
|
||||||
exit
|
|
||||||
fi
|
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Check that the source code is valid.
|
# Check that the source code is valid.
|
||||||
|
|
|
@ -36,6 +36,7 @@ bool foundValidCrossCompiler;
|
||||||
bool coloredOutput;
|
bool coloredOutput;
|
||||||
bool encounteredErrors;
|
bool encounteredErrors;
|
||||||
bool interactiveMode;
|
bool interactiveMode;
|
||||||
|
bool canBuildLuigi;
|
||||||
FILE *systemLog;
|
FILE *systemLog;
|
||||||
char compilerPath[4096];
|
char compilerPath[4096];
|
||||||
int argc;
|
int argc;
|
||||||
|
@ -333,7 +334,7 @@ void BuildUtilities() {
|
||||||
BUILD_UTILITY("render_svg", "-lm", "");
|
BUILD_UTILITY("render_svg", "-lm", "");
|
||||||
BUILD_UTILITY("build_core", "-pthread -DPARALLEL_BUILD", "");
|
BUILD_UTILITY("build_core", "-pthread -DPARALLEL_BUILD", "");
|
||||||
|
|
||||||
#ifndef __APPLE__ // Luigi doesn't support macOS.
|
if (canBuildLuigi) {
|
||||||
BUILD_UTILITY("config_editor", "-lX11 -Wno-unused-parameter", "");
|
BUILD_UTILITY("config_editor", "-lX11 -Wno-unused-parameter", "");
|
||||||
|
|
||||||
if (CheckDependencies("Utilities.Designer")) {
|
if (CheckDependencies("Utilities.Designer")) {
|
||||||
|
@ -341,7 +342,7 @@ void BuildUtilities() {
|
||||||
ParseDependencies("bin/designer2.d", "Utilities.Designer", false);
|
ParseDependencies("bin/designer2.d", "Utilities.Designer", false);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
#endif
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void Build(int optimise, bool compile) {
|
void Build(int optimise, bool compile) {
|
||||||
|
@ -1573,6 +1574,8 @@ int main(int _argc, char **_argv) {
|
||||||
printf("Enter 'help' to get a list of commands.\n");
|
printf("Enter 'help' to get a list of commands.\n");
|
||||||
char *prev = NULL;
|
char *prev = NULL;
|
||||||
|
|
||||||
|
canBuildLuigi = !CallSystem("gcc -o bin/luigi.h.gch util/luigi.h -D UI_IMPLEMENTATION -D UI_LINUX");
|
||||||
|
|
||||||
while (true) {
|
while (true) {
|
||||||
char *l = NULL;
|
char *l = NULL;
|
||||||
size_t pos = 0;
|
size_t pos = 0;
|
||||||
|
|
Loading…
Reference in New Issue