CHEN Feng

Results 90 comments of CHEN Feng

example 还没完全修好。

maybe it's not so useful

Something like this would be a starting point: ```console objcopy --input binary \ --output elf64-x86-64 \ --binary-architecture i386:x86-64 \ myfile.txt myfile.o ``` If you wanted to generate 32-bit objects you...

https://stackoverflow.com/questions/4158900/embedding-resources-in-executable-using-gcc ``` ld -r -b binary ``` ```bash $ ld -r -b binary -o outfile.o /bin/ls $ nm outfile.o 0000000000023008 D _binary__bin_ls_end 0000000000023008 A _binary__bin_ls_size 0000000000000000 D _binary__bin_ls_star ```

发个大概方案出来?是生成整体一个文件还是每个BUILD文件对应一个 we1559 于 2018年8月11日周六 23:47写道: > @dennisip86 > 我想问下你们是自己手写CMakeLists.txt么。。。我感觉现在这个功能主要需要blade递归构建依赖的过程中把依赖给描述成CMake吧。如果是这样要不大家讨论下自己开发,然后提pull > requests? > > — > You are receiving this because you commented. > Reply to this email directly, view it...

每个BUILD对应一个CMakeList.txt文件? we1559 于2018年8月15日周三 下午10:40写道: > @chen3feng > 我对cmake不是很熟,不过它本身工作和blade有点类似,处理当前目录然后递归的处理subdir, > 所以我觉得这个地方应该是每个BUILD对应一个CMakeList.txt, 然后根目录再有一个总体的。 > 具体的还得再调研确认下 > > — > You are receiving this because you were mentioned. > Reply to this email...

讨论一下,是生成一个CMakeList.txt好呢?还是每个BUILD文件对应一个?

还在穿插时间调研,最近比较忙,也欢迎提Pull Request啊 Hangyu Yang 于2019年2月19日周二 下午4:40写道: > 还有update吗。。急需这个功能啊。。 > > — > You are receiving this because you were mentioned. > Reply to this email directly, view it on GitHub...