Previous day | Jump to hour: 01 02 03 04 05 06 07 08 09 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | Next day

Seconds: Show Hide | Joins: Show Hide | View raw
Font: Serif Sans-Serif Monospace | Size: Small Medium Large

Click in the nick column to highlight everything a person has said.
The Logo icon identifies that the person is a core developer (has commit access).

#rockbox log for 2019-11-20

00:14:04 Quit akaWolf (Read error: Connection reset by peer)
00:14:18 Join akaWolf [0] (~akaWolf@unaffiliated/akawolf)
00:48:26Lonoxmonthcs: any other ideas?
00:56:36hcsLonoxmont: not really, all I can think is trying to set up cygwin again following different instructions. Were you following https://www.rockbox.org/wiki/CygwinDevelopment ?
00:58:16***Saving seen data "./dancer.seen"
01:00
01:03:05 Quit dys (Ping timeout: 265 seconds)
01:05:37Lonoxmonti was, but let me verify i have all the packages listed there installed
01:05:55hcsIt's been years since I tried setting any of this up, sorry I can't be more help
01:14:05Lonoxmonti had all this working before on my old vps, but that ended up getting nuked
01:14:40Lonoxmontso i know at some point the script worked, just need whoever is in charge of it to try and help figure out why it isnt working
02:00
02:06:15 Quit MrZeus (Ping timeout: 240 seconds)
02:20:35 Quit mikroflops (Ping timeout: 240 seconds)
02:26:12 Quit TheSeven (Ping timeout: 250 seconds)
02:26:54 Join TheSeven [0] (~quassel@rockbox/developer/TheSeven)
02:43:48 Join Ruhan [0] (uid76353@gateway/web/irccloud.com/x-lnicjvqkfhabklsn)
02:58:20***Saving seen data "./dancer.seen"
03:00
03:10:44mendel_munkis__builtin: are you able to give me some advice on giving a library access to memmove?
03:22:16__builtinWhat are you trying to do?
03:22:53mendel_munkiscompile freetype using only libs available to rb plugins.
03:24:32 Quit reductum (Quit: WeeChat 2.6)
03:24:34__builtinAh... I'd just find an implementation somewhere and paste it in
03:24:52__builtinI'm surprised we don't have memmove
03:24:59mendel_munkiswe do
03:25:10mendel_munkisthats why i'm not just doing that.
03:39:32 Quit cockroach (Quit: leaving)
03:41:39__builtinWhere do we have itn
03:41:47__builtin*?
03:45:10mendel_munkisplugin.c:569 has it declared but im not sure where the def is.
04:00
04:23:07 Quit flab (Quit: #InstallGentoo)
04:25:53 Join flabrus [0] (~beard@flab.tech)
04:25:53 Quit flabrus (Changing host)
04:25:53 Join flabrus [0] (~beard@unaffiliated/flabrus)
04:40:29 Join Ckatt [0] (~Ckat@xn--z7x.xn--6frz82g)
04:40:56 Quit Ckat (Read error: Connection reset by peer)
04:41:09 Nick Ckatt is now known as Ckat (~Ckat@xn--z7x.xn--6frz82g)
04:43:41 Quit scorche (Disconnected by services)
04:43:45 Join scorche` [0] (~scorche@rockbox/administrator/scorche)
04:43:58 Quit advcomp2019 (Ping timeout: 265 seconds)
04:58:24***Saving seen data "./dancer.seen"
05:00
05:22:37__builtinmendel_munkis: it might be part of libgcc
05:23:29__builtinIIRC memcmp, memset and friends are in libgcc
05:23:29 Quit Ruhan (Quit: Connection closed for inactivity)
05:26:03 Quit TheSeven (Ping timeout: 250 seconds)
05:26:32 Join TheSeven [0] (~quassel@rockbox/developer/TheSeven)
05:28:53 Quit PrinceKyle (Remote host closed the connection)
05:30:34__builtinIf that's the case for memmove then you don't have to do anything to use it
05:32:19mendel_munkisExcept not be implicitly declaring it.
05:50:03__builtinLet me check to be sure
05:50:41mendel_munkiswarning: incompatible implicit declaration of built-in function ‘memmove
06:00
06:05:00__builtinwhy aren't you just calling rb->memmove?
06:05:29mendel_munkis error: ‘rb’ undeclared (first use in this function)
06:05:45__builtinin what context?
06:06:04__builtinyou need to #include "plugin.h" in all source files if you want to use rb
06:08:18mendel_munkisthat has the side effect of not bbieng able to find many files plugin.h depends on.
06:08:45mendel_munkisit may be because I'm trying to build from a subdir.
06:09:08__builtinooh, you're trying to build a multifile library?
06:09:31mendel_munkisyup.
06:09:43CtcpIgnored 1 channel CTCP requests in 0 seconds at the last flood
06:09:43*__builtin had that idea for SDL as well... but I said "fuck it" and made it a giant plugin instead
06:10:07__builtincould you push what you've got to gerrit?
06:21:40mendel_munkis g#2298
06:21:44fs-bluebotGerrit review #2298 at http://gerrit.rockbox.org/r/2298 : Hacky pdf start DO NOT COMMIT by Moshe Piekarski
06:22:45 Join mikroflops [0] (~yogurt@c188-150-213-125.bredband.comhem.se)
06:25:02__builtinok, you're not building a "library" as I thought you were
06:25:19__builtinit's just a monolithic plugin like the other SDL programs, which makes things easier.
06:25:49mendel_munkisjust a static lib which I figured is much easier then dynamic.
06:26:08__builtinit's not really a "lib" at all in the strict sense of the word
06:26:22mendel_munkis?
06:26:39__builtinyou're just compiling freetype's sources like any other source file, right?
06:26:45__builtin(unless I'm missing something)
06:27:03__builtinplugin "libraries" are located in apps/plugins/lib/
06:27:14mendel_munkisYes. but I'm trying to get out a .a
06:27:25__builtinoh, are you?
06:27:43__builtinah... I see
06:28:18__builtinit might honestly be easier to just compile in freetype monolithically
06:28:39mendel_munkisI just know C better than Make.
06:28:56__builtinyou don't have to write any Make to do that
06:29:19__builtinjust include all the freetype sources in the SOURCES.nupdf file
06:50:26 Join eevan [0] (~eevan@tls.chat.sum7.eu)
06:56:09 Join dys [0] (~dys@tmo-103-156.customers.d1-online.com)
06:58:26***Saving seen data "./dancer.seen"
07:00
07:06:57 Join Rower [0] (~husvagn@212.7.222.10)
07:09:49 Quit Rower- (Ping timeout: 252 seconds)
07:20:12 Join ZincAlloy [0] (~Adium@2a02:8108:9440:dfc:c160:6190:8136:d816)
07:20:12 Quit ZincAlloy (Client Quit)
08:00
08:58:29***Saving seen data "./dancer.seen"
09:00
09:08:35 Join Rower- [0] (~husvagn@212.7.222.10)
09:11:56 Join ulmutul [0] (~ulmutul@rockbox/developer/ulmutul)
09:12:17 Quit Rower (Ping timeout: 252 seconds)
09:13:15 Join Rower [0] (~husvagn@212.7.217.17)
09:14:09 Quit Rower- (Ping timeout: 265 seconds)
09:15:15 Join petur [0] (~petur@80.169.83.226)
09:15:15 Quit petur (Changing host)
09:15:15 Join petur [0] (~petur@rockbox/developer/petur)
09:18:34ulmutulLonoxmont: I worked around this issue by manually editing "/usr/include/stdio.h".
09:20:28ulmutulI changed the line "#ifdef __GNUC _ELIDABLE_INLINE int __sputc_r(struct _reent *_ptr, int _c, FILE *_p) { ..." to something like "#ifdef __GNUC_FOO".
09:28:01ulmutul__builtin: BTW thanks for your effort with the new release!
09:52:12 Quit ulmutul (Quit: Leaving)
10:00
10:13:05 Join PimpiN8 [0] (~textual@77.60.122.82)
10:20:25 Quit PimpiN8 (Remote host closed the connection)
10:31:50 Join Rower- [0] (~husvagn@m83-185-95-207.cust.tele2.se)
10:35:26 Quit Rower (Ping timeout: 250 seconds)
10:39:10 Join PimpiN8 [0] (~textual@77.60.122.82)
10:41:38 Quit Rower- (Ping timeout: 265 seconds)
10:42:32 Join Rower- [0] (~husvagn@212.7.217.17)
10:58:32***Saving seen data "./dancer.seen"
11:00
11:31:51 Quit deevious (Quit: deevious)
11:50:45 Quit brasello (Ping timeout: 265 seconds)
11:52:06 Join brasello [0] (~brasello@anon-37-215.vpn.ipredator.se)
12:00
12:10:54 Join Rower [0] (~husvagn@212.7.217.17)
12:12:50 Join advcomp2019 [0] (~advcomp20@65-131-170-32.sxct.qwest.net)
12:12:50 Quit advcomp2019 (Changing host)
12:12:51 Join advcomp2019 [0] (~advcomp20@unaffiliated/advcomp2019)
12:13:54 Quit PimpiN8 (Quit: My MacBook has gone to sleep. ZZZzzz…)
12:14:36 Quit Rower- (Read error: Connection reset by peer)
12:34:13 Join advcomp2019_ [0] (~advcomp20@65-131-173-183.sxct.qwest.net)
12:34:13 Quit advcomp2019_ (Changing host)
12:34:13 Join advcomp2019_ [0] (~advcomp20@unaffiliated/advcomp2019)
12:35:55 Quit advcomp2019 (Ping timeout: 240 seconds)
12:37:43 Join Rower- [0] (~husvagn@212.7.217.17)
12:40:55 Quit Rower (Ping timeout: 240 seconds)
12:41:15 Join Rower [0] (~husvagn@212.7.222.10)
12:42:01 Quit Rower- (Ping timeout: 240 seconds)
12:58:34***Saving seen data "./dancer.seen"
13:00
13:02:49 Quit dys (Ping timeout: 240 seconds)
13:07:13 Join advcomp2019 [0] (~advcomp20@65-131-174-225.sxct.qwest.net)
13:07:13 Quit advcomp2019 (Changing host)
13:07:14 Join advcomp2019 [0] (~advcomp20@unaffiliated/advcomp2019)
13:09:22 Join Rower- [0] (~husvagn@212.7.222.10)
13:09:37 Quit advcomp2019_ (Ping timeout: 240 seconds)
13:11:26 Quit Rower (Ping timeout: 250 seconds)
13:23:17 Join deevious [0] (~Thunderbi@193.226.142.214)
13:32:45 Join advcomp2019_ [0] (~advcomp20@65-131-150-160.sxct.qwest.net)
13:32:45 Quit advcomp2019_ (Changing host)
13:32:45 Join advcomp2019_ [0] (~advcomp20@unaffiliated/advcomp2019)
13:34:25 Quit advcomp2019 (Ping timeout: 240 seconds)
13:39:49 Quit SherbetS (Ping timeout: 276 seconds)
13:42:47 Join PimpiN8 [0] (~textual@77.60.122.82)
13:45:09 Join p3tur [0] (~petur@91.183.48.77)
13:45:10 Quit p3tur (Changing host)
13:45:10 Join p3tur [0] (~petur@rockbox/developer/petur)
13:49:02 Quit petur (Ping timeout: 245 seconds)
14:00
14:02:35 Join massiveH [0] (~massiveH@ool-18e4eaeb.dyn.optonline.net)
14:38:49 Quit advcomp2019_ (Read error: Connection reset by peer)
14:42:33 Join advcomp2019 [0] (~advcomp20@65-131-177-106.sxct.qwest.net)
14:42:33 Quit advcomp2019 (Changing host)
14:42:33 Join advcomp2019 [0] (~advcomp20@unaffiliated/advcomp2019)
14:48:50 Join advcomp2019_ [0] (~advcomp20@65-131-145-247.sxct.qwest.net)
14:48:50 Quit advcomp2019_ (Changing host)
14:48:50 Join advcomp2019_ [0] (~advcomp20@unaffiliated/advcomp2019)
14:50:49 Quit advcomp2019 (Ping timeout: 240 seconds)
14:58:38***Saving seen data "./dancer.seen"
15:00
15:15:21 Join Ruhan [0] (uid76353@gateway/web/irccloud.com/x-qeemdyagavapcgdi)
15:15:21 Nick p3tur is now known as petur (~petur@rockbox/developer/petur)
15:24:58 Quit deevious (Quit: deevious)
15:44:49 Quit Rower- (Read error: Connection reset by peer)
15:59:44 Quit massiveH (Quit: Leaving)
16:00
16:04:20 Join PrinceKyle [0] (~cancerian@2606-a000-111a-8d0a-0000-0000-0000-0f17.inf6.spectrum.com)
16:06:56 Join deevious [0] (~Thunderbi@193.226.142.214)
16:08:24 Join advcomp2019 [0] (~advcomp20@65-131-147-51.sxct.qwest.net)
16:08:24 Quit advcomp2019 (Changing host)
16:08:24 Join advcomp2019 [0] (~advcomp20@unaffiliated/advcomp2019)
16:10:18 Quit advcomp2019_ (Ping timeout: 265 seconds)
16:57:24 Quit PimpiN8 (Quit: My MacBook has gone to sleep. ZZZzzz…)
16:58:40***Saving seen data "./dancer.seen"
17:00
17:24:56 Quit Ruhan (Quit: Connection closed for inactivity)
17:30:46 Quit petur (Read error: Connection reset by peer)
17:34:12 Quit advcomp2019 (Read error: Connection reset by peer)
17:35:58 Join advcomp2019 [0] (~advcomp20@unaffiliated/advcomp2019)
17:54:13 Quit advcomp2019 (Read error: Connection reset by peer)
17:55:56 Join advcomp2019 [0] (~advcomp20@65-131-189-17.sxct.qwest.net)
17:55:56 Quit advcomp2019 (Changing host)
17:55:56 Join advcomp2019 [0] (~advcomp20@unaffiliated/advcomp2019)
18:00
18:18:31 Join advcomp2019_ [0] (~advcomp20@unaffiliated/advcomp2019)
18:20:15 Quit advcomp2019 (Ping timeout: 240 seconds)
18:45:18 Join ZincAlloy [0] (~Adium@2a02:8108:9440:dfc:9458:ce53:532c:a301)
18:49:56 Join reductum [0] (~weechat@cpe-104-32-77-28.socal.res.rr.com)
18:50:31 Quit ZincAlloy (Ping timeout: 276 seconds)
18:55:35 Join advcomp2019 [0] (~advcomp20@65-131-160-49.sxct.qwest.net)
18:55:35 Quit advcomp2019 (Changing host)
18:55:35 Join advcomp2019 [0] (~advcomp20@unaffiliated/advcomp2019)
18:57:40 Quit advcomp2019_ (Ping timeout: 276 seconds)
18:58:44***Saving seen data "./dancer.seen"
19:00
19:03:32 Join ZincAlloy [0] (~Adium@2a02:8108:9440:dfc:9458:ce53:532c:a301)
19:25:35 Join petur [0] (~petur@rockbox/developer/petur)
19:28:49 Join lebellium [0] (~lebellium@89-92-253-148.hfc.dyn.abo.bbox.fr)
19:34:48 Join Link8_ [0] (uid277370@gateway/web/irccloud.com/x-ynentctnxpoprtuq)
19:35:06Link8_Hey guys
19:35:31Link8_I pressed recording by accident
19:35:41Link8_For a few seconds
19:35:51Link8_Is it saved and if so where is it saved?
19:41:17 Join advcomp2019_ [0] (~advcomp20@65-131-153-109.sxct.qwest.net)
19:41:17 Quit advcomp2019_ (Changing host)
19:41:17 Join advcomp2019_ [0] (~advcomp20@unaffiliated/advcomp2019)
19:43:11 Join advcomp2019__ [0] (~advcomp20@65-131-163-40.sxct.qwest.net)
19:43:11 Quit advcomp2019__ (Changing host)
19:43:11 Join advcomp2019__ [0] (~advcomp20@unaffiliated/advcomp2019)
19:43:49 Quit advcomp2019 (Ping timeout: 276 seconds)
19:45:35 Quit advcomp2019_ (Ping timeout: 240 seconds)
19:55:49 Join advcomp2019 [0] (~advcomp20@unaffiliated/advcomp2019)
19:58:46 Quit advcomp2019__ (Ping timeout: 276 seconds)
20:00
20:23:30 Join krabador [0] (~krabador@unaffiliated/krabador)
20:24:24 Join dys [0] (~dys@tmo-106-169.customers.d1-online.com)
20:37:05 Quit krabador (Quit: Leaving)
20:37:55 Join krabador [0] (~krabador@unaffiliated/krabador)
20:38:01_Bilgusgenerally the root of the drive
20:38:16Lonoxmont00:18:35 -0800 < ulmutul> Lonoxmont: I worked around this issue by manually editing "/usr/include/stdio.h".
20:38:16Lonoxmont00:20:29 -0800 < ulmutul> I changed the line "#ifdef __GNUC _ELIDABLE_INLINE int __sputc_r(struct _reent *_ptr, int _c, FILE *_p) { ..." to something like "#ifdef __GNUC_FOO".
20:38:27Lonoxmontwont that break other things wanting to use that file though?
20:38:51 Join Rower [0] (~husvagn@212.7.222.10)
20:58:46***Saving seen data "./dancer.seen"
21:00
21:01:38 Quit krabador (Remote host closed the connection)
21:22:16 Join krabador [0] (~krabador@unaffiliated/krabador)
21:26:21 Quit krabador (Remote host closed the connection)
21:27:58 Join advcomp2019_ [0] (~advcomp20@65-131-167-120.sxct.qwest.net)
21:27:58 Quit advcomp2019_ (Changing host)
21:27:58 Join advcomp2019_ [0] (~advcomp20@unaffiliated/advcomp2019)
21:30:44 Quit advcomp2019 (Ping timeout: 265 seconds)
21:44:29 Quit Link8_ (Quit: Connection closed for inactivity)
21:47:31 Join advcomp2019 [0] (~advcomp20@65-131-170-10.sxct.qwest.net)
21:47:31 Quit advcomp2019 (Changing host)
21:47:31 Join advcomp2019 [0] (~advcomp20@unaffiliated/advcomp2019)
21:49:37 Quit advcomp2019_ (Ping timeout: 240 seconds)
21:51:12 Join advcomp2019_ [0] (~advcomp20@65-131-150-17.sxct.qwest.net)
21:51:12 Quit advcomp2019_ (Changing host)
21:51:12 Join advcomp2019_ [0] (~advcomp20@unaffiliated/advcomp2019)
21:52:10 Quit advcomp2019 (Ping timeout: 246 seconds)
21:57:15 Quit advcomp2019_ (Ping timeout: 240 seconds)
22:00
22:23:00 Join ulmutul [0] (~ulmutul@rockbox/developer/ulmutul)
22:26:17ulmutulLonoxmont: I don't know, I only use it for rockbox. However both compiling for (ARM) targets and simulator works for me without problems.
22:27:29 Join advcomp2019 [0] (~advcomp20@65-131-157-162.sxct.qwest.net)
22:27:29 Quit advcomp2019 (Changing host)
22:27:29 Join advcomp2019 [0] (~advcomp20@unaffiliated/advcomp2019)
22:36:32 Join advcomp2019_ [0] (~advcomp20@65-131-171-222.sxct.qwest.net)
22:36:32 Quit advcomp2019_ (Changing host)
22:36:32 Join advcomp2019_ [0] (~advcomp20@unaffiliated/advcomp2019)
22:36:57 Quit advcomp2019 (Ping timeout: 265 seconds)
22:40:57 Join Rower- [0] (~husvagn@212.7.222.10)
22:43:11 Quit Rower (Ping timeout: 245 seconds)
22:58:49***Saving seen data "./dancer.seen"
23:00
23:07:07 Quit JanC (Read error: Connection reset by peer)
23:07:26 Join JanC [0] (~janc@lugwv/member/JanC)
23:17:40 Quit ZincAlloy (Quit: Leaving.)
23:19:41 Join Link8_ [0] (uid277370@gateway/web/irccloud.com/x-zxponcufxjsjlvkt)
23:25:37 Quit lebellium (Quit: Leaving)
23:34:02 Join krabador [0] (~krabador@unaffiliated/krabador)
23:34:21 Quit krabador (Remote host closed the connection)
23:35:00 Join krabador [0] (~krabador@unaffiliated/krabador)
23:49:49 Join MrZeus [0] (~MrZeus@88-144-134-128.host.pobb.as13285.net)
23:50:16 Quit ulmutul (Quit: Leaving)

Previous day | Next day