ZombieChicken has quit [Ping timeout: 240 seconds]
badkins has quit [Ping timeout: 268 seconds]
_apg has joined #racket
Codaraxis has joined #racket
orivej has quit [Ping timeout: 240 seconds]
Codaraxis has quit [Read error: Connection reset by peer]
Codaraxis has joined #racket
Trieste has quit [Ping timeout: 240 seconds]
Trieste has joined #racket
Codaraxis has quit [Read error: Connection reset by peer]
Codaraxis has joined #racket
lavaflow has quit [Ping timeout: 240 seconds]
iyzsong has joined #racket
endobson has joined #racket
Codaraxis has quit [Remote host closed the connection]
Codaraxis has joined #racket
Trieste has quit [Ping timeout: 272 seconds]
Trieste has joined #racket
_whitelogger has joined #racket
dddddd has quit [Ping timeout: 256 seconds]
Codaraxis has quit [Read error: Connection reset by peer]
lavaflow has joined #racket
endobson has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
endobson has joined #racket
badkins has joined #racket
badkins has quit [Ping timeout: 240 seconds]
Codaraxis has joined #racket
nullman has quit [Ping timeout: 260 seconds]
nullman has joined #racket
sagax has quit [Read error: Connection reset by peer]
Sgeo__ has joined #racket
Sgeo_ has quit [Ping timeout: 272 seconds]
Codaraxis has quit [Remote host closed the connection]
Codaraxis has joined #racket
endformationage has quit [Ping timeout: 268 seconds]
sauvin has joined #racket
ZombieChicken has joined #racket
greenfork has joined #racket
greenfork has left #racket ["ERC (IRC client for Emacs 26.2)"]
greenfork has joined #racket
libertyprime has joined #racket
narimiran has joined #racket
endobson has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
pera has quit [Ping timeout: 240 seconds]
orivej has joined #racket
ZombieChicken has quit [Ping timeout: 260 seconds]
libertyprime has quit [Ping timeout: 260 seconds]
libertyprime has joined #racket
reverse_light has joined #racket
libertyprime has quit [Ping timeout: 260 seconds]
libertyprime has joined #racket
badkins has joined #racket
badkins has quit [Ping timeout: 268 seconds]
sagax has joined #racket
narimiran has quit [Ping timeout: 272 seconds]
greenfork has quit [Remote host closed the connection]
ng0_ has joined #racket
ng0 has quit [Ping timeout: 240 seconds]
libertyprime has quit [Ping timeout: 272 seconds]
libertyprime has joined #racket
dddddd has joined #racket
notzmv has quit [Ping timeout: 260 seconds]
Ven`` has joined #racket
<ermo>
Whenever I try to build racket-7.4/7.5 with --enable-shared, my build fails because it seems like configure spits out invalid Makefile syntax for the AR invocation?
<ermo>
it looks like this: Makefile:36: *** missing separator. Stop. <- happens in src/racket/Makefile
<ermo>
and the contents look like this:
<ermo>
AR = libtool --mode=link --tag=CC x86_64-pc-linux-gnu-cc -release .
<lexi-lambda>
ermo: If you want help, you should ask that question on either the mailing list, Slack, or GitHub. The person who can answer it is not in this channel.
<ermo>
cheers
endobson has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
<lexi-lambda>
ermo: It looks like mflatt has, characteristically, already beaten me to the punch. :)
<ermo>
yeah, nice!
<ermo>
I need to dig into the git commit log for that change so that I can backport it to 7.5 though...
<ermo>
but that's on me
endobson has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
endobson has joined #racket
Trieste has quit [Ping timeout: 240 seconds]
Trieste has joined #racket
<notnotdan>
I am writing a macro that produces several declarations/statements. So far I've computed the list, but not sure how to convert it to syntax?
<notnotdan>
I used datum->syntax, but that does not "flatten" the list.
<notnotdan>
So (m) expands to `(s1 s2 s2)', instead of `s1 s2 s3'. If that makes sense