mirror of
https://github.com/ilyakooo0/urbit.git
synced 2024-11-28 11:40:11 +03:00
nix,vere: move ivory def to its own source file
This commit is contained in:
parent
fbcec9d0ec
commit
0682eb8a3a
@ -34,7 +34,7 @@ in {
|
||||
|
||||
mkdir -p $out/include
|
||||
cat $src > $file
|
||||
xxd -i $file > $out/include/ivory.h
|
||||
xxd -i $file > $out/include/ivory_impl.h
|
||||
'';
|
||||
|
||||
preferLocalBuild = true;
|
||||
|
7
pkg/urbit/include/ur/ivory.h
Normal file
7
pkg/urbit/include/ur/ivory.h
Normal file
@ -0,0 +1,7 @@
|
||||
#ifndef UR_IVORY_H
|
||||
#define UR_IVORY_H
|
||||
|
||||
extern unsigned char u3_Ivory_pill[];
|
||||
extern unsigned int u3_Ivory_pill_len;
|
||||
|
||||
#endif
|
@ -4,6 +4,7 @@
|
||||
#include "ur/defs.h"
|
||||
#include "ur/bitstream.h"
|
||||
#include "ur/hashcons.h"
|
||||
#include "ur/ivory.h"
|
||||
#include "ur/serial.h"
|
||||
|
||||
#endif /* ifndef UR_H */
|
||||
|
@ -2,14 +2,6 @@
|
||||
#include "vere/vere.h"
|
||||
#include "ur/ur.h"
|
||||
|
||||
// XX ivory.h just declares these; if it's included elsewhere
|
||||
// (currently king.c), this will cause duplicate definition
|
||||
// errors. so we just extern them instead.
|
||||
//
|
||||
extern unsigned char u3_Ivory_pill[];
|
||||
extern unsigned int u3_Ivory_pill_len;
|
||||
// #include "ivory.h"
|
||||
|
||||
/* _setup(): prepare for tests.
|
||||
*/
|
||||
static void
|
||||
|
3
pkg/urbit/ur/ivory.c
Normal file
3
pkg/urbit/ur/ivory.c
Normal file
@ -0,0 +1,3 @@
|
||||
#include "ur/ivory.h"
|
||||
|
||||
#include "ivory_impl.h"
|
@ -8,8 +8,6 @@
|
||||
#include <curl/curl.h>
|
||||
#include <uv.h>
|
||||
|
||||
#include "ivory.h"
|
||||
|
||||
// stash config flags for worker
|
||||
//
|
||||
static c3_w sag_w;
|
||||
|
Loading…
Reference in New Issue
Block a user