This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
root@4ca9abf15fa6 build]# conan install libmicrohttpd/0.9.75@ -r conancenter | |
Configuration: | |
[settings] | |
arch=x86_64 | |
arch_build=x86_64 | |
build_type=Release | |
compiler=gcc | |
compiler.libcxx=libstdc++11 | |
compiler.version=9.3 | |
os=Linux |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
message("TPE_TOOLS_PATH=${TPE_TOOLS_PATH}, ENV{TPE_TOOLS_PATH}=$ENV{TPE_TOOLS_PATH}") | |
if(NOT DEFINED TPE_TOOLS_PATH) | |
set(TPE_TOOLS_PATH $ENV{TPE_TOOLS_PATH}) | |
endif() | |
if(NOT DEFINED TPE_TOOLS_PATH) | |
message(FATAL_ERROR "Please define TPE_TOOLS_PATH, (either as -DTPE_TOOLS_PATH or environment variable)") | |
set(ENV{TPE_TOOLS_PATH} "foo") | |
endif() | |
message("TPE_TOOLS_PATH=${TPE_TOOLS_PATH}, ENV{TPE_TOOLS_PATH}=$ENV{TPE_TOOLS_PATH}") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
cmake_minimum_required(VERSION 3.6 FATAL_ERROR) | |
list(APPEND CMAKE_MODULE_PATH ${CMAKE_SOURCE_DIR}/cmake_module) | |
message(STATUS "CMAKE_MODULE_PATH=${CMAKE_MODULE_PATH} CMAKE_HOME_DIRECTORY=${CMAKE_HOME_DIRECTORY}") | |
set(CMAKE_CXX_STANDARD 98) | |
include(tpe-target) #this is used to auto define toolchain | |
################################################# | |
# Configuration du projet |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ 0%] Building CXX object InfraWinBaseLib/CMakeFiles/InfraWinBaseLib.dir/src/main/c/thread/WinEventManager.cpp.obj | |
cd /d C:\Projets\EPayKit\eclipse_workspace\cbuild_eclipse\InfraWinBaseLib && C:\MinGW\bin\g++.exe @CMakeFiles/InfraWinBaseLib.dir/includes_CXX.rsp -fmessage-length=0 -D_WIN32_WINNT=0x0502 -DCMAKE -fpermissive -std=gnu++0x -o CMakeFiles\InfraWinBaseLib.dir\src\main\c\thread\WinEventManager.cpp.obj -c C:\Projets\Git_Proj\EPayKit_FromSVN\workspace\windows\EPayKit\InfraWinBaseLib\src\main\c\thread\WinEventManager.cpp | |
In file included from c:\mingw\lib\gcc\mingw32\8.2.0\include\c++\cstdlib:75, | |
from c:\mingw\lib\gcc\mingw32\8.2.0\include\c++\ext\string_conversions.h:41, | |
from c:\mingw\lib\gcc\mingw32\8.2.0\include\c++\bits\basic_string.h:6391, | |
from c:\mingw\lib\gcc\mingw32\8.2.0\include\c++\string:52, | |
from c:\mingw\lib\gcc\mingw32\8.2.0\include\c++\stdexcept:39, | |
from c:\mingw\lib\gcc\mingw32\8.2.0\include\c++\arra |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# This script is to build a busybox system | |
# Requirement | |
# fedora : curl, ncurses-devel, qemu-system-$BUSYBOX_ARCH | |
# author : MMoreau | |
# uncomment next lines for debugging (logging) | |
#logfile=/tmp/build_busybox.log |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"EXEC_ECLIPSE=eclipse.exe -no-indexer -nosplash -application org.eclipse.cdt.managedbuilder.core.headlessbuild -data C:\Projets\EPayKit\eclipse_workspace\v860 -build 'CoreWinDesjDll^|CoreWinBaseTest^|HostWinDemoApp^|HostWinDesjTest^|CoreWinDesjDll^|CoreWinBaseTest^|IpdvWinDesjTest^|IpdvWinTransportsTest^|PaymentEngineWinDesjApp^|PaymentEngineWinDesjTest^|PaymentWinTools^|PlatformBridgeWinApp^|SpedVerifoneDesjTest^|SpedWinDemoApp^|UiWinDemoApp^|UiWinDesjTest^|ExposeDictionariesToPython^|TestHarness/Release' --launcher.suppressErrors -vmargs -Dorg.eclipse.cdt.core.console=org.eclipse.cdt.core.systemConsole" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains any messages produced by compilers while | |
running configure, to aid debugging if configure makes a mistake. | |
It was created by configure, which was | |
generated by GNU Autoconf 2.69. Invocation command line was | |
$ ./configure | |
## --------- ## | |
## Platform. ## |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# - Returns a version string from Git tags | |
# | |
# This function inspects the annotated git tags for the project and returns a string | |
# into a CMake variable | |
# higly adapted from https://raw.githubusercontent.com/google/benchmark/master/cmake/GetGitVersion.cmake | |
# lighta | |
# | |
# get_git_version() | |
# | |
# - Example |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
static void duel_set(const unsigned int did, struct map_session_data* sd) { | |
int lOldChangeMap = sd->state.changemap; | |
int lOldWarping = sd->state.warping; | |
sd->state.changemap = 1; | |
sd->state.warping = 1; | |
// As you move to a different plane, ground effects need to be cleared | |
skill_clear_unitgroup(&sd->bl); | |
skill_unit_move(&sd->bl, gettick(), 2); | |
skill_cleartimerskill(&sd->bl); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1 0x406817 ra::unit_tests::crashDump_createDump() + 25 | |
2 0x40685c ra::unit_tests::test_crashDump() + 24 | |
3 0x4067db do_init + 20 | |
4 0x4088d9 main + 348 | |
5 0x7ffff632603a __libc_start_main + 234 | |
6 0x40671a _start + 42 |
NewerOlder