flex一定要用 Flash Builde开发吗

flex一定要用 Flash Builde开发吗,第1张

1、可以用eclipse的相关的组件来开发,不一定非得用Flex Builde,Flash Builde是Adobe最新的框架,目前还是测试版。

2、如果你善于编程,就用Flex。flash适用于设计人员,Flex适用于开发人员。

3、有,挺多。但是最新版的Flash Builde4只有英文版的。

在CentOS 7和RHEL 7系统上如何安装Gnu GCC编译器和相关的工具比如:autoconf,automake,flex, c++编译器等工具。我们可以通过在centos 或者rhel 7 系统上安装下面的软件包来搭建基本的开发环境。

autoconf

automake

binutils

bison

flex

gcc

gcc-c++

gettext

libtool

make

patch

pkgconfig

redhat-rpm-config

rpm-build

rpm-sign

显示当前系统的yum group,使用下面的命令

yum group list

命令输出:

[root@itsprite /]# yum group list

Loaded plugins: fastestmirror, langpacks

There is no installed groups file

Maybe run: yum groups mark convert (see man yum)

Loading mirror speeds from cached hostfile

base: mirrorsbttenet

extras: mirrorsbttenet

updates: mirrorsbttenet

Available environment groups:

Minimal Install

Infrastructure Server

File and Print Server

Basic Web Server

Virtualization Host

Server with GUI

GNOME Desktop

KDE Plasma Workspaces

Development and Creative Workstation

Available Groups:

Compatibility Libraries

Console Internet Tools

Development Tools

Graphical Administration Tools

Legacy UNIX Compatibility

Scientific Support

Security Tools

Smart Card Support

System Administration Tools

System Management

Done

安装GCC和开发环境

输入下面的命令:

yum group install "Development Tools"

安装完之后,使用下面的命令来验证gcc是否安装成功:

whereis gcc

命令输出:

[root@itsprite /]# whereis gcc

gcc:/usr/bin/gcc /usr/lib/gcc /usr/libexec/gcc /usr/share/man/man1/gcc1gz

输入下面的命令来查看gcc工具的版本:

[root@itsprite /]# gcc --version

gcc (GCC) 482 20140120(Red Hat 482-16)

Copyright (C)2013 Free Software Foundation, Inc

This is free software; see the source for copying conditions There is NO

warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE

测试GCC编译器

下面我们使用刚安装好的GCC编译器来编译一个c语言程序

创建下面的testc程序:

#include

int main(void){

printf("Hello World!\n");

return0;

}

输入命令编译testc 文件

gcc testc -o test

执行编译后的文件:

 

/test

Hello World!

如何在flex builder中打包swc文件

1新建actionscript library project

2将需要的源文件导入到SRC目录下。

3在项目的配置的flex library build path中,将src前面打勾。

4OK。刷新一下就可以在bin目录下看到SWC文件了

以上就是关于flex一定要用 Flash Builde开发吗全部的内容,包括:flex一定要用 Flash Builde开发吗、如何安装GCC编译器和开发工具、如何在flex builder中打包swc文件的相关文章推荐等相关内容解答,如果想了解更多相关内容,可以关注我们,你们的支持是我们更新的动力!

欢迎分享,转载请注明来源:内存溢出

原文地址:https://54852.com/zz/10126594.html

(0)
打赏 微信扫一扫微信扫一扫 支付宝扫一扫支付宝扫一扫
上一篇 2023-05-05
下一篇2023-05-05

发表评论

登录后才能评论

评论列表(0条)

    保存