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
{ | |
"Genesis": { | |
"NetworkName": "", | |
"Wallets": [ | |
{ | |
"Name": "Wallet1", | |
"Stake": 100, | |
"Online": true | |
} | |
] |
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
#include <stdlib.h> | |
#include <stdio.h> | |
#include <ctype.h> | |
#include <string.h> | |
enum SE_Ty { SE_Mt, SE_Num, SE_Sym, SE_Cons }; | |
struct SExpr { | |
enum SE_Ty type; | |
union { |
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
#lang racket/base | |
(require racket/match | |
racket/math) | |
(let () | |
(struct get-x ()) | |
(struct get-y ()) | |
(struct distance-from-origin ()) | |
(struct set-x (nx)) | |
(struct set-y (ny)) |
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
#lang racket/base | |
(require (for-syntax racket/base | |
racket/set | |
racket/list | |
racket/match | |
racket/require-transform | |
syntax/parse | |
syntax/modcollapse)) | |
(define-syntax default-in |
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
env XFORM_USE_PRECOMP=xsrc/precomp.h ../racketcgc -cqu ./xform.rkt --setup . --depends --cpp "gcc -E -I./.. -I./../include -g -O2 -pthread -DUSE_SENORA_GC " --keep-lines -o xsrc/bool.c ./../src/bool.c | |
Error [GCING] 212 in ./../src/bool.c: Function mz_long_double_eqv declared __xform_nongcing__, but includes a function call. | |
Error [GCING] 248 in ./../src/bool.c: Function double_eqv declared __xform_nongcing__, but includes a function call. | |
xform: Errors converting | |
context...: | |
/home/utrs/tmp/racket-6.3/src/racket/gc2/xform-collects/compiler/private/xform.rkt:8:2: xform | |
/home/utrs/tmp/racket-6.3/src/racket/gc2/xform-collects/xform/xform-mod.rkt: [running body] |
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
commit 5573e58c5a122e90d3f394f247f94ba5405bd729 | |
Author: Jay McCarthy <[email protected]> | |
Date: Wed Jul 6 17:24:55 2016 -0400 | |
Switch from deprecated Posix function removed in Android's LB64 ABI | |
diff --git a/racket/src/racket/src/port.c b/racket/src/racket/src/port.c | |
index d5b965d..26995ba 100644 | |
--- a/racket/src/racket/src/port.c | |
+++ b/racket/src/racket/src/port.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
libtool --mode=compile --tag=CC arm-linux-androideabi-gcc -I./.. -I../../../racket/src/../include -g -O2 --sysroot=/Users/jay/Library/Android/sdk/ndk-bundle/platforms/android-23/arch-arm -DUSE_SENORA_GC -DMZ_NO_ICONV -DMZ_USES_SHARED_LIB -c ../../../racket/src/gmp/gmp.c -o gmp.lo | |
error: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/libtool: unknown option character `-' in: --mode=compile | |
Usage: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/libtool -static [-] file [...] [-filelist listfile[,dirname]] [-arch_only arch] [-sacLT] [-no_warning_for_no_symbols] | |
Usage: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/libtool -dynamic [-] file [...] [-filelist listfile[,dirname]] [-arch_only arch] [-o output] [-install_name name] [-compatibility_version #] [-current_version #] [-seg1addr 0x#] [-segs_read_only_addr 0x#] [-segs_read_write_addr 0x#] [-seg_addr_table <filename>] [-seg_addr_table_fil |
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
From 6cc6aeb987cf426af1e2bfe28d7135abb40a4745 Mon Sep 17 00:00:00 2001 | |
From: Jay McCarthy <[email protected]> | |
Date: Thu, 7 Jul 2016 22:40:59 -0400 | |
Subject: [PATCH 1/1] Updating to work with OS X 10.11.4 and XCode 7.3.1, plus | |
adding convenience top-level Makefile | |
--- | |
GNUmakefile | 5 +++++ | |
higan/audio/audio.cpp | 6 +++++- | |
higan/out/.gitignore | 5 +++-- |
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
#lang racket/base | |
(require (for-syntax racket/base | |
syntax/parse) | |
racket/splicing) | |
(begin-for-syntax | |
(define special-define-set | |
(make-parameter (box '()))) | |
(define (add-to-boxed-list! b v) | |
(set-box! b (cons v (unbox b))))) |
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
; External declaration of the puts function | |
declare i32 @exit() nounwind | |
; float = 1, 2, 3, 4, 5, 6, 7, 8 | |
; i16 = 2, 4, 6, 8, 10, 12, 13, 14, 15, 16 | |
; i8 = 4, 8, 12, 16, 20, 24, 26, 28, 29, 30, 31, 32 | |
%athing = type { float, float, float, float, float, float, i16, i16, i8, i8, i8, i8 } | |
@one = external global %athing | |
@two = external global %athing |
NewerOlder