- x86_64
This file contains 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
-- The C compiler identification is Clang 5.0.1 | |
-- The CXX compiler identification is Clang 5.0.1 | |
-- The ASM compiler identification is Clang | |
-- Found assembler: /usr/bin/clang | |
-- Check for working C compiler: /usr/bin/clang | |
-- Check for working C compiler: /usr/bin/clang -- works | |
-- Detecting C compiler ABI info | |
-- Detecting C compiler ABI info - done | |
-- Detecting C compile features | |
-- Detecting C compile features - done |
This file contains 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
diff --git a/configure b/configure | |
index c2db298..02a39bd 100755 | |
--- a/configure | |
+++ b/configure | |
@@ -98,7 +98,7 @@ fi | |
tryldflag () { | |
printf "checking whether linker accepts %s... " "$2" | |
echo "typedef int x;" > "$tmpc" | |
-if $CC $LDFLAGS_TRY -nostdlib -shared "$2" -o /dev/null "$tmpc" >/dev/null 2>&1 ; then | |
+if $CC $LDFLAGS_TRY -nostdlib -shared "$2" "$tmpc" >/dev/null 2>&1 ; then |
This file contains 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
valac -o test first.vala second.vala main.vala | |
# OR | |
valac -C first.vala --internal-vapi=first.vapi --header=first.h --internal-header=first_internal.h | |
valac -C second.vala --vapidir=. --pkg first --internal-vapi=second.vapi --header=second.h --internal-header=second_internal.h | |
valac -C main.vala --vapidir=. --pkg first --pkg second --internal-vapi=main.vapi --header=main.h --internal-header=main_internal.h | |
gcc -c $CFLAGS -I. first.c | |
gcc -c $CFLAGS -I. second.c | |
gcc -c $CFLAGS -I. main.c |
This file contains 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
valac -o test first.vala second.vala main.vala | |
# OR | |
# ??? |
This file contains 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
[CCode (lower_case_cprefix = "Gamepad_", cheader_filename = "gamepad/Gamepad.h")] | |
namespace Gamepad { | |
[CCode (cname = "struct Gamepad_device", free_function = "")] | |
[Compact] | |
public class Device { | |
[CCode (cname = "deviceID")] | |
public uint device_id; | |
public string description; |
This file contains 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/sh | |
Y='\033[1;33m' | |
G='\033[1;30m' | |
L='\033[1;37m' | |
N='\033[0m' | |
C='█' | |
H=1 | |
W=2 | |
for i in $(seq 1 $W); do |
This file contains 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
for i in /mingw/addons/* ; do | |
if [ -d $i ]; then | |
if [ -d $i/bin ]; then | |
export PATH="$PATH:$i/bin" | |
fi | |
if [ -d $i/include ]; then | |
export CPATH="$CPATH;$i/include" | |
fi | |
if [ -d $i/lib ]; then | |
export LIBRARY_PATH="$LIBRARY_PATH;$i/lib" |
This file contains 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
@echo off | |
set MDRV=%~d0 | |
set PATH= | |
set MSYSTEM=MINGW32 | |
%MDRV%\msys\1.0\bin\sed.exe -i 's/.*\/mingw/%MDRV% \/mingw/g' %MDRV%\msys\1.0\etc\fstab | |
%MDRV%\msys\1.0\msys.bat --mintty |
This file contains 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
body { | |
background: #000; | |
color: #C8C8C8; | |
margin: 0; | |
padding: 0; | |
} | |
body, input, select { | |
font: 95% sans-serif, tahoma; | |
} | |
a { |
NewerOlder